UNPKG

492 BTypeScriptView Raw
1import type { Author } from 'parse-author';
2import type { PackageJson as PackageJsonTF } from 'type-fest';
3export { Author };
4export declare type PackageJson = PackageJsonTF & {
5 $schema?: string;
6};
7export declare type PackageJsonKey = keyof PackageJson;
8export declare type Options = Partial<{
9 useTabs: boolean;
10 tabWidth: number;
11 expandUsers: boolean;
12 enforceMultiple: boolean;
13 keyOrder: PackageJsonKey[] | ((a: PackageJsonKey, b: PackageJsonKey) => -1 | 0 | 1);
14}>;
15
\No newline at end of file