@verdaccio/types 10.6.0 → 10.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/build/manifest.d.ts +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/build/manifest.d.ts
CHANGED
|
@@ -85,6 +85,7 @@ export interface Version {
|
|
|
85
85
|
etag?: string;
|
|
86
86
|
dependencies?: Dependencies;
|
|
87
87
|
peerDependencies?: Dependencies;
|
|
88
|
+
peerDependenciesMeta?: PeerDependenciesMeta;
|
|
88
89
|
devDependencies?: Dependencies;
|
|
89
90
|
optionalDependencies?: Dependencies;
|
|
90
91
|
bundleDependencies?: Dependencies;
|
|
@@ -100,8 +101,15 @@ export interface Version {
|
|
|
100
101
|
url: string;
|
|
101
102
|
};
|
|
102
103
|
engines?: Engines;
|
|
104
|
+
cpu?: string[];
|
|
105
|
+
os?: string[];
|
|
103
106
|
hasInstallScript?: boolean;
|
|
104
107
|
}
|
|
108
|
+
export interface PeerDependenciesMeta {
|
|
109
|
+
[dependencyName: string]: {
|
|
110
|
+
optional?: boolean;
|
|
111
|
+
};
|
|
112
|
+
}
|
|
105
113
|
export interface Dependencies {
|
|
106
114
|
[key: string]: string;
|
|
107
115
|
}
|