@omlet/cli
Version:
Omlet (https://omlet.dev) is a component analytics tool that uses a CLI to scan your codebase to detect components and their usage. Get real usage insights from customizable charts to measure adoption across all projects and identify opportunities to impr
15 lines (14 loc) • 411 B
TypeScript
export interface PackageJson {
name?: string;
version?: string;
main?: string;
exports?: Record<string, string | string[]> | string[] | string;
types?: string;
workspaces?: string[] | {
packages: string[];
};
dependencies?: Record<string, string>;
devDependencies?: Record<string, string>;
peerDependencies?: Record<string, string>;
[key: string]: unknown;
}