forked from verdaccio/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackageMeta.ts
More file actions
54 lines (47 loc) · 892 Bytes
/
packageMeta.ts
File metadata and controls
54 lines (47 loc) · 892 Bytes
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
export interface PackageMetaInterface {
versions?: Versions;
'dist-tags'?: DistTags;
time?: Time;
latest: {
author?: Author;
name: string;
dist: {
fileCount: number;
unpackedSize: number;
};
license?: Partial<LicenseInterface> | string;
version: string;
};
_uplinks: {};
}
interface LicenseInterface {
type: string;
url: string;
}
export interface DistTags {
[key: string]: string;
}
export interface Time {
[key: string]: string;
}
export interface Versions {
[key: string]: Version;
}
export interface Version {
name: string;
version: string;
author?: string | Author;
description?: string;
license?: string;
main?: string;
keywords?: string[];
}
export interface Author {
name?: string;
email?: string;
url?: string;
avatar?: string;
}
export interface PackageDependencies {
[key: string]: string;
}