@socketsecurity/cli-with-sentry 0.14.57 → 0.14.58
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/bin/cli.js +2 -0
- package/dist/constants.d.ts +1 -2
- package/dist/constants.js +9 -6
- 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/artifact.d.ts +75 -0
- package/dist/module-sync/cli.js +1041 -791
- package/dist/module-sync/cli.js.map +1 -1
- package/dist/module-sync/index.d.ts +4 -3
- package/dist/module-sync/shadow-bin.js +3 -1
- package/dist/module-sync/shadow-bin.js.map +1 -1
- package/dist/module-sync/shadow-npm-inject.js +1414 -1287
- package/dist/module-sync/shadow-npm-inject.js.map +1 -1
- package/dist/module-sync/shadow-npm-paths.js.map +1 -1
- package/dist/module-sync/socket-package-alert.d.ts +46 -0
- package/dist/module-sync/types.d.ts +11 -3
- package/dist/require/cli.js +1041 -791
- package/dist/require/cli.js.map +1 -1
- package/package.json +12 -10
- package/dist/module-sync/color-or-markdown.d.ts +0 -16
- package/dist/module-sync/socket-url.d.ts +0 -3
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.58",
|
|
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",
|
|
@@ -73,14 +73,15 @@
|
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@apideck/better-ajv-errors": "0.3.6",
|
|
75
75
|
"@octokit/rest": "21.1.1",
|
|
76
|
-
"@
|
|
77
|
-
"@
|
|
78
|
-
"@socketregistry/
|
|
79
|
-
"@socketregistry/
|
|
80
|
-
"@socketregistry/is-
|
|
81
|
-
"@socketregistry/
|
|
76
|
+
"@pnpm/lockfile-file": "^9.1.3",
|
|
77
|
+
"@sentry/node": "9.5.0",
|
|
78
|
+
"@socketregistry/hyrious__bun.lockb": "1.0.14",
|
|
79
|
+
"@socketregistry/indent-string": "1.0.11",
|
|
80
|
+
"@socketregistry/is-interactive": "1.0.2",
|
|
81
|
+
"@socketregistry/is-unicode-supported": "1.0.2",
|
|
82
|
+
"@socketregistry/packageurl-js": "1.0.3",
|
|
82
83
|
"@socketsecurity/config": "2.1.3",
|
|
83
|
-
"@socketsecurity/registry": "1.0.
|
|
84
|
+
"@socketsecurity/registry": "1.0.124",
|
|
84
85
|
"@socketsecurity/sdk": "1.4.5",
|
|
85
86
|
"blessed": "0.1.81",
|
|
86
87
|
"blessed-contrib": "4.11.0",
|
|
@@ -121,6 +122,7 @@
|
|
|
121
122
|
"@cyclonedx/cdxgen": "^11.2.0",
|
|
122
123
|
"@eslint/compat": "^1.2.7",
|
|
123
124
|
"@eslint/js": "^9.21.0",
|
|
125
|
+
"@pnpm/lockfile.detect-dep-types": "^1001.0.4",
|
|
124
126
|
"@rollup/plugin-commonjs": "^28.0.2",
|
|
125
127
|
"@rollup/plugin-json": "^6.1.0",
|
|
126
128
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
@@ -187,7 +189,7 @@
|
|
|
187
189
|
"is-core-module": "npm:@socketregistry/is-core-module@^1",
|
|
188
190
|
"isarray": "npm:@socketregistry/isarray@^1",
|
|
189
191
|
"npm-package-arg": "$npm-package-arg",
|
|
190
|
-
"packageurl-js": "
|
|
192
|
+
"packageurl-js": "npm:@socketregistry/packageurl-js@^1",
|
|
191
193
|
"path-parse": "npm:@socketregistry/path-parse@^1",
|
|
192
194
|
"safe-buffer": "npm:@socketregistry/safe-buffer@^1",
|
|
193
195
|
"safer-buffer": "npm:@socketregistry/safer-buffer@^1",
|
|
@@ -203,7 +205,7 @@
|
|
|
203
205
|
"yaml": "$yaml"
|
|
204
206
|
},
|
|
205
207
|
"engines": {
|
|
206
|
-
"node": "^18.20.
|
|
208
|
+
"node": "^18.20.7 || ^20.18.3 || >=22.14.0"
|
|
207
209
|
},
|
|
208
210
|
"files": [
|
|
209
211
|
"bin/**",
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import indentString from '@socketregistry/indent-string/index.cjs';
|
|
2
|
-
declare class ColorOrMarkdown {
|
|
3
|
-
useMarkdown: boolean;
|
|
4
|
-
constructor(useMarkdown: boolean);
|
|
5
|
-
bold(text: string): string;
|
|
6
|
-
header(text: string, level?: number): string;
|
|
7
|
-
hyperlink(text: string, url: string | undefined, { fallback, fallbackToUrl }?: {
|
|
8
|
-
fallback?: boolean | undefined;
|
|
9
|
-
fallbackToUrl?: boolean | undefined;
|
|
10
|
-
}): string;
|
|
11
|
-
indent(...args: Parameters<typeof indentString>): ReturnType<typeof indentString>;
|
|
12
|
-
italic(text: string): string;
|
|
13
|
-
json(value: any): string;
|
|
14
|
-
list(items: string[]): string;
|
|
15
|
-
}
|
|
16
|
-
export { ColorOrMarkdown };
|