@socketsecurity/cli 0.14.48 → 0.14.50
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/dist/constants.d.ts +8 -3
- package/dist/constants.js +6 -2
- package/dist/constants.js.map +1 -1
- package/dist/module-sync/cli.js +695 -360
- package/dist/module-sync/cli.js.map +1 -1
- package/dist/module-sync/index.js +15 -6
- package/dist/module-sync/index.js.map +1 -1
- package/dist/module-sync/npm.d.ts +5 -3
- package/dist/module-sync/npm.js +23 -9
- package/dist/module-sync/npm.js.map +1 -1
- package/dist/require/cli.js +695 -360
- package/dist/require/cli.js.map +1 -1
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socketsecurity/cli",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.50",
|
|
4
4
|
"description": "CLI tool for Socket.dev",
|
|
5
5
|
"homepage": "http://github.com/SocketDev/socket-cli",
|
|
6
6
|
"license": "MIT",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"test:prepare": "cross-env VITEST=1 npm run build",
|
|
63
63
|
"test:unit": "vitest --run",
|
|
64
64
|
"test:unit:coverage": "vitest run --coverage",
|
|
65
|
-
"test:unit:update-snapshots": "vitest --update",
|
|
66
65
|
"test-ci": "run-s test:*",
|
|
66
|
+
"testu": "cross-env SOCKET_CLI_NO_API_TOKEN=1 run-s test:prepare test:unit -- --update",
|
|
67
67
|
"update": "run-p --aggregate-output update:**",
|
|
68
68
|
"update:deps": "npx --yes npm-check-updates"
|
|
69
69
|
},
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"@socketregistry/is-unicode-supported": "^1.0.0",
|
|
79
79
|
"@socketregistry/packageurl-js": "^1.0.2",
|
|
80
80
|
"@socketsecurity/config": "^2.1.3",
|
|
81
|
-
"@socketsecurity/registry": "^1.0.
|
|
81
|
+
"@socketsecurity/registry": "^1.0.95",
|
|
82
82
|
"@socketsecurity/sdk": "^1.4.5",
|
|
83
83
|
"blessed": "^0.1.81",
|
|
84
84
|
"blessed-contrib": "^4.11.0",
|
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
"typescript": "5.4.5",
|
|
165
165
|
"typescript-eslint": "^8.25.0",
|
|
166
166
|
"unplugin-purge-polyfills": "^0.0.7",
|
|
167
|
-
"vitest": "
|
|
167
|
+
"vitest": "3.0.7"
|
|
168
168
|
},
|
|
169
169
|
"overrides": {
|
|
170
170
|
"aggregate-error": "npm:@socketregistry/aggregate-error@^1",
|
|
@@ -190,6 +190,9 @@
|
|
|
190
190
|
"side-channel": "npm:@socketregistry/side-channel@^1",
|
|
191
191
|
"tiny-colors": "$yoctocolors-cjs",
|
|
192
192
|
"typedarray": "npm:@socketregistry/typedarray@^1",
|
|
193
|
+
"undici": "^6.21.1",
|
|
194
|
+
"vite": "^6.2.0",
|
|
195
|
+
"xml2js": "^0.5.0",
|
|
193
196
|
"yaml": "$yaml"
|
|
194
197
|
},
|
|
195
198
|
"resolutions": {
|