@socketsecurity/cli 0.14.57 → 0.14.59
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 +2 -2
- package/dist/constants.js +15 -6
- package/dist/constants.js.map +1 -1
- package/dist/module-sync/artifact.d.ts +75 -0
- package/dist/module-sync/cli.js +1063 -802
- 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 +1063 -802
- package/dist/require/cli.js.map +1 -1
- package/package.json +11 -9
- 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",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.59",
|
|
4
4
|
"description": "CLI tool for Socket.dev",
|
|
5
5
|
"homepage": "http://github.com/SocketDev/socket-cli",
|
|
6
6
|
"license": "MIT",
|
|
@@ -73,13 +73,14 @@
|
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@apideck/better-ajv-errors": "0.3.6",
|
|
75
75
|
"@octokit/rest": "21.1.1",
|
|
76
|
-
"@
|
|
77
|
-
"@socketregistry/
|
|
78
|
-
"@socketregistry/
|
|
79
|
-
"@socketregistry/is-
|
|
80
|
-
"@socketregistry/
|
|
76
|
+
"@pnpm/lockfile-file": "^9.1.3",
|
|
77
|
+
"@socketregistry/hyrious__bun.lockb": "1.0.14",
|
|
78
|
+
"@socketregistry/indent-string": "1.0.11",
|
|
79
|
+
"@socketregistry/is-interactive": "1.0.2",
|
|
80
|
+
"@socketregistry/is-unicode-supported": "1.0.2",
|
|
81
|
+
"@socketregistry/packageurl-js": "1.0.3",
|
|
81
82
|
"@socketsecurity/config": "2.1.3",
|
|
82
|
-
"@socketsecurity/registry": "1.0.
|
|
83
|
+
"@socketsecurity/registry": "1.0.124",
|
|
83
84
|
"@socketsecurity/sdk": "1.4.5",
|
|
84
85
|
"blessed": "0.1.81",
|
|
85
86
|
"blessed-contrib": "4.11.0",
|
|
@@ -120,6 +121,7 @@
|
|
|
120
121
|
"@cyclonedx/cdxgen": "^11.2.0",
|
|
121
122
|
"@eslint/compat": "^1.2.7",
|
|
122
123
|
"@eslint/js": "^9.21.0",
|
|
124
|
+
"@pnpm/lockfile.detect-dep-types": "^1001.0.4",
|
|
123
125
|
"@rollup/plugin-commonjs": "^28.0.2",
|
|
124
126
|
"@rollup/plugin-json": "^6.1.0",
|
|
125
127
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
@@ -186,7 +188,7 @@
|
|
|
186
188
|
"is-core-module": "npm:@socketregistry/is-core-module@^1",
|
|
187
189
|
"isarray": "npm:@socketregistry/isarray@^1",
|
|
188
190
|
"npm-package-arg": "$npm-package-arg",
|
|
189
|
-
"packageurl-js": "
|
|
191
|
+
"packageurl-js": "npm:@socketregistry/packageurl-js@^1",
|
|
190
192
|
"path-parse": "npm:@socketregistry/path-parse@^1",
|
|
191
193
|
"safe-buffer": "npm:@socketregistry/safe-buffer@^1",
|
|
192
194
|
"safer-buffer": "npm:@socketregistry/safer-buffer@^1",
|
|
@@ -202,7 +204,7 @@
|
|
|
202
204
|
"yaml": "$yaml"
|
|
203
205
|
},
|
|
204
206
|
"engines": {
|
|
205
|
-
"node": "^18.20.
|
|
207
|
+
"node": "^18.20.7 || ^20.18.3 || >=22.14.0"
|
|
206
208
|
},
|
|
207
209
|
"files": [
|
|
208
210
|
"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 };
|