cargo-near 0.16.2 → 0.18.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 +25 -0
- package/binary-install.js +27 -7
- package/binary.js +1 -1
- package/npm-shrinkwrap.json +226 -424
- package/package.json +14 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.18.0](https://github.com/near/cargo-near/compare/cargo-near-v0.17.0...cargo-near-v0.18.0) - 2025-12-22
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- New style of interactive CLI prompts! (upgrade near-cli-rs to 0.23) ([#374](https://github.com/near/cargo-near/pull/374))
|
|
15
|
+
- allow specifying features for cargo near abi ([#366](https://github.com/near/cargo-near/pull/366))
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- use #[derive(Default)] for BuildContext ([#368](https://github.com/near/cargo-near/pull/368))
|
|
20
|
+
|
|
21
|
+
### Other
|
|
22
|
+
|
|
23
|
+
- Update `cargo near new` template to use a more complex and meaningful auction implementation ([#370](https://github.com/near/cargo-near/pull/370))
|
|
24
|
+
|
|
25
|
+
## [0.17.0](https://github.com/near/cargo-near/compare/cargo-near-v0.16.2...cargo-near-v0.17.0) - 2025-09-14
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- support `--profile` flag ([#362](https://github.com/near/cargo-near/pull/362))
|
|
30
|
+
|
|
31
|
+
### Other
|
|
32
|
+
|
|
33
|
+
- update `cargo near new` template `image` and `image_digest` ([#359](https://github.com/near/cargo-near/pull/359))
|
|
34
|
+
|
|
10
35
|
## [0.16.2](https://github.com/near/cargo-near/compare/cargo-near-v0.16.1...cargo-near-v0.16.2) - 2025-08-31
|
|
11
36
|
|
|
12
37
|
### Other
|
package/binary-install.js
CHANGED
|
@@ -13,7 +13,7 @@ const error = (msg) => {
|
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
class Package {
|
|
16
|
-
constructor(name, url, filename, zipExt, binaries) {
|
|
16
|
+
constructor(platform, name, url, filename, zipExt, binaries) {
|
|
17
17
|
let errors = [];
|
|
18
18
|
if (typeof url !== "string") {
|
|
19
19
|
errors.push("url must be a string");
|
|
@@ -47,6 +47,8 @@ class Package {
|
|
|
47
47
|
'\n\nCorrect usage: new Package("my-binary", "https://example.com/binary/download.tar.gz", {"my-binary": "my-binary"})';
|
|
48
48
|
error(errorMsg);
|
|
49
49
|
}
|
|
50
|
+
|
|
51
|
+
this.platform = platform;
|
|
50
52
|
this.url = url;
|
|
51
53
|
this.name = name;
|
|
52
54
|
this.filename = filename;
|
|
@@ -122,12 +124,30 @@ class Package {
|
|
|
122
124
|
);
|
|
123
125
|
}
|
|
124
126
|
} else if (this.zipExt == ".zip") {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
127
|
+
let result;
|
|
128
|
+
if (this.platform.artifactName.includes("windows")) {
|
|
129
|
+
// Windows does not have "unzip" by default on many installations, instead
|
|
130
|
+
// we use Expand-Archive from powershell
|
|
131
|
+
result = spawnSync("powershell.exe", [
|
|
132
|
+
"-NoProfile",
|
|
133
|
+
"-NonInteractive",
|
|
134
|
+
"-Command",
|
|
135
|
+
`& {
|
|
136
|
+
param([string]$LiteralPath, [string]$DestinationPath)
|
|
137
|
+
Expand-Archive -LiteralPath $LiteralPath -DestinationPath $DestinationPath -Force
|
|
138
|
+
}`,
|
|
139
|
+
tempFile,
|
|
140
|
+
this.installDirectory,
|
|
141
|
+
]);
|
|
142
|
+
} else {
|
|
143
|
+
result = spawnSync("unzip", [
|
|
144
|
+
"-q",
|
|
145
|
+
tempFile,
|
|
146
|
+
"-d",
|
|
147
|
+
this.installDirectory,
|
|
148
|
+
]);
|
|
149
|
+
}
|
|
150
|
+
|
|
131
151
|
if (result.status == 0) {
|
|
132
152
|
resolve();
|
|
133
153
|
} else if (result.error) {
|
package/binary.js
CHANGED
|
@@ -96,7 +96,7 @@ const getPackage = () => {
|
|
|
96
96
|
const url = `${artifactDownloadUrl}/${platform.artifactName}`;
|
|
97
97
|
let filename = platform.artifactName;
|
|
98
98
|
let ext = platform.zipExt;
|
|
99
|
-
let binary = new Package(name, url, filename, ext, platform.bins);
|
|
99
|
+
let binary = new Package(platform, name, url, filename, ext, platform.bins);
|
|
100
100
|
|
|
101
101
|
return binary;
|
|
102
102
|
};
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|
"cargo-near": "run-cargo-near.js"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"axios": "^1.
|
|
10
|
+
"axios": "^1.13.2",
|
|
11
11
|
"axios-proxy-builder": "^0.1.2",
|
|
12
12
|
"console.table": "^0.10.0",
|
|
13
|
-
"detect-libc": "^2.
|
|
14
|
-
"rimraf": "^
|
|
13
|
+
"detect-libc": "^2.1.2",
|
|
14
|
+
"rimraf": "^6.1.2"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"prettier": "^3.4
|
|
17
|
+
"prettier": "^3.7.4"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">=14",
|
|
@@ -23,58 +23,28 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT OR Apache-2.0",
|
|
25
25
|
"name": "cargo-near",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.18.0"
|
|
27
27
|
},
|
|
28
|
-
"node_modules/@isaacs/
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"string-width": "^5.1.2",
|
|
31
|
-
"string-width-cjs": "npm:string-width@^4.2.0",
|
|
32
|
-
"strip-ansi": "^7.0.1",
|
|
33
|
-
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
|
|
34
|
-
"wrap-ansi": "^8.1.0",
|
|
35
|
-
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
|
|
36
|
-
},
|
|
28
|
+
"node_modules/@isaacs/balanced-match": {
|
|
37
29
|
"engines": {
|
|
38
|
-
"node": ">=
|
|
30
|
+
"node": "20 || >=22"
|
|
39
31
|
},
|
|
40
|
-
"integrity": "sha512-
|
|
41
|
-
"license": "ISC",
|
|
42
|
-
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
|
|
43
|
-
"version": "8.0.2"
|
|
44
|
-
},
|
|
45
|
-
"node_modules/@pkgjs/parseargs": {
|
|
46
|
-
"engines": {
|
|
47
|
-
"node": ">=14"
|
|
48
|
-
},
|
|
49
|
-
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
|
|
32
|
+
"integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==",
|
|
50
33
|
"license": "MIT",
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"version": "0.11.0"
|
|
34
|
+
"resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
|
|
35
|
+
"version": "4.0.1"
|
|
54
36
|
},
|
|
55
|
-
"node_modules/
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
},
|
|
59
|
-
"funding": {
|
|
60
|
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
37
|
+
"node_modules/@isaacs/brace-expansion": {
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@isaacs/balanced-match": "^4.0.1"
|
|
61
40
|
},
|
|
62
|
-
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
|
|
63
|
-
"license": "MIT",
|
|
64
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
|
|
65
|
-
"version": "6.0.1"
|
|
66
|
-
},
|
|
67
|
-
"node_modules/ansi-styles": {
|
|
68
41
|
"engines": {
|
|
69
|
-
"node": ">=
|
|
70
|
-
},
|
|
71
|
-
"funding": {
|
|
72
|
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
42
|
+
"node": "20 || >=22"
|
|
73
43
|
},
|
|
74
|
-
"integrity": "sha512-
|
|
44
|
+
"integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==",
|
|
75
45
|
"license": "MIT",
|
|
76
|
-
"resolved": "https://registry.npmjs.org/
|
|
77
|
-
"version": "
|
|
46
|
+
"resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz",
|
|
47
|
+
"version": "5.0.0"
|
|
78
48
|
},
|
|
79
49
|
"node_modules/asynckit": {
|
|
80
50
|
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
|
@@ -85,13 +55,13 @@
|
|
|
85
55
|
"node_modules/axios": {
|
|
86
56
|
"dependencies": {
|
|
87
57
|
"follow-redirects": "^1.15.6",
|
|
88
|
-
"form-data": "^4.0.
|
|
58
|
+
"form-data": "^4.0.4",
|
|
89
59
|
"proxy-from-env": "^1.1.0"
|
|
90
60
|
},
|
|
91
|
-
"integrity": "sha512-
|
|
61
|
+
"integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==",
|
|
92
62
|
"license": "MIT",
|
|
93
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
94
|
-
"version": "1.
|
|
63
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.13.2.tgz",
|
|
64
|
+
"version": "1.13.2"
|
|
95
65
|
},
|
|
96
66
|
"node_modules/axios-proxy-builder": {
|
|
97
67
|
"dependencies": {
|
|
@@ -102,20 +72,18 @@
|
|
|
102
72
|
"resolved": "https://registry.npmjs.org/axios-proxy-builder/-/axios-proxy-builder-0.1.2.tgz",
|
|
103
73
|
"version": "0.1.2"
|
|
104
74
|
},
|
|
105
|
-
"node_modules/
|
|
106
|
-
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
107
|
-
"license": "MIT",
|
|
108
|
-
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
109
|
-
"version": "1.0.2"
|
|
110
|
-
},
|
|
111
|
-
"node_modules/brace-expansion": {
|
|
75
|
+
"node_modules/call-bind-apply-helpers": {
|
|
112
76
|
"dependencies": {
|
|
113
|
-
"
|
|
77
|
+
"es-errors": "^1.3.0",
|
|
78
|
+
"function-bind": "^1.1.2"
|
|
79
|
+
},
|
|
80
|
+
"engines": {
|
|
81
|
+
"node": ">= 0.4"
|
|
114
82
|
},
|
|
115
|
-
"integrity": "sha512-
|
|
83
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
116
84
|
"license": "MIT",
|
|
117
|
-
"resolved": "https://registry.npmjs.org/
|
|
118
|
-
"version": "
|
|
85
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
86
|
+
"version": "1.0.2"
|
|
119
87
|
},
|
|
120
88
|
"node_modules/clone": {
|
|
121
89
|
"engines": {
|
|
@@ -127,24 +95,6 @@
|
|
|
127
95
|
"resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
|
|
128
96
|
"version": "1.0.4"
|
|
129
97
|
},
|
|
130
|
-
"node_modules/color-convert": {
|
|
131
|
-
"dependencies": {
|
|
132
|
-
"color-name": "~1.1.4"
|
|
133
|
-
},
|
|
134
|
-
"engines": {
|
|
135
|
-
"node": ">=7.0.0"
|
|
136
|
-
},
|
|
137
|
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
138
|
-
"license": "MIT",
|
|
139
|
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
|
140
|
-
"version": "2.0.1"
|
|
141
|
-
},
|
|
142
|
-
"node_modules/color-name": {
|
|
143
|
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
144
|
-
"license": "MIT",
|
|
145
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
|
146
|
-
"version": "1.1.4"
|
|
147
|
-
},
|
|
148
98
|
"node_modules/combined-stream": {
|
|
149
99
|
"dependencies": {
|
|
150
100
|
"delayed-stream": "~1.0.0"
|
|
@@ -169,20 +119,6 @@
|
|
|
169
119
|
"resolved": "https://registry.npmjs.org/console.table/-/console.table-0.10.0.tgz",
|
|
170
120
|
"version": "0.10.0"
|
|
171
121
|
},
|
|
172
|
-
"node_modules/cross-spawn": {
|
|
173
|
-
"dependencies": {
|
|
174
|
-
"path-key": "^3.1.0",
|
|
175
|
-
"shebang-command": "^2.0.0",
|
|
176
|
-
"which": "^2.0.1"
|
|
177
|
-
},
|
|
178
|
-
"engines": {
|
|
179
|
-
"node": ">= 8"
|
|
180
|
-
},
|
|
181
|
-
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
182
|
-
"license": "MIT",
|
|
183
|
-
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
184
|
-
"version": "7.0.6"
|
|
185
|
-
},
|
|
186
122
|
"node_modules/defaults": {
|
|
187
123
|
"dependencies": {
|
|
188
124
|
"clone": "^1.0.2"
|
|
@@ -209,16 +145,24 @@
|
|
|
209
145
|
"engines": {
|
|
210
146
|
"node": ">=8"
|
|
211
147
|
},
|
|
212
|
-
"integrity": "sha512-
|
|
148
|
+
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
|
|
213
149
|
"license": "Apache-2.0",
|
|
214
|
-
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.
|
|
215
|
-
"version": "2.
|
|
150
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
151
|
+
"version": "2.1.2"
|
|
216
152
|
},
|
|
217
|
-
"node_modules/
|
|
218
|
-
"
|
|
153
|
+
"node_modules/dunder-proto": {
|
|
154
|
+
"dependencies": {
|
|
155
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
156
|
+
"es-errors": "^1.3.0",
|
|
157
|
+
"gopd": "^1.2.0"
|
|
158
|
+
},
|
|
159
|
+
"engines": {
|
|
160
|
+
"node": ">= 0.4"
|
|
161
|
+
},
|
|
162
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
219
163
|
"license": "MIT",
|
|
220
|
-
"resolved": "https://registry.npmjs.org/
|
|
221
|
-
"version": "0.
|
|
164
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
165
|
+
"version": "1.0.1"
|
|
222
166
|
},
|
|
223
167
|
"node_modules/easy-table": {
|
|
224
168
|
"integrity": "sha512-oq33hWOSSnl2Hoh00tZWaIPi1ievrD9aFG82/IgjlycAnW9hHx5PkJiXpxPsgEE+H7BsbVQXFVFST8TEXS6/pA==",
|
|
@@ -229,11 +173,50 @@
|
|
|
229
173
|
"resolved": "https://registry.npmjs.org/easy-table/-/easy-table-1.1.0.tgz",
|
|
230
174
|
"version": "1.1.0"
|
|
231
175
|
},
|
|
232
|
-
"node_modules/
|
|
233
|
-
"
|
|
176
|
+
"node_modules/es-define-property": {
|
|
177
|
+
"engines": {
|
|
178
|
+
"node": ">= 0.4"
|
|
179
|
+
},
|
|
180
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
181
|
+
"license": "MIT",
|
|
182
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
183
|
+
"version": "1.0.1"
|
|
184
|
+
},
|
|
185
|
+
"node_modules/es-errors": {
|
|
186
|
+
"engines": {
|
|
187
|
+
"node": ">= 0.4"
|
|
188
|
+
},
|
|
189
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
190
|
+
"license": "MIT",
|
|
191
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
192
|
+
"version": "1.3.0"
|
|
193
|
+
},
|
|
194
|
+
"node_modules/es-object-atoms": {
|
|
195
|
+
"dependencies": {
|
|
196
|
+
"es-errors": "^1.3.0"
|
|
197
|
+
},
|
|
198
|
+
"engines": {
|
|
199
|
+
"node": ">= 0.4"
|
|
200
|
+
},
|
|
201
|
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
|
202
|
+
"license": "MIT",
|
|
203
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
204
|
+
"version": "1.1.1"
|
|
205
|
+
},
|
|
206
|
+
"node_modules/es-set-tostringtag": {
|
|
207
|
+
"dependencies": {
|
|
208
|
+
"es-errors": "^1.3.0",
|
|
209
|
+
"get-intrinsic": "^1.2.6",
|
|
210
|
+
"has-tostringtag": "^1.0.2",
|
|
211
|
+
"hasown": "^2.0.2"
|
|
212
|
+
},
|
|
213
|
+
"engines": {
|
|
214
|
+
"node": ">= 0.4"
|
|
215
|
+
},
|
|
216
|
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
|
234
217
|
"license": "MIT",
|
|
235
|
-
"resolved": "https://registry.npmjs.org/
|
|
236
|
-
"version": "
|
|
218
|
+
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
|
219
|
+
"version": "2.1.0"
|
|
237
220
|
},
|
|
238
221
|
"node_modules/follow-redirects": {
|
|
239
222
|
"engines": {
|
|
@@ -255,99 +238,153 @@
|
|
|
255
238
|
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
|
|
256
239
|
"version": "1.15.6"
|
|
257
240
|
},
|
|
258
|
-
"node_modules/
|
|
241
|
+
"node_modules/form-data": {
|
|
259
242
|
"dependencies": {
|
|
260
|
-
"
|
|
261
|
-
"
|
|
243
|
+
"asynckit": "^0.4.0",
|
|
244
|
+
"combined-stream": "^1.0.8",
|
|
245
|
+
"es-set-tostringtag": "^2.1.0",
|
|
246
|
+
"hasown": "^2.0.2",
|
|
247
|
+
"mime-types": "^2.1.12"
|
|
262
248
|
},
|
|
263
249
|
"engines": {
|
|
264
|
-
"node": ">=
|
|
250
|
+
"node": ">= 6"
|
|
265
251
|
},
|
|
252
|
+
"integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
|
|
253
|
+
"license": "MIT",
|
|
254
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
|
|
255
|
+
"version": "4.0.4"
|
|
256
|
+
},
|
|
257
|
+
"node_modules/function-bind": {
|
|
266
258
|
"funding": {
|
|
267
|
-
"url": "https://github.com/sponsors/
|
|
259
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
268
260
|
},
|
|
269
|
-
"integrity": "sha512-
|
|
270
|
-
"license": "
|
|
271
|
-
"resolved": "https://registry.npmjs.org/
|
|
272
|
-
"version": "
|
|
261
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
262
|
+
"license": "MIT",
|
|
263
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
264
|
+
"version": "1.1.2"
|
|
273
265
|
},
|
|
274
|
-
"node_modules/
|
|
266
|
+
"node_modules/get-intrinsic": {
|
|
275
267
|
"dependencies": {
|
|
276
|
-
"
|
|
277
|
-
"
|
|
278
|
-
"
|
|
268
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
269
|
+
"es-define-property": "^1.0.1",
|
|
270
|
+
"es-errors": "^1.3.0",
|
|
271
|
+
"es-object-atoms": "^1.1.1",
|
|
272
|
+
"function-bind": "^1.1.2",
|
|
273
|
+
"get-proto": "^1.0.1",
|
|
274
|
+
"gopd": "^1.2.0",
|
|
275
|
+
"has-symbols": "^1.1.0",
|
|
276
|
+
"hasown": "^2.0.2",
|
|
277
|
+
"math-intrinsics": "^1.1.0"
|
|
279
278
|
},
|
|
280
279
|
"engines": {
|
|
281
|
-
"node": ">=
|
|
280
|
+
"node": ">= 0.4"
|
|
281
|
+
},
|
|
282
|
+
"funding": {
|
|
283
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
282
284
|
},
|
|
283
|
-
"integrity": "sha512-
|
|
285
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
284
286
|
"license": "MIT",
|
|
285
|
-
"resolved": "https://registry.npmjs.org/
|
|
286
|
-
"version": "
|
|
287
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
288
|
+
"version": "1.3.0"
|
|
287
289
|
},
|
|
288
|
-
"node_modules/
|
|
289
|
-
"
|
|
290
|
-
"
|
|
290
|
+
"node_modules/get-proto": {
|
|
291
|
+
"dependencies": {
|
|
292
|
+
"dunder-proto": "^1.0.1",
|
|
293
|
+
"es-object-atoms": "^1.0.0"
|
|
294
|
+
},
|
|
295
|
+
"engines": {
|
|
296
|
+
"node": ">= 0.4"
|
|
291
297
|
},
|
|
298
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
299
|
+
"license": "MIT",
|
|
300
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
301
|
+
"version": "1.0.1"
|
|
302
|
+
},
|
|
303
|
+
"node_modules/glob": {
|
|
292
304
|
"dependencies": {
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
-
"
|
|
296
|
-
"minipass": "^7.0.4",
|
|
297
|
-
"path-scurry": "^1.11.0"
|
|
305
|
+
"minimatch": "^10.1.1",
|
|
306
|
+
"minipass": "^7.1.2",
|
|
307
|
+
"path-scurry": "^2.0.0"
|
|
298
308
|
},
|
|
299
309
|
"engines": {
|
|
300
|
-
"node": "
|
|
310
|
+
"node": "20 || >=22"
|
|
301
311
|
},
|
|
302
312
|
"funding": {
|
|
303
313
|
"url": "https://github.com/sponsors/isaacs"
|
|
304
314
|
},
|
|
305
|
-
"integrity": "sha512-
|
|
306
|
-
"license": "
|
|
307
|
-
"resolved": "https://registry.npmjs.org/glob/-/glob-
|
|
308
|
-
"version": "
|
|
315
|
+
"integrity": "sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==",
|
|
316
|
+
"license": "BlueOak-1.0.0",
|
|
317
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-13.0.0.tgz",
|
|
318
|
+
"version": "13.0.0"
|
|
309
319
|
},
|
|
310
|
-
"node_modules/
|
|
320
|
+
"node_modules/gopd": {
|
|
311
321
|
"engines": {
|
|
312
|
-
"node": ">=
|
|
322
|
+
"node": ">= 0.4"
|
|
323
|
+
},
|
|
324
|
+
"funding": {
|
|
325
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
313
326
|
},
|
|
314
|
-
"integrity": "sha512-
|
|
327
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
315
328
|
"license": "MIT",
|
|
316
|
-
"resolved": "https://registry.npmjs.org/
|
|
317
|
-
"version": "
|
|
329
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
330
|
+
"version": "1.2.0"
|
|
318
331
|
},
|
|
319
|
-
"node_modules/
|
|
320
|
-
"
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
"
|
|
332
|
+
"node_modules/has-symbols": {
|
|
333
|
+
"engines": {
|
|
334
|
+
"node": ">= 0.4"
|
|
335
|
+
},
|
|
336
|
+
"funding": {
|
|
337
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
338
|
+
},
|
|
339
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
340
|
+
"license": "MIT",
|
|
341
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
342
|
+
"version": "1.1.0"
|
|
324
343
|
},
|
|
325
|
-
"node_modules/
|
|
344
|
+
"node_modules/has-tostringtag": {
|
|
326
345
|
"dependencies": {
|
|
327
|
-
"
|
|
346
|
+
"has-symbols": "^1.0.3"
|
|
328
347
|
},
|
|
329
348
|
"engines": {
|
|
330
|
-
"node": ">=
|
|
349
|
+
"node": ">= 0.4"
|
|
331
350
|
},
|
|
332
351
|
"funding": {
|
|
333
|
-
"url": "https://github.com/sponsors/
|
|
352
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
334
353
|
},
|
|
335
|
-
"integrity": "sha512-
|
|
336
|
-
"license": "
|
|
337
|
-
"
|
|
338
|
-
|
|
354
|
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
|
355
|
+
"license": "MIT",
|
|
356
|
+
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
|
357
|
+
"version": "1.0.2"
|
|
358
|
+
},
|
|
359
|
+
"node_modules/hasown": {
|
|
360
|
+
"dependencies": {
|
|
361
|
+
"function-bind": "^1.1.2"
|
|
339
362
|
},
|
|
340
|
-
"
|
|
341
|
-
|
|
363
|
+
"engines": {
|
|
364
|
+
"node": ">= 0.4"
|
|
365
|
+
},
|
|
366
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
367
|
+
"license": "MIT",
|
|
368
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
369
|
+
"version": "2.0.2"
|
|
342
370
|
},
|
|
343
371
|
"node_modules/lru-cache": {
|
|
344
372
|
"engines": {
|
|
345
|
-
"node": "
|
|
373
|
+
"node": "20 || >=22"
|
|
346
374
|
},
|
|
347
|
-
"integrity": "sha512-
|
|
348
|
-
"license": "
|
|
349
|
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-
|
|
350
|
-
"version": "
|
|
375
|
+
"integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
|
|
376
|
+
"license": "BlueOak-1.0.0",
|
|
377
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
|
|
378
|
+
"version": "11.2.4"
|
|
379
|
+
},
|
|
380
|
+
"node_modules/math-intrinsics": {
|
|
381
|
+
"engines": {
|
|
382
|
+
"node": ">= 0.4"
|
|
383
|
+
},
|
|
384
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
385
|
+
"license": "MIT",
|
|
386
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
387
|
+
"version": "1.1.0"
|
|
351
388
|
},
|
|
352
389
|
"node_modules/mime-db": {
|
|
353
390
|
"engines": {
|
|
@@ -372,51 +409,49 @@
|
|
|
372
409
|
},
|
|
373
410
|
"node_modules/minimatch": {
|
|
374
411
|
"dependencies": {
|
|
375
|
-
"brace-expansion": "^
|
|
412
|
+
"@isaacs/brace-expansion": "^5.0.0"
|
|
376
413
|
},
|
|
377
414
|
"engines": {
|
|
378
|
-
"node": "
|
|
415
|
+
"node": "20 || >=22"
|
|
379
416
|
},
|
|
380
417
|
"funding": {
|
|
381
418
|
"url": "https://github.com/sponsors/isaacs"
|
|
382
419
|
},
|
|
383
|
-
"integrity": "sha512-
|
|
384
|
-
"license": "
|
|
385
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-
|
|
386
|
-
"version": "
|
|
420
|
+
"integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==",
|
|
421
|
+
"license": "BlueOak-1.0.0",
|
|
422
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz",
|
|
423
|
+
"version": "10.1.1"
|
|
387
424
|
},
|
|
388
425
|
"node_modules/minipass": {
|
|
389
426
|
"engines": {
|
|
390
427
|
"node": ">=16 || 14 >=14.17"
|
|
391
428
|
},
|
|
392
429
|
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
|
|
430
|
+
"license": "ISC",
|
|
393
431
|
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
|
|
394
432
|
"version": "7.1.2"
|
|
395
433
|
},
|
|
396
|
-
"node_modules/
|
|
397
|
-
"
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
"
|
|
401
|
-
"license": "MIT",
|
|
402
|
-
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
403
|
-
"version": "3.1.1"
|
|
434
|
+
"node_modules/package-json-from-dist": {
|
|
435
|
+
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
|
|
436
|
+
"license": "BlueOak-1.0.0",
|
|
437
|
+
"resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
|
|
438
|
+
"version": "1.0.1"
|
|
404
439
|
},
|
|
405
440
|
"node_modules/path-scurry": {
|
|
406
441
|
"dependencies": {
|
|
407
|
-
"lru-cache": "^
|
|
408
|
-
"minipass": "^
|
|
442
|
+
"lru-cache": "^11.0.0",
|
|
443
|
+
"minipass": "^7.1.2"
|
|
409
444
|
},
|
|
410
445
|
"engines": {
|
|
411
|
-
"node": "
|
|
446
|
+
"node": "20 || >=22"
|
|
412
447
|
},
|
|
413
448
|
"funding": {
|
|
414
449
|
"url": "https://github.com/sponsors/isaacs"
|
|
415
450
|
},
|
|
416
|
-
"integrity": "sha512-
|
|
451
|
+
"integrity": "sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==",
|
|
417
452
|
"license": "BlueOak-1.0.0",
|
|
418
|
-
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-
|
|
419
|
-
"version": "
|
|
453
|
+
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.1.tgz",
|
|
454
|
+
"version": "2.0.1"
|
|
420
455
|
},
|
|
421
456
|
"node_modules/prettier": {
|
|
422
457
|
"bin": {
|
|
@@ -429,10 +464,10 @@
|
|
|
429
464
|
"funding": {
|
|
430
465
|
"url": "https://github.com/prettier/prettier?sponsor=1"
|
|
431
466
|
},
|
|
432
|
-
"integrity": "sha512-
|
|
467
|
+
"integrity": "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==",
|
|
433
468
|
"license": "MIT",
|
|
434
|
-
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.
|
|
435
|
-
"version": "3.4
|
|
469
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.7.4.tgz",
|
|
470
|
+
"version": "3.7.4"
|
|
436
471
|
},
|
|
437
472
|
"node_modules/proxy-from-env": {
|
|
438
473
|
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
|
|
@@ -445,146 +480,19 @@
|
|
|
445
480
|
"rimraf": "dist/esm/bin.mjs"
|
|
446
481
|
},
|
|
447
482
|
"dependencies": {
|
|
448
|
-
"glob": "^
|
|
449
|
-
|
|
450
|
-
"engines": {
|
|
451
|
-
"node": ">=18"
|
|
452
|
-
},
|
|
453
|
-
"funding": {
|
|
454
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
455
|
-
},
|
|
456
|
-
"integrity": "sha512-XSh0V2/yNhDEi8HwdIefD8MLgs4LQXPag/nEJWs3YUc3Upn+UHa1GyIkEg9xSSNt7HnkO5FjTvmcRzgf+8UZuw==",
|
|
457
|
-
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.8.tgz",
|
|
458
|
-
"version": "5.0.8"
|
|
459
|
-
},
|
|
460
|
-
"node_modules/shebang-command": {
|
|
461
|
-
"dependencies": {
|
|
462
|
-
"shebang-regex": "^3.0.0"
|
|
463
|
-
},
|
|
464
|
-
"engines": {
|
|
465
|
-
"node": ">=8"
|
|
466
|
-
},
|
|
467
|
-
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
468
|
-
"license": "MIT",
|
|
469
|
-
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
470
|
-
"version": "2.0.0"
|
|
471
|
-
},
|
|
472
|
-
"node_modules/shebang-regex": {
|
|
473
|
-
"engines": {
|
|
474
|
-
"node": ">=8"
|
|
483
|
+
"glob": "^13.0.0",
|
|
484
|
+
"package-json-from-dist": "^1.0.1"
|
|
475
485
|
},
|
|
476
|
-
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
477
|
-
"license": "MIT",
|
|
478
|
-
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
479
|
-
"version": "3.0.0"
|
|
480
|
-
},
|
|
481
|
-
"node_modules/signal-exit": {
|
|
482
486
|
"engines": {
|
|
483
|
-
"node": ">=
|
|
487
|
+
"node": "20 || >=22"
|
|
484
488
|
},
|
|
485
489
|
"funding": {
|
|
486
490
|
"url": "https://github.com/sponsors/isaacs"
|
|
487
491
|
},
|
|
488
|
-
"integrity": "sha512-
|
|
489
|
-
"license": "
|
|
490
|
-
"resolved": "https://registry.npmjs.org/
|
|
491
|
-
"version": "
|
|
492
|
-
},
|
|
493
|
-
"node_modules/string-width": {
|
|
494
|
-
"dependencies": {
|
|
495
|
-
"eastasianwidth": "^0.2.0",
|
|
496
|
-
"emoji-regex": "^9.2.2",
|
|
497
|
-
"strip-ansi": "^7.0.1"
|
|
498
|
-
},
|
|
499
|
-
"engines": {
|
|
500
|
-
"node": ">=12"
|
|
501
|
-
},
|
|
502
|
-
"funding": {
|
|
503
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
504
|
-
},
|
|
505
|
-
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
|
|
506
|
-
"license": "MIT",
|
|
507
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
|
|
508
|
-
"version": "5.1.2"
|
|
509
|
-
},
|
|
510
|
-
"node_modules/string-width-cjs": {
|
|
511
|
-
"dependencies": {
|
|
512
|
-
"emoji-regex": "^8.0.0",
|
|
513
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
514
|
-
"strip-ansi": "^6.0.1"
|
|
515
|
-
},
|
|
516
|
-
"engines": {
|
|
517
|
-
"node": ">=8"
|
|
518
|
-
},
|
|
519
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
520
|
-
"license": "MIT",
|
|
521
|
-
"name": "string-width",
|
|
522
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
523
|
-
"version": "4.2.3"
|
|
524
|
-
},
|
|
525
|
-
"node_modules/string-width-cjs/node_modules/ansi-regex": {
|
|
526
|
-
"engines": {
|
|
527
|
-
"node": ">=8"
|
|
528
|
-
},
|
|
529
|
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
530
|
-
"license": "MIT",
|
|
531
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
532
|
-
"version": "5.0.1"
|
|
533
|
-
},
|
|
534
|
-
"node_modules/string-width-cjs/node_modules/emoji-regex": {
|
|
535
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
536
|
-
"license": "MIT",
|
|
537
|
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
538
|
-
"version": "8.0.0"
|
|
539
|
-
},
|
|
540
|
-
"node_modules/string-width-cjs/node_modules/strip-ansi": {
|
|
541
|
-
"dependencies": {
|
|
542
|
-
"ansi-regex": "^5.0.1"
|
|
543
|
-
},
|
|
544
|
-
"engines": {
|
|
545
|
-
"node": ">=8"
|
|
546
|
-
},
|
|
547
|
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
548
|
-
"license": "MIT",
|
|
549
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
550
|
-
"version": "6.0.1"
|
|
551
|
-
},
|
|
552
|
-
"node_modules/strip-ansi": {
|
|
553
|
-
"dependencies": {
|
|
554
|
-
"ansi-regex": "^6.0.1"
|
|
555
|
-
},
|
|
556
|
-
"engines": {
|
|
557
|
-
"node": ">=12"
|
|
558
|
-
},
|
|
559
|
-
"funding": {
|
|
560
|
-
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
561
|
-
},
|
|
562
|
-
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
|
|
563
|
-
"license": "MIT",
|
|
564
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
|
|
565
|
-
"version": "7.1.0"
|
|
566
|
-
},
|
|
567
|
-
"node_modules/strip-ansi-cjs": {
|
|
568
|
-
"dependencies": {
|
|
569
|
-
"ansi-regex": "^5.0.1"
|
|
570
|
-
},
|
|
571
|
-
"engines": {
|
|
572
|
-
"node": ">=8"
|
|
573
|
-
},
|
|
574
|
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
575
|
-
"license": "MIT",
|
|
576
|
-
"name": "strip-ansi",
|
|
577
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
578
|
-
"version": "6.0.1"
|
|
579
|
-
},
|
|
580
|
-
"node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
|
|
581
|
-
"engines": {
|
|
582
|
-
"node": ">=8"
|
|
583
|
-
},
|
|
584
|
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
585
|
-
"license": "MIT",
|
|
586
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
587
|
-
"version": "5.0.1"
|
|
492
|
+
"integrity": "sha512-cFCkPslJv7BAXJsYlK1dZsbP8/ZNLkCAQ0bi1hf5EKX2QHegmDFEFA6QhuYJlk7UDdc+02JjO80YSOrWPpw06g==",
|
|
493
|
+
"license": "BlueOak-1.0.0",
|
|
494
|
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.1.2.tgz",
|
|
495
|
+
"version": "6.1.2"
|
|
588
496
|
},
|
|
589
497
|
"node_modules/tunnel": {
|
|
590
498
|
"engines": {
|
|
@@ -604,114 +512,8 @@
|
|
|
604
512
|
"optional": true,
|
|
605
513
|
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
|
|
606
514
|
"version": "1.0.1"
|
|
607
|
-
},
|
|
608
|
-
"node_modules/which": {
|
|
609
|
-
"bin": {
|
|
610
|
-
"node-which": "bin/node-which"
|
|
611
|
-
},
|
|
612
|
-
"dependencies": {
|
|
613
|
-
"isexe": "^2.0.0"
|
|
614
|
-
},
|
|
615
|
-
"engines": {
|
|
616
|
-
"node": ">= 8"
|
|
617
|
-
},
|
|
618
|
-
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
619
|
-
"license": "ISC",
|
|
620
|
-
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
621
|
-
"version": "2.0.2"
|
|
622
|
-
},
|
|
623
|
-
"node_modules/wrap-ansi": {
|
|
624
|
-
"dependencies": {
|
|
625
|
-
"ansi-styles": "^6.1.0",
|
|
626
|
-
"string-width": "^5.0.1",
|
|
627
|
-
"strip-ansi": "^7.0.1"
|
|
628
|
-
},
|
|
629
|
-
"engines": {
|
|
630
|
-
"node": ">=12"
|
|
631
|
-
},
|
|
632
|
-
"funding": {
|
|
633
|
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
634
|
-
},
|
|
635
|
-
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
|
|
636
|
-
"license": "MIT",
|
|
637
|
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
|
|
638
|
-
"version": "8.1.0"
|
|
639
|
-
},
|
|
640
|
-
"node_modules/wrap-ansi-cjs": {
|
|
641
|
-
"dependencies": {
|
|
642
|
-
"ansi-styles": "^4.0.0",
|
|
643
|
-
"string-width": "^4.1.0",
|
|
644
|
-
"strip-ansi": "^6.0.0"
|
|
645
|
-
},
|
|
646
|
-
"engines": {
|
|
647
|
-
"node": ">=10"
|
|
648
|
-
},
|
|
649
|
-
"funding": {
|
|
650
|
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
651
|
-
},
|
|
652
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
653
|
-
"license": "MIT",
|
|
654
|
-
"name": "wrap-ansi",
|
|
655
|
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
656
|
-
"version": "7.0.0"
|
|
657
|
-
},
|
|
658
|
-
"node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
|
|
659
|
-
"engines": {
|
|
660
|
-
"node": ">=8"
|
|
661
|
-
},
|
|
662
|
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
663
|
-
"license": "MIT",
|
|
664
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
665
|
-
"version": "5.0.1"
|
|
666
|
-
},
|
|
667
|
-
"node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
|
|
668
|
-
"dependencies": {
|
|
669
|
-
"color-convert": "^2.0.1"
|
|
670
|
-
},
|
|
671
|
-
"engines": {
|
|
672
|
-
"node": ">=8"
|
|
673
|
-
},
|
|
674
|
-
"funding": {
|
|
675
|
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
676
|
-
},
|
|
677
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
678
|
-
"license": "MIT",
|
|
679
|
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
|
680
|
-
"version": "4.3.0"
|
|
681
|
-
},
|
|
682
|
-
"node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
|
|
683
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
684
|
-
"license": "MIT",
|
|
685
|
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
|
686
|
-
"version": "8.0.0"
|
|
687
|
-
},
|
|
688
|
-
"node_modules/wrap-ansi-cjs/node_modules/string-width": {
|
|
689
|
-
"dependencies": {
|
|
690
|
-
"emoji-regex": "^8.0.0",
|
|
691
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
692
|
-
"strip-ansi": "^6.0.1"
|
|
693
|
-
},
|
|
694
|
-
"engines": {
|
|
695
|
-
"node": ">=8"
|
|
696
|
-
},
|
|
697
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
698
|
-
"license": "MIT",
|
|
699
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
|
|
700
|
-
"version": "4.2.3"
|
|
701
|
-
},
|
|
702
|
-
"node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
|
|
703
|
-
"dependencies": {
|
|
704
|
-
"ansi-regex": "^5.0.1"
|
|
705
|
-
},
|
|
706
|
-
"engines": {
|
|
707
|
-
"node": ">=8"
|
|
708
|
-
},
|
|
709
|
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
710
|
-
"license": "MIT",
|
|
711
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
712
|
-
"version": "6.0.1"
|
|
713
515
|
}
|
|
714
516
|
},
|
|
715
517
|
"requires": true,
|
|
716
|
-
"version": "0.
|
|
518
|
+
"version": "0.18.0"
|
|
717
519
|
}
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/near/cargo-near/releases/download/cargo-near-v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/near/cargo-near/releases/download/cargo-near-v0.18.0",
|
|
3
3
|
"author": "Near Inc <hello@nearprotocol.com>",
|
|
4
4
|
"bin": {
|
|
5
5
|
"cargo-near": "run-cargo-near.js"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"axios": "^1.
|
|
8
|
+
"axios": "^1.13.2",
|
|
9
9
|
"axios-proxy-builder": "^0.1.2",
|
|
10
10
|
"console.table": "^0.10.0",
|
|
11
|
-
"detect-libc": "^2.
|
|
12
|
-
"rimraf": "^
|
|
11
|
+
"detect-libc": "^2.1.2",
|
|
12
|
+
"rimraf": "^6.1.2"
|
|
13
13
|
},
|
|
14
14
|
"description": "Cargo extension for building Rust smart contracts on NEAR",
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"prettier": "^3.4
|
|
16
|
+
"prettier": "^3.7.4"
|
|
17
17
|
},
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": ">=14",
|
|
@@ -51,8 +51,15 @@
|
|
|
51
51
|
},
|
|
52
52
|
"zipExt": ".tar.gz"
|
|
53
53
|
},
|
|
54
|
+
"aarch64-pc-windows-gnu": {
|
|
55
|
+
"artifactName": "cargo-near-aarch64-pc-windows-msvc.tar.gz",
|
|
56
|
+
"bins": {
|
|
57
|
+
"cargo-near": "cargo-near.exe"
|
|
58
|
+
},
|
|
59
|
+
"zipExt": ".tar.gz"
|
|
60
|
+
},
|
|
54
61
|
"aarch64-pc-windows-msvc": {
|
|
55
|
-
"artifactName": "cargo-near-
|
|
62
|
+
"artifactName": "cargo-near-aarch64-pc-windows-msvc.tar.gz",
|
|
56
63
|
"bins": {
|
|
57
64
|
"cargo-near": "cargo-near.exe"
|
|
58
65
|
},
|
|
@@ -94,7 +101,7 @@
|
|
|
94
101
|
"zipExt": ".tar.gz"
|
|
95
102
|
}
|
|
96
103
|
},
|
|
97
|
-
"version": "0.
|
|
104
|
+
"version": "0.18.0",
|
|
98
105
|
"volta": {
|
|
99
106
|
"node": "18.14.1",
|
|
100
107
|
"npm": "9.5.0"
|