@socketsecurity/cli 0.14.12 → 0.14.14
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/README.md +4 -2
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +625 -433
- package/dist/npm-injection.js +9 -9
- package/dist/path-resolve.d.ts +3 -6
- package/dist/path-resolve.js +119 -70
- package/dist/vendor.js +184 -1368
- package/package.json +49 -27
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socketsecurity/cli",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.14",
|
|
4
4
|
"description": "CLI tool for Socket.dev",
|
|
5
|
-
"homepage": "http://github.com/SocketDev/socket-cli
|
|
5
|
+
"homepage": "http://github.com/SocketDev/socket-cli",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/SocketDev/socket-cli
|
|
9
|
+
"url": "git+https://github.com/SocketDev/socket-cli.git"
|
|
10
10
|
},
|
|
11
11
|
"author": {
|
|
12
12
|
"name": "Socket Inc",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"url": "https://socket.dev"
|
|
15
15
|
},
|
|
16
16
|
"bin": {
|
|
17
|
+
"cli": "dist/cli.js",
|
|
17
18
|
"socket": "dist/cli.js",
|
|
18
19
|
"socket-npm": "dist/npm-cli.js",
|
|
19
20
|
"socket-npx": "dist/npx-cli.js"
|
|
@@ -40,18 +41,18 @@
|
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
43
|
"@apideck/better-ajv-errors": "^0.3.6",
|
|
43
|
-
"@cyclonedx/cdxgen": "^10.10.
|
|
44
|
-
"@inquirer/prompts": "^7.0.
|
|
44
|
+
"@cyclonedx/cdxgen": "^10.10.7",
|
|
45
|
+
"@inquirer/prompts": "^7.0.1",
|
|
45
46
|
"@npmcli/package-json": "6.0.1",
|
|
46
47
|
"@npmcli/promise-spawn": "^8.0.2",
|
|
47
|
-
"@socketregistry/hyrious__bun.lockb": "1.0.
|
|
48
|
+
"@socketregistry/hyrious__bun.lockb": "1.0.4",
|
|
48
49
|
"@socketsecurity/config": "^2.1.3",
|
|
49
|
-
"@socketsecurity/registry": "^1.0.
|
|
50
|
+
"@socketsecurity/registry": "^1.0.12",
|
|
50
51
|
"@socketsecurity/sdk": "^1.3.0",
|
|
51
52
|
"ansi-align": "^3.0.1",
|
|
52
53
|
"blessed": "^0.1.81",
|
|
53
54
|
"blessed-contrib": "^4.11.0",
|
|
54
|
-
"browserslist": "4.24.
|
|
55
|
+
"browserslist": "4.24.2",
|
|
55
56
|
"chalk-table": "^1.0.2",
|
|
56
57
|
"cli-boxes": "^4.0.1",
|
|
57
58
|
"cli-spinners": "^3.2.0",
|
|
@@ -59,12 +60,13 @@
|
|
|
59
60
|
"dot-prop": "^9.0.0",
|
|
60
61
|
"eastasianwidth": "^0.3.0",
|
|
61
62
|
"emoji-regex": "^10.4.0",
|
|
62
|
-
"fast-glob": "^3.3.2",
|
|
63
63
|
"graceful-fs": "^4.2.11",
|
|
64
64
|
"has-flag": "^5.0.1",
|
|
65
65
|
"hpagent": "^1.2.0",
|
|
66
66
|
"ignore": "^6.0.2",
|
|
67
67
|
"ini": "5.0.0",
|
|
68
|
+
"micromatch": "^4.0.8",
|
|
69
|
+
"npm-package-arg": "^12.0.0",
|
|
68
70
|
"onetime": "^7.0.0",
|
|
69
71
|
"pacote": "^20.0.0",
|
|
70
72
|
"pony-cause": "^2.1.11",
|
|
@@ -75,32 +77,33 @@
|
|
|
75
77
|
"supports-color": "^9.4.0",
|
|
76
78
|
"supports-hyperlinks": "^3.1.0",
|
|
77
79
|
"synp": "^1.9.13",
|
|
80
|
+
"tinyglobby": "^0.2.10",
|
|
78
81
|
"which": "^5.0.0",
|
|
79
82
|
"write-file-atomic": "^6.0.0",
|
|
80
83
|
"yargs-parser": "^21.1.1"
|
|
81
84
|
},
|
|
82
85
|
"devDependencies": {
|
|
83
|
-
"@babel/core": "^7.
|
|
84
|
-
"@babel/plugin-proposal-export-default-from": "^7.25.
|
|
86
|
+
"@babel/core": "^7.26.0",
|
|
87
|
+
"@babel/plugin-proposal-export-default-from": "^7.25.9",
|
|
85
88
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
86
|
-
"@babel/plugin-transform-export-namespace-from": "^7.25.
|
|
87
|
-
"@babel/plugin-transform-modules-commonjs": "^7.25.
|
|
88
|
-
"@babel/plugin-transform-runtime": "^7.25.
|
|
89
|
-
"@babel/preset-env": "^7.
|
|
90
|
-
"@babel/preset-typescript": "^7.
|
|
91
|
-
"@babel/runtime": "^7.
|
|
92
|
-
"@eslint/compat": "^1.2.
|
|
89
|
+
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
|
|
90
|
+
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
|
|
91
|
+
"@babel/plugin-transform-runtime": "^7.25.9",
|
|
92
|
+
"@babel/preset-env": "^7.26.0",
|
|
93
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
94
|
+
"@babel/runtime": "^7.26.0",
|
|
95
|
+
"@eslint/compat": "^1.2.2",
|
|
93
96
|
"@eslint/js": "^9.13.0",
|
|
94
97
|
"@rollup/plugin-commonjs": "^28.0.1",
|
|
95
98
|
"@rollup/plugin-json": "^6.1.0",
|
|
96
99
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
97
100
|
"@rollup/plugin-replace": "^6.0.1",
|
|
98
|
-
"@rollup/pluginutils": "^5.1.
|
|
101
|
+
"@rollup/pluginutils": "^5.1.3",
|
|
99
102
|
"@types/blessed": "^0.1.25",
|
|
100
103
|
"@types/micromatch": "^4.0.9",
|
|
101
104
|
"@types/mocha": "^10.0.9",
|
|
102
105
|
"@types/mock-fs": "^4.13.4",
|
|
103
|
-
"@types/node": "^22.
|
|
106
|
+
"@types/node": "^22.8.1",
|
|
104
107
|
"@types/npmcli__arborist": "^5.6.11",
|
|
105
108
|
"@types/npmcli__package-json": "^4.0.4",
|
|
106
109
|
"@types/npmcli__promise-spawn": "^6.0.3",
|
|
@@ -108,8 +111,8 @@
|
|
|
108
111
|
"@types/update-notifier": "^6.0.8",
|
|
109
112
|
"@types/which": "^3.0.4",
|
|
110
113
|
"@types/yargs-parser": "^21.0.3",
|
|
111
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
112
|
-
"@typescript-eslint/parser": "^8.
|
|
114
|
+
"@typescript-eslint/eslint-plugin": "^8.12.0",
|
|
115
|
+
"@typescript-eslint/parser": "^8.12.0",
|
|
113
116
|
"c8": "^10.1.2",
|
|
114
117
|
"chalk": "^5.3.0",
|
|
115
118
|
"eslint": "^9.13.0",
|
|
@@ -120,25 +123,25 @@
|
|
|
120
123
|
"husky": "^9.1.6",
|
|
121
124
|
"is-interactive": "^2.0.0",
|
|
122
125
|
"is-unicode-supported": "^2.1.0",
|
|
123
|
-
"knip": "^5.
|
|
126
|
+
"knip": "^5.34.2",
|
|
124
127
|
"magic-string": "^0.30.12",
|
|
125
128
|
"meow": "^13.2.0",
|
|
126
129
|
"mock-fs": "^5.4.0",
|
|
127
130
|
"nock": "^13.5.5",
|
|
128
131
|
"normalize-package-data": "^7.0.0",
|
|
129
|
-
"npm-run-all2": "^
|
|
132
|
+
"npm-run-all2": "^7.0.1",
|
|
130
133
|
"open": "^10.1.0",
|
|
131
134
|
"ora": "^8.1.0",
|
|
132
|
-
"oxlint": "0.
|
|
135
|
+
"oxlint": "0.10.3",
|
|
133
136
|
"prettier": "3.3.3",
|
|
134
137
|
"read-package-up": "^11.0.0",
|
|
135
|
-
"rollup": "4.24.
|
|
138
|
+
"rollup": "4.24.2",
|
|
136
139
|
"rollup-plugin-ts": "^3.4.5",
|
|
137
140
|
"tap": "^21.0.1",
|
|
138
141
|
"terminal-link": "^3.0.0",
|
|
139
142
|
"type-coverage": "^2.29.7",
|
|
140
143
|
"typescript": "5.4.5",
|
|
141
|
-
"typescript-eslint": "^8.
|
|
144
|
+
"typescript-eslint": "^8.12.0",
|
|
142
145
|
"unplugin-purge-polyfills": "^0.0.7",
|
|
143
146
|
"update-notifier": "^7.3.1",
|
|
144
147
|
"validate-npm-package-name": "^6.0.0"
|
|
@@ -165,6 +168,25 @@
|
|
|
165
168
|
"set-function-length": "npm:@socketregistry/set-function-length@^1",
|
|
166
169
|
"side-channel": "npm:@socketregistry/side-channel@^1"
|
|
167
170
|
},
|
|
171
|
+
"resolutions": {
|
|
172
|
+
"aggregate-error": "npm:@socketregistry/aggregate-error@^1",
|
|
173
|
+
"es-define-property": "npm:@socketregistry/es-define-property@^1",
|
|
174
|
+
"function-bind": "npm:@socketregistry/function-bind@^1",
|
|
175
|
+
"globalthis": "npm:@socketregistry/globalthis@^1",
|
|
176
|
+
"gopd": "npm:@socketregistry/gopd@^1",
|
|
177
|
+
"has-property-descriptors": "npm:@socketregistry/has-property-descriptors@^1",
|
|
178
|
+
"has-proto": "npm:@socketregistry/has-proto@^1",
|
|
179
|
+
"has-symbols": "npm:@socketregistry/has-symbols@^1",
|
|
180
|
+
"hasown": "npm:@socketregistry/hasown@^1",
|
|
181
|
+
"indent-string": "npm:@socketregistry/indent-string@^1",
|
|
182
|
+
"is-core-module": "npm:@socketregistry/is-core-module@^1",
|
|
183
|
+
"isarray": "npm:@socketregistry/isarray@^1",
|
|
184
|
+
"path-parse": "npm:@socketregistry/path-parse@^1",
|
|
185
|
+
"safe-buffer": "npm:@socketregistry/safe-buffer@^1",
|
|
186
|
+
"safer-buffer": "npm:@socketregistry/safer-buffer@^1",
|
|
187
|
+
"set-function-length": "npm:@socketregistry/set-function-length@^1",
|
|
188
|
+
"side-channel": "npm:@socketregistry/side-channel@^1"
|
|
189
|
+
},
|
|
168
190
|
"engines": {
|
|
169
191
|
"node": "^20.9.0 || >=22.0.0"
|
|
170
192
|
},
|