@socketsecurity/cli-with-sentry 0.14.50 → 0.14.51
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.js +2 -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 +91 -108
- package/dist/module-sync/cli.js.map +1 -1
- package/dist/module-sync/index.d.ts +1 -1
- package/dist/module-sync/index.js +18 -19
- package/dist/module-sync/index.js.map +1 -1
- package/dist/module-sync/npm-paths.js +3 -43
- package/dist/module-sync/npm-paths.js.map +1 -1
- package/dist/require/cli.js +91 -108
- package/dist/require/cli.js.map +1 -1
- package/package.json +6 -6
- package/dist/module-sync/logging.d.ts +0 -16
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.51",
|
|
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",
|
|
@@ -69,17 +69,17 @@
|
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"@apideck/better-ajv-errors": "^0.3.6",
|
|
72
|
-
"@cyclonedx/cdxgen": "^11.
|
|
72
|
+
"@cyclonedx/cdxgen": "^11.2.0",
|
|
73
73
|
"@npmcli/promise-spawn": "^8.0.2",
|
|
74
74
|
"@octokit/rest": "^21.1.1",
|
|
75
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
|
-
"@socketregistry/is-unicode-supported": "^1.0.
|
|
79
|
+
"@socketregistry/is-unicode-supported": "^1.0.1",
|
|
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.107",
|
|
83
83
|
"@socketsecurity/sdk": "^1.4.5",
|
|
84
84
|
"blessed": "^0.1.81",
|
|
85
85
|
"blessed-contrib": "^4.11.0",
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"@types/mocha": "^10.0.10",
|
|
131
131
|
"@types/mock-fs": "^4.13.4",
|
|
132
132
|
"@types/ndjson": "^2.0.4",
|
|
133
|
-
"@types/node": "^22.13.
|
|
133
|
+
"@types/node": "^22.13.8",
|
|
134
134
|
"@types/npmcli__arborist": "^6.3.0",
|
|
135
135
|
"@types/npmcli__promise-spawn": "^6.0.3",
|
|
136
136
|
"@types/proc-log": "^3.0.4",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"npm-run-all2": "^7.0.2",
|
|
160
160
|
"oxlint": "0.15.12",
|
|
161
161
|
"read-package-up": "^11.0.0",
|
|
162
|
-
"rollup": "4.34.
|
|
162
|
+
"rollup": "4.34.9",
|
|
163
163
|
"rollup-plugin-ts": "^3.4.5",
|
|
164
164
|
"type-coverage": "^2.29.7",
|
|
165
165
|
"typescript": "5.4.5",
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
type LogSymbols = {
|
|
2
|
-
info: string;
|
|
3
|
-
success: string;
|
|
4
|
-
warning: string;
|
|
5
|
-
error: string;
|
|
6
|
-
};
|
|
7
|
-
declare function getLogSymbols(): LogSymbols;
|
|
8
|
-
declare class Logger {
|
|
9
|
-
#private;
|
|
10
|
-
constructor();
|
|
11
|
-
error(text: string): void;
|
|
12
|
-
info(text: string): void;
|
|
13
|
-
warn(text: string): void;
|
|
14
|
-
}
|
|
15
|
-
declare const logger: Logger;
|
|
16
|
-
export { LogSymbols, getLogSymbols, Logger, logger };
|