@verdaccio/types 10.6.0 → 10.7.1

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,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 10.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - ce921a8: fix: config plugin types
8
+
9
+ ## 10.7.0
10
+
11
+ ### Minor Changes
12
+
13
+ - e60fd0a: feat(types): add missing fields to the Version object
14
+
3
15
  ## 10.6.0
4
16
 
5
17
  ### Minor Changes
@@ -133,7 +133,7 @@ export interface ConfigYaml {
133
133
  listen?: ListenAddress;
134
134
  https?: HttpsConf;
135
135
  http_proxy?: string;
136
- plugins?: string | void;
136
+ plugins?: string | void | null;
137
137
  https_proxy?: string;
138
138
  no_proxy?: string;
139
139
  max_body_size?: string;
@@ -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.1",
4
4
  "description": "verdaccio types definitions",
5
5
  "keywords": [
6
6
  "verdaccio",