@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 10.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e60fd0a: feat(types): add missing fields to the Version object
8
+
3
9
  ## 10.6.0
4
10
 
5
11
  ### Minor Changes
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/types",
3
- "version": "10.6.0",
3
+ "version": "10.7.0",
4
4
  "description": "verdaccio types definitions",
5
5
  "keywords": [
6
6
  "verdaccio",