@socketsecurity/cli-with-sentry 1.1.154 → 1.1.156
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/CHANGELOG.md +19 -1
- package/README.md +28 -23
- package/dist/cli.js +4135 -3974
- package/dist/cli.js.map +1 -1
- package/dist/constants.js +4 -4
- package/dist/constants.js.map +1 -1
- package/dist/manifest-scripts/maven-extension/coana-maven-extension.jar +0 -0
- package/dist/shadow-npm-bin2.js +27 -2
- package/dist/shadow-npm-bin2.js.map +1 -1
- package/dist/tsconfig.dts.tsbuildinfo +1 -1
- package/dist/types/commands/ci/handle-ci.d.mts +7 -0
- package/dist/types/commands/ci/handle-ci.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest-dynamic-sbom-inference.d.mts.map +1 -1
- package/dist/types/commands/manifest/cmd-manifest-setup.d.mts.map +1 -1
- package/dist/types/commands/manifest/discover-manifest-roots.d.mts +2 -1
- package/dist/types/commands/manifest/discover-manifest-roots.d.mts.map +1 -1
- package/dist/types/commands/manifest/generate-recursive-manifests.d.mts +24 -6
- package/dist/types/commands/manifest/generate-recursive-manifests.d.mts.map +1 -1
- package/dist/types/commands/manifest/generate_auto_manifest.d.mts.map +1 -1
- package/dist/types/commands/manifest/handle-manifest-dynamic-sbom-inference.d.mts.map +1 -1
- package/dist/types/commands/manifest/run-manifest-facts.d.mts.map +1 -1
- package/dist/types/commands/manifest/scripts/sidecar.d.mts +47 -21
- package/dist/types/commands/manifest/scripts/sidecar.d.mts.map +1 -1
- package/dist/types/commands/manifest/setup-recursive-manifest-config.d.mts +8 -6
- package/dist/types/commands/manifest/setup-recursive-manifest-config.d.mts.map +1 -1
- package/dist/types/commands/scan/cmd-scan-reach.d.mts.map +1 -1
- package/dist/types/commands/scan/handle-create-new-scan.d.mts.map +1 -1
- package/dist/types/commands/scan/perform-reachability-analysis.d.mts.map +1 -1
- package/dist/types/commands/scan/reachability-flags.d.mts.map +1 -1
- package/dist/types/shadow/npm-base.d.mts +18 -0
- package/dist/types/shadow/npm-base.d.mts.map +1 -1
- package/dist/types/utils/fs.d.mts +4 -0
- package/dist/types/utils/fs.d.mts.map +1 -1
- package/dist/types/utils/git.d.mts +6 -0
- package/dist/types/utils/git.d.mts.map +1 -1
- package/dist/types/utils/github-errors.d.mts +2 -1
- package/dist/types/utils/github-errors.d.mts.map +1 -1
- package/dist/types/utils/glob.d.mts.map +1 -1
- package/dist/types/utils/npm-paths.d.mts +17 -0
- package/dist/types/utils/npm-paths.d.mts.map +1 -1
- package/dist/utils.js +348 -120
- package/dist/utils.js.map +1 -1
- package/package.json +16 -12
- package/logo-dark.png +0 -0
- package/logo-light.png +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socketsecurity/cli-with-sentry",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.156",
|
|
4
4
|
"description": "CLI for Socket.dev, includes Sentry error handling, otherwise identical to the regular `socket` package",
|
|
5
5
|
"contentPolicy": {
|
|
6
6
|
"class": "dual-use"
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@babel/preset-typescript": "7.27.1",
|
|
49
49
|
"@babel/runtime": "7.28.4",
|
|
50
50
|
"@biomejs/biome": "2.2.4",
|
|
51
|
-
"@coana-tech/cli": "15.10.
|
|
51
|
+
"@coana-tech/cli": "15.10.10",
|
|
52
52
|
"@cyclonedx/cdxgen": "12.1.2",
|
|
53
53
|
"@dotenvx/dotenvx": "1.49.0",
|
|
54
54
|
"@eslint/compat": "1.3.2",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"@types/blessed": "0.1.25",
|
|
81
81
|
"@types/cmd-shim": "5.0.2",
|
|
82
82
|
"@types/js-yaml": "4.0.9",
|
|
83
|
+
"@types/mdast": "4.0.4",
|
|
83
84
|
"@types/micromatch": "4.0.9",
|
|
84
85
|
"@types/mock-fs": "4.13.4",
|
|
85
86
|
"@types/node": "24.3.1",
|
|
@@ -115,7 +116,10 @@
|
|
|
115
116
|
"knip": "5.63.1",
|
|
116
117
|
"lint-staged": "16.1.6",
|
|
117
118
|
"magic-string": "0.30.19",
|
|
119
|
+
"mdast-util-from-markdown": "2.0.3",
|
|
120
|
+
"mdast-util-gfm": "3.1.0",
|
|
118
121
|
"meow": "13.2.0",
|
|
122
|
+
"micromark-extension-gfm": "3.0.0",
|
|
119
123
|
"micromatch": "4.0.8",
|
|
120
124
|
"mock-fs": "5.5.0",
|
|
121
125
|
"nock": "14.0.10",
|
|
@@ -123,6 +127,7 @@
|
|
|
123
127
|
"npm-run-all2": "8.0.4",
|
|
124
128
|
"open": "10.2.0",
|
|
125
129
|
"oxlint": "1.15.0",
|
|
130
|
+
"parse5": "8.0.1",
|
|
126
131
|
"pony-cause": "2.1.11",
|
|
127
132
|
"postject": "1.0.0-alpha.6",
|
|
128
133
|
"rollup": "4.50.1",
|
|
@@ -152,8 +157,6 @@
|
|
|
152
157
|
"shadow-bin/**",
|
|
153
158
|
"CHANGELOG.md",
|
|
154
159
|
"DISCLOSURE",
|
|
155
|
-
"logo-dark.png",
|
|
156
|
-
"logo-light.png",
|
|
157
160
|
"requirements.json",
|
|
158
161
|
"translations.json"
|
|
159
162
|
],
|
|
@@ -182,9 +185,11 @@
|
|
|
182
185
|
"build:maven-extension": "bash src/commands/manifest/scripts/maven-extension/build-jar.sh",
|
|
183
186
|
"build:sea": "node src/sea/build-sea.mts",
|
|
184
187
|
"build:sea:internal:bootstrap": "rollup -c .config/rollup.sea.config.mjs",
|
|
185
|
-
"check": "
|
|
188
|
+
"check": "node scripts/check.mts",
|
|
186
189
|
"check:lint": "dotenvx -q run -f .env.local -- eslint --report-unused-disable-directives .",
|
|
187
|
-
"check:tsc": "
|
|
190
|
+
"check:tsc": "run-s check:tsc:*",
|
|
191
|
+
"check:tsc:src": "tsgo",
|
|
192
|
+
"check:tsc:scripts": "tsgo --project tsconfig.scripts.json",
|
|
188
193
|
"check-ci": "pnpm check:lint",
|
|
189
194
|
"coverage": "run-s coverage:*",
|
|
190
195
|
"coverage:test": "run-s test:prepare test:unit:coverage",
|
|
@@ -195,10 +200,11 @@
|
|
|
195
200
|
"clean:dist:types": "del-cli 'dist/types'",
|
|
196
201
|
"clean:external": "del-cli 'external'",
|
|
197
202
|
"clean:node_modules": "del-cli '**/node_modules'",
|
|
198
|
-
"fix": "
|
|
203
|
+
"fix": "node scripts/lint.mts --fix",
|
|
199
204
|
"knip:dependencies": "knip --dependencies",
|
|
200
205
|
"knip:exports": "knip --include exports,duplicates",
|
|
201
|
-
"lint": "
|
|
206
|
+
"lint": "node scripts/lint.mts",
|
|
207
|
+
"lint:oxlint": "dotenvx -q run -f .env.local -- oxlint -c=.oxlintrc.json --ignore-path=.oxlintignore --tsconfig=tsconfig.json .",
|
|
202
208
|
"lint:dist:fix": "run-s -c lint:dist:fix:*",
|
|
203
209
|
"lint:dist:fix:oxlint": "dotenvx -q run -f .env.dist -- oxlint -c=.oxlintrc.json --ignore-path=.oxlintignore --tsconfig=tsconfig.json --silent --fix ./dist | dev-null",
|
|
204
210
|
"lint:dist:fix:biome": "dotenvx -q run -f .env.dist -- biome format --log-level=none --fix ./dist | dev-null",
|
|
@@ -216,7 +222,7 @@
|
|
|
216
222
|
"bs": "dotenvx -q run -f .env.local -- pnpm build:dist:src; pnpm exec socket --",
|
|
217
223
|
"s": "dotenvx -q run -f .env.local -- pnpm exec socket --",
|
|
218
224
|
"e2e-tests": "dotenvx -q run -f .env.test -- vitest run --config vitest.e2e.config.mts",
|
|
219
|
-
"test": "run-s
|
|
225
|
+
"test": "pnpm run check --all && run-s test:*",
|
|
220
226
|
"test:prepare": "dotenvx -q run -f .env.test -- pnpm build && del-cli 'test/**/node_modules'",
|
|
221
227
|
"test:unit": "dotenvx -q run -f .env.test -- vitest run",
|
|
222
228
|
"test:unit:update": "dotenvx -q run -f .env.test -- vitest run --update",
|
|
@@ -224,8 +230,6 @@
|
|
|
224
230
|
"test-ci": "run-s test:*",
|
|
225
231
|
"testu": "dotenvx -q run -f .env.testu -- run-s test:prepare; pnpm test:unit:update --",
|
|
226
232
|
"testuf": "dotenvx -q run -f .env.testu -- pnpm test:unit:update --",
|
|
227
|
-
"update": "
|
|
228
|
-
"update:deps": "taze",
|
|
229
|
-
"update:socket": "pnpm update '@socketsecurity/*' '@socketregistry/*' --latest"
|
|
233
|
+
"update": "node scripts/update.mts"
|
|
230
234
|
}
|
|
231
235
|
}
|
package/logo-dark.png
DELETED
|
Binary file
|
package/logo-light.png
DELETED
|
Binary file
|