-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.d.ts
81 lines (68 loc) · 1.79 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import {type Except} from 'type-fest';
import {
readPackage,
readPackageSync,
type Options as ReadPackageOptions,
type NormalizeOptions as ReadPackageNormalizeOptions,
type PackageJson,
type NormalizedPackageJson,
} from 'read-pkg';
export type Options = {
/**
The directory to start looking for a package.json file.
@default process.cwd()
*/
cwd?: URL | string;
} & Except<ReadPackageOptions, 'cwd'>;
export type NormalizeOptions = {
/**
The directory to start looking for a package.json file.
@default process.cwd()
*/
cwd?: URL | string;
} & Except<ReadPackageNormalizeOptions, 'cwd'>;
export type ReadResult = {
packageJson: PackageJson;
path: string;
};
export type NormalizedReadResult = {
packageJson: NormalizedPackageJson;
path: string;
};
/**
Read the closest `package.json` file.
@example
```
import {readPackageUp} from 'read-package-up';
console.log(await readPackageUp());
// {
// packageJson: {
// name: 'awesome-package',
// version: '1.0.0',
// …
// },
// path: '/Users/sindresorhus/dev/awesome-package/package.json'
// }
```
*/
export function readPackageUp(options?: NormalizeOptions): Promise<NormalizedReadResult | undefined>;
export function readPackageUp(options: Options): Promise<ReadResult | undefined>;
/**
Synchronously read the closest `package.json` file.
@example
```
import {readPackageUpSync} from 'read-package-up';
console.log(readPackageUpSync());
// {
// packageJson: {
// name: 'awesome-package',
// version: '1.0.0',
// …
// },
// path: '/Users/sindresorhus/dev/awesome-package/package.json'
// }
```
*/
export function readPackageUpSync(options?: NormalizeOptions): NormalizedReadResult | undefined;
export function readPackageUpSync(options: Options): ReadResult | undefined;
export {PackageJson, NormalizedPackageJson} from 'read-pkg';