@socketsecurity/cli-with-sentry 0.14.148 → 0.14.150
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 +698 -220
- package/dist/cli.js.map +1 -1
- package/dist/instrument-with-sentry.js +2 -2
- package/dist/instrument-with-sentry.js.map +1 -1
- package/dist/shadow-npm-inject.js +18 -8
- package/dist/shadow-npm-inject.js.map +1 -1
- package/dist/vendor.js +18154 -18160
- package/dist/vendor.js.map +1 -1
- package/package.json +22 -22
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.150",
|
|
4
4
|
"description": "CLI tool for Socket.dev, includes Sentry error handling, otherwise identical to the regular `socket` package",
|
|
5
5
|
"homepage": "https://github.com/SocketDev/socket-cli",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,17 +29,16 @@
|
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "run-p -c --aggregate-output build:*",
|
|
32
|
-
"build:dist": "
|
|
32
|
+
"build:dist": "run-s build:dist:no_fix lint:dist:fix lint:external:fix",
|
|
33
|
+
"build:dist:no_fix": "run-p -c clean:dist clean:external && rollup -c .config/rollup.dist.config.mjs",
|
|
33
34
|
"build:types": "tsc --project .config/tsconfig.dts.json",
|
|
34
35
|
"check": "run-p -c --aggregate-output check:*",
|
|
35
36
|
"check:lint": "eslint --report-unused-disable-directives .",
|
|
36
|
-
"check:lint:dist": "cross-env LINT_DIST=1 eslint --report-unused-disable-directives --quiet ./dist",
|
|
37
|
-
"check:lint:external": "cross-env LINT_EXTERNAL=1 eslint --report-unused-disable-directives --quiet ./external",
|
|
38
37
|
"check:tsc": "tsc",
|
|
39
38
|
"coverage": "run-s coverage:*",
|
|
40
39
|
"coverage:test": "run-s test:prepare test:unit:coverage",
|
|
41
40
|
"coverage:type": "type-coverage --detail",
|
|
42
|
-
"clean": "run-p --aggregate-output clean:*",
|
|
41
|
+
"clean": "run-p -c --aggregate-output clean:*",
|
|
43
42
|
"clean:dist": "del-cli 'dist'",
|
|
44
43
|
"clean:external": "del-cli 'external'",
|
|
45
44
|
"clean:node_modules": "del-cli '**/node_modules'",
|
|
@@ -47,21 +46,22 @@
|
|
|
47
46
|
"knip:dependencies": "knip --dependencies",
|
|
48
47
|
"knip:exports": "knip --include exports,duplicates",
|
|
49
48
|
"lint": "oxlint -c=./.oxlintrc.json --ignore-path=./.oxlintignore --tsconfig=./tsconfig.json .",
|
|
50
|
-
"lint:dist": "
|
|
51
|
-
"lint:dist:fix": "cross-env LINT_DIST=1
|
|
52
|
-
"lint:dist:fix:
|
|
53
|
-
"lint:dist:fix:
|
|
54
|
-
"lint:external": "
|
|
55
|
-
"lint:external:fix": "cross-env LINT_EXTERNAL=1
|
|
56
|
-
"lint:external:fix:
|
|
57
|
-
"lint:external:fix:
|
|
58
|
-
"lint:fix": "
|
|
59
|
-
"lint:fix:
|
|
60
|
-
"lint:fix:
|
|
49
|
+
"lint:dist:fix": "run-s lint:dist:fix:*",
|
|
50
|
+
"lint:dist:fix:oxlint": "cross-env LINT_DIST=1 oxlint -c=./.oxlintrc.json --ignore-path=./.oxlintignore --tsconfig=./tsconfig.json --silent --fix ./dist | dev-null",
|
|
51
|
+
"lint:dist:fix:biome": "cross-env LINT_DIST=1 biome format --log-level=none --fix ./dist | dev-null",
|
|
52
|
+
"lint:dist:fix:eslint": "cross-env LINT_DIST=1 eslint --report-unused-disable-directives --quiet --fix ./dist | dev-null",
|
|
53
|
+
"lint:external:fix": "run-s lint:external:fix:*",
|
|
54
|
+
"lint:external:fix:oxlint": "cross-env LINT_EXTERNAL=1 oxlint -c=./.oxlintrc.json --ignore-path=./.oxlintignore --tsconfig=./tsconfig.json --silent --fix ./external | dev-null",
|
|
55
|
+
"lint:external:fix:biome": "cross-env LINT_EXTERNAL=1 biome format --log-level=none --fix ./external | dev-null",
|
|
56
|
+
"lint:external:fix:eslint": "cross-env LINT_EXTERNAL=1 eslint --report-unused-disable-directives --quiet --fix ./external | dev-null",
|
|
57
|
+
"lint:fix": "run-s lint:fix:*",
|
|
58
|
+
"lint:fix:oxlint": "oxlint -c=./.oxlintrc.json --ignore-path=./.oxlintignore --tsconfig=./tsconfig.json --quiet --fix .",
|
|
59
|
+
"lint:fix:biome": "biome format --log-level=none --fix .",
|
|
60
|
+
"lint:fix:eslint": "eslint --report-unused-disable-directives --fix .",
|
|
61
61
|
"lint-staged": "lint-staged",
|
|
62
62
|
"precommit": "lint-staged",
|
|
63
63
|
"prepare": "husky && custompatch",
|
|
64
|
-
"bs": "npm run build:dist; npm exec socket --",
|
|
64
|
+
"bs": "npm run build:dist:no_fix; npm exec socket --",
|
|
65
65
|
"s": "npm exec socket --",
|
|
66
66
|
"test": "run-s check test:*",
|
|
67
67
|
"test:prepare": "cross-env VITEST=1 npm run build && del-cli 'test/**/node_modules'",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"@babel/preset-typescript": "7.27.0",
|
|
84
84
|
"@babel/runtime": "7.27.0",
|
|
85
85
|
"@biomejs/biome": "1.9.4",
|
|
86
|
-
"@cyclonedx/cdxgen": "11.2.
|
|
86
|
+
"@cyclonedx/cdxgen": "11.2.6",
|
|
87
87
|
"@eslint/compat": "1.2.8",
|
|
88
88
|
"@eslint/js": "9.25.1",
|
|
89
89
|
"@octokit/graphql": "8.2.2",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"@socketregistry/packageurl-js": "1.0.6",
|
|
108
108
|
"@socketsecurity/config": "2.1.3",
|
|
109
109
|
"@socketsecurity/registry": "1.0.154",
|
|
110
|
-
"@socketsecurity/sdk": "1.4.
|
|
110
|
+
"@socketsecurity/sdk": "1.4.29",
|
|
111
111
|
"@types/blessed": "0.1.25",
|
|
112
112
|
"@types/cmd-shim": "5.0.2",
|
|
113
113
|
"@types/common-tags": "1.8.4",
|
|
@@ -212,8 +212,8 @@
|
|
|
212
212
|
],
|
|
213
213
|
"lint-staged": {
|
|
214
214
|
"*.{cjs,cts,js,json,md,mjs,mts,ts}": [
|
|
215
|
-
"npm run lint
|
|
216
|
-
"npm run lint:fix:
|
|
215
|
+
"npm run lint:fix:oxlint",
|
|
216
|
+
"npm run lint:fix:biome -- --no-errors-on-unmatched --files-ignore-unknown=true --colors=off"
|
|
217
217
|
]
|
|
218
218
|
},
|
|
219
219
|
"typeCoverage": {
|
|
@@ -228,6 +228,6 @@
|
|
|
228
228
|
"strict": true
|
|
229
229
|
},
|
|
230
230
|
"dependencies": {
|
|
231
|
-
"@sentry/node": "9.
|
|
231
|
+
"@sentry/node": "9.14.0"
|
|
232
232
|
}
|
|
233
233
|
}
|