@socketsecurity/cli-with-sentry 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/instrument-with-sentry.js +2 -2
- package/dist/instrument-with-sentry.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 +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socketsecurity/cli-with-sentry",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.50",
|
|
4
4
|
"description": "CLI tool for Socket.dev, includes Sentry error handling, otherwise identical to the regular `socket` package",
|
|
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
|
},
|
|
@@ -72,14 +72,14 @@
|
|
|
72
72
|
"@cyclonedx/cdxgen": "^11.1.10",
|
|
73
73
|
"@npmcli/promise-spawn": "^8.0.2",
|
|
74
74
|
"@octokit/rest": "^21.1.1",
|
|
75
|
-
"@sentry/node": "9.
|
|
75
|
+
"@sentry/node": "9.3.0",
|
|
76
76
|
"@socketregistry/hyrious__bun.lockb": "^1.0.13",
|
|
77
77
|
"@socketregistry/indent-string": "^1.0.10",
|
|
78
78
|
"@socketregistry/is-interactive": "^1.0.1",
|
|
79
79
|
"@socketregistry/is-unicode-supported": "^1.0.0",
|
|
80
80
|
"@socketregistry/packageurl-js": "^1.0.2",
|
|
81
81
|
"@socketsecurity/config": "^2.1.3",
|
|
82
|
-
"@socketsecurity/registry": "^1.0.
|
|
82
|
+
"@socketsecurity/registry": "^1.0.95",
|
|
83
83
|
"@socketsecurity/sdk": "^1.4.5",
|
|
84
84
|
"blessed": "^0.1.81",
|
|
85
85
|
"blessed-contrib": "^4.11.0",
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"typescript": "5.4.5",
|
|
166
166
|
"typescript-eslint": "^8.25.0",
|
|
167
167
|
"unplugin-purge-polyfills": "^0.0.7",
|
|
168
|
-
"vitest": "
|
|
168
|
+
"vitest": "3.0.7"
|
|
169
169
|
},
|
|
170
170
|
"overrides": {
|
|
171
171
|
"aggregate-error": "npm:@socketregistry/aggregate-error@^1",
|
|
@@ -191,6 +191,9 @@
|
|
|
191
191
|
"side-channel": "npm:@socketregistry/side-channel@^1",
|
|
192
192
|
"tiny-colors": "$yoctocolors-cjs",
|
|
193
193
|
"typedarray": "npm:@socketregistry/typedarray@^1",
|
|
194
|
+
"undici": "^6.21.1",
|
|
195
|
+
"vite": "^6.2.0",
|
|
196
|
+
"xml2js": "^0.5.0",
|
|
194
197
|
"yaml": "$yaml"
|
|
195
198
|
},
|
|
196
199
|
"resolutions": {
|