@socketsecurity/cli 0.15.54 → 0.15.55
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/cli.js +537 -298
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +15 -3
- package/dist/constants.js.map +1 -1
- package/dist/types/commands/json/cmd-json.d.mts +10 -0
- package/dist/types/commands/json/cmd-json.d.mts.map +1 -0
- package/dist/types/commands/json/handle-cmd-json.d.mts +2 -0
- package/dist/types/commands/json/handle-cmd-json.d.mts.map +1 -0
- package/dist/types/commands/json/output-cmd-json.d.mts +2 -0
- package/dist/types/commands/json/output-cmd-json.d.mts.map +1 -0
- package/dist/types/commands/oops/cmd-oops.d.mts.map +1 -1
- package/dist/types/commands/package/output-purls-deep-score.d.mts +5 -0
- package/dist/types/commands/package/output-purls-deep-score.d.mts.map +1 -0
- package/dist/types/commands/package/output-purls-shallow-score.d.mts +25 -0
- package/dist/types/commands/package/output-purls-shallow-score.d.mts.map +1 -1
- package/dist/types/commands/scan/cmd-scan-reach.d.mts.map +1 -1
- package/dist/types/commands/scan/scan-reachability.d.mts.map +1 -1
- package/dist/types/constants.d.mts +3 -0
- package/dist/types/constants.d.mts.map +1 -1
- package/dist/types/utils/meow-with-subcommands.d.mts.map +1 -1
- package/dist/types/utils/tildify.d.mts +4 -0
- package/dist/types/utils/tildify.d.mts.map +1 -0
- package/dist/utils.js +63 -36
- package/dist/utils.js.map +1 -1
- package/dist/vendor.js +31637 -31637
- package/external/@coana-tech/cli/cli.mjs +216492 -0
- package/package.json +6 -6
- package/dist/types/commands/package/output-purl-score.d.mts +0 -4
- package/dist/types/commands/package/output-purl-score.d.mts.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socketsecurity/cli",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.55",
|
|
4
4
|
"description": "CLI for Socket.dev",
|
|
5
5
|
"homepage": "https://github.com/SocketDev/socket-cli",
|
|
6
6
|
"license": "MIT",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"@babel/preset-typescript": "7.27.1",
|
|
86
86
|
"@babel/runtime": "7.27.4",
|
|
87
87
|
"@biomejs/biome": "1.9.4",
|
|
88
|
-
"@coana-tech/cli": "14.9.
|
|
88
|
+
"@coana-tech/cli": "14.9.20",
|
|
89
89
|
"@cyclonedx/cdxgen": "11.3.2",
|
|
90
90
|
"@dotenvx/dotenvx": "1.44.1",
|
|
91
91
|
"@eslint/compat": "1.2.9",
|
|
@@ -125,8 +125,8 @@
|
|
|
125
125
|
"@types/which": "3.0.4",
|
|
126
126
|
"@types/yargs-parser": "21.0.3",
|
|
127
127
|
"@typescript-eslint/parser": "8.33.1",
|
|
128
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
129
|
-
"@vitest/coverage-v8": "3.2.
|
|
128
|
+
"@typescript/native-preview": "7.0.0-dev.20250605.1",
|
|
129
|
+
"@vitest/coverage-v8": "3.2.1",
|
|
130
130
|
"blessed": "0.1.81",
|
|
131
131
|
"blessed-contrib": "4.11.0",
|
|
132
132
|
"browserslist": "4.25.0",
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
"husky": "9.1.7",
|
|
147
147
|
"ignore": "7.0.5",
|
|
148
148
|
"js-yaml": "npm:@zkochan/js-yaml@0.0.7",
|
|
149
|
-
"knip": "5.
|
|
149
|
+
"knip": "5.60.1",
|
|
150
150
|
"lint-staged": "16.1.0",
|
|
151
151
|
"magic-string": "0.30.17",
|
|
152
152
|
"meow": "13.2.0",
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
"type-coverage": "2.29.7",
|
|
168
168
|
"typescript-eslint": "8.33.1",
|
|
169
169
|
"unplugin-purge-polyfills": "0.1.0",
|
|
170
|
-
"vitest": "3.2.
|
|
170
|
+
"vitest": "3.2.1",
|
|
171
171
|
"which": "5.0.0",
|
|
172
172
|
"yaml": "2.8.0",
|
|
173
173
|
"yargs-parser": "22.0.0",
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import type { PurlDataResponse } from './fetch-purl-deep-score.mts';
|
|
2
|
-
import type { CResult, OutputKind } from '../../types.mts';
|
|
3
|
-
export declare function outputPurlScore(purl: string, result: CResult<PurlDataResponse>, outputKind: OutputKind): Promise<void>;
|
|
4
|
-
//# sourceMappingURL=output-purl-score.d.mts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"output-purl-score.d.mts","sourceRoot":"","sources":["../../../../src/commands/package/output-purl-score.mts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAA;AACnE,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA;AAE1D,wBAAsB,eAAe,CACnC,IAAI,EAAE,MAAM,EACZ,MAAM,EAAE,OAAO,CAAC,gBAAgB,CAAC,EACjC,UAAU,EAAE,UAAU,iBAuMvB"}
|