@cyclonedx/cdxgen 12.1.2 → 12.1.4
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 +11 -9
- package/bin/cdxgen.js +1 -1
- package/lib/cli/index.js +9 -5
- package/lib/evinser/evinser.js +2 -8
- package/lib/helpers/display.js +1 -1
- package/lib/helpers/envcontext.js +10 -2
- package/lib/helpers/utils.js +462 -86
- package/lib/helpers/utils.poku.js +179 -2
- package/lib/helpers/validator.js +8 -5
- package/lib/managers/docker.getConnection.poku.js +61 -0
- package/lib/managers/docker.js +36 -23
- package/lib/parsers/iri.js +1 -2
- package/lib/server/server.js +164 -34
- package/lib/server/server.poku.js +232 -10
- package/lib/stages/postgen/annotator.js +281 -3
- package/lib/stages/postgen/postgen.js +4 -7
- package/lib/third-party/arborist/lib/diff.js +1 -1
- package/lib/third-party/arborist/lib/node.js +1 -1
- package/lib/third-party/arborist/lib/yarn-lock.js +1 -1
- package/package.json +22 -328
- package/types/bin/dependencies.d.ts.map +1 -1
- package/types/lib/cli/index.d.ts +39 -39
- package/types/lib/cli/index.d.ts.map +1 -1
- package/types/lib/evinser/evinser.d.ts +19 -19
- package/types/lib/evinser/evinser.d.ts.map +1 -1
- package/types/lib/evinser/swiftsem.d.ts +14 -14
- package/types/lib/evinser/swiftsem.d.ts.map +1 -1
- package/types/lib/helpers/cbomutils.d.ts +1 -1
- package/types/lib/helpers/cbomutils.d.ts.map +1 -1
- package/types/lib/helpers/db.d.ts +2 -2
- package/types/lib/helpers/db.d.ts.map +1 -1
- package/types/lib/helpers/display.d.ts +2 -2
- package/types/lib/helpers/display.d.ts.map +1 -1
- package/types/lib/helpers/envcontext.d.ts +14 -14
- package/types/lib/helpers/envcontext.d.ts.map +1 -1
- package/types/lib/helpers/logger.d.ts +1 -1
- package/types/lib/helpers/logger.d.ts.map +1 -1
- package/types/lib/helpers/protobom.d.ts +4 -2
- package/types/lib/helpers/protobom.d.ts.map +1 -1
- package/types/lib/helpers/utils.d.ts +103 -88
- package/types/lib/helpers/utils.d.ts.map +1 -1
- package/types/lib/helpers/validator.d.ts.map +1 -1
- package/types/lib/managers/binary.d.ts +2 -2
- package/types/lib/managers/binary.d.ts.map +1 -1
- package/types/lib/managers/docker.d.ts +2 -2
- package/types/lib/managers/docker.d.ts.map +1 -1
- package/types/lib/managers/oci.d.ts +1 -1
- package/types/lib/managers/oci.d.ts.map +1 -1
- package/types/lib/managers/piptree.d.ts +1 -1
- package/types/lib/managers/piptree.d.ts.map +1 -1
- package/types/lib/parsers/iri.d.ts +6 -6
- package/types/lib/parsers/iri.d.ts.map +1 -1
- package/types/lib/server/server.d.ts +14 -0
- package/types/lib/server/server.d.ts.map +1 -1
- package/types/lib/stages/postgen/annotator.d.ts +3 -3
- package/types/lib/stages/postgen/annotator.d.ts.map +1 -1
- package/types/lib/stages/postgen/postgen.d.ts +5 -5
- package/types/lib/stages/postgen/postgen.d.ts.map +1 -1
- package/types/lib/stages/pregen/pregen.d.ts +6 -6
- package/types/lib/stages/pregen/pregen.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/arborist/index.d.ts +4 -3
- package/types/lib/third-party/arborist/lib/arborist/index.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/can-place-dep.d.ts +5 -5
- package/types/lib/third-party/arborist/lib/can-place-dep.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/case-insensitive-map.d.ts +4 -4
- package/types/lib/third-party/arborist/lib/case-insensitive-map.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/diff.d.ts +3 -3
- package/types/lib/third-party/arborist/lib/diff.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/edge.d.ts +2 -2
- package/types/lib/third-party/arborist/lib/edge.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/gather-dep-set.d.ts +1 -1
- package/types/lib/third-party/arborist/lib/gather-dep-set.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/inventory.d.ts +3 -2
- package/types/lib/third-party/arborist/lib/inventory.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/link.d.ts +10 -7
- package/types/lib/third-party/arborist/lib/link.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/node.d.ts +8 -8
- package/types/lib/third-party/arborist/lib/node.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/optional-set.d.ts +1 -1
- package/types/lib/third-party/arborist/lib/optional-set.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/override-set.d.ts +3 -3
- package/types/lib/third-party/arborist/lib/override-set.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/peer-entry-sets.d.ts +1 -1
- package/types/lib/third-party/arborist/lib/peer-entry-sets.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/place-dep.d.ts +3 -3
- package/types/lib/third-party/arborist/lib/place-dep.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/shrinkwrap.d.ts +7 -7
- package/types/lib/third-party/arborist/lib/shrinkwrap.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/version-from-tgz.d.ts +1 -1
- package/types/lib/third-party/arborist/lib/version-from-tgz.d.ts.map +1 -1
- package/types/lib/third-party/arborist/lib/yarn-lock.d.ts +4 -3
- package/types/lib/third-party/arborist/lib/yarn-lock.d.ts.map +1 -1
- package/bin/dependencies.js +0 -131
- package/bin/licenses.js +0 -78
- package/lib/helpers/dependencies.poku.js +0 -11
- package/lib/helpers/licenses.poku.js +0 -11
- package/types/lib/third-party/arborist/lib/arborist/load-actual.d.ts +0 -34
- package/types/lib/third-party/arborist/lib/arborist/load-actual.d.ts.map +0 -1
- package/types/lib/third-party/arborist/lib/arborist/load-virtual.d.ts +0 -24
- package/types/lib/third-party/arborist/lib/arborist/load-virtual.d.ts.map +0 -1
- package/types/lib/third-party/arborist/lib/tracker.d.ts +0 -13
- package/types/lib/third-party/arborist/lib/tracker.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyclonedx/cdxgen",
|
|
3
|
-
"version": "12.1.
|
|
3
|
+
"version": "12.1.4",
|
|
4
4
|
"description": "Creates CycloneDX Software Bill of Materials (SBOM) from source or container image",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sbom",
|
|
@@ -98,312 +98,8 @@
|
|
|
98
98
|
"types/",
|
|
99
99
|
"index.cjs"
|
|
100
100
|
],
|
|
101
|
-
"overrides": {
|
|
102
|
-
"@appthreat/atom": "2.5.2",
|
|
103
|
-
"@appthreat/atom-common": "1.1.0",
|
|
104
|
-
"@appthreat/atom-parsetools": "1.1.3",
|
|
105
|
-
"@appthreat/cdx-proto": "1.2.1",
|
|
106
|
-
"@appthreat/sqlite3": "7.0.3",
|
|
107
|
-
"@babel/code-frame": "7.29.0",
|
|
108
|
-
"@babel/generator": "7.29.1",
|
|
109
|
-
"@babel/helper-globals": "7.28.0",
|
|
110
|
-
"@babel/helper-string-parser": "7.27.1",
|
|
111
|
-
"@babel/helper-validator-identifier": "7.28.5",
|
|
112
|
-
"@babel/parser": "7.29.0",
|
|
113
|
-
"@babel/template": "7.28.6",
|
|
114
|
-
"@babel/traverse": "7.29.0",
|
|
115
|
-
"@babel/types": "7.29.0",
|
|
116
|
-
"@biomejs/biome": "2.4.5",
|
|
117
|
-
"@biomejs/cli-darwin-arm64": "2.4.5",
|
|
118
|
-
"@biomejs/cli-darwin-x64": "2.4.5",
|
|
119
|
-
"@biomejs/cli-linux-arm64": "2.4.5",
|
|
120
|
-
"@biomejs/cli-linux-arm64-musl": "2.4.5",
|
|
121
|
-
"@biomejs/cli-linux-x64": "2.4.5",
|
|
122
|
-
"@biomejs/cli-linux-x64-musl": "2.4.5",
|
|
123
|
-
"@biomejs/cli-win32-arm64": "2.4.5",
|
|
124
|
-
"@biomejs/cli-win32-x64": "2.4.5",
|
|
125
|
-
"@bufbuild/protobuf": "2.11.0",
|
|
126
|
-
"@cdxgen/cdxgen-plugins-bin": "2.0.2",
|
|
127
|
-
"@cdxgen/cdxgen-plugins-bin-darwin-amd64": "2.0.2",
|
|
128
|
-
"@cdxgen/cdxgen-plugins-bin-darwin-arm64": "2.0.2",
|
|
129
|
-
"@cdxgen/cdxgen-plugins-bin-linux-amd64": "2.0.2",
|
|
130
|
-
"@cdxgen/cdxgen-plugins-bin-linux-arm": "2.0.2",
|
|
131
|
-
"@cdxgen/cdxgen-plugins-bin-linux-arm64": "2.0.2",
|
|
132
|
-
"@cdxgen/cdxgen-plugins-bin-linux-ppc64": "2.0.2",
|
|
133
|
-
"@cdxgen/cdxgen-plugins-bin-linuxmusl-amd64": "2.0.2",
|
|
134
|
-
"@cdxgen/cdxgen-plugins-bin-linuxmusl-arm64": "2.0.2",
|
|
135
|
-
"@cdxgen/cdxgen-plugins-bin-windows-amd64": "2.0.2",
|
|
136
|
-
"@cdxgen/cdxgen-plugins-bin-windows-arm64": "2.0.2",
|
|
137
|
-
"@gar/promise-retry": "1.0.2",
|
|
138
|
-
"@iarna/toml": "2.2.5",
|
|
139
|
-
"@isaacs/fs-minipass": "4.0.1",
|
|
140
|
-
"@isaacs/string-locale-compare": "1.1.0",
|
|
141
|
-
"@jridgewell/gen-mapping": "0.3.13",
|
|
142
|
-
"@jridgewell/resolve-uri": "3.1.2",
|
|
143
|
-
"@jridgewell/sourcemap-codec": "1.5.5",
|
|
144
|
-
"@jridgewell/trace-mapping": "0.3.31",
|
|
145
|
-
"@keyv/serialize": "1.1.1",
|
|
146
|
-
"@kwsites/file-exists": "1.1.1",
|
|
147
|
-
"@npmcli/agent": "4.0.0",
|
|
148
|
-
"@npmcli/fs": "5.0.0",
|
|
149
|
-
"@npmcli/git": "7.0.1",
|
|
150
|
-
"@npmcli/map-workspaces": "5.0.3",
|
|
151
|
-
"@npmcli/name-from-folder": "4.0.0",
|
|
152
|
-
"@npmcli/package-json": "7.0.5",
|
|
153
|
-
"@npmcli/promise-spawn": "9.0.1",
|
|
154
|
-
"@sec-ant/readable-stream": "0.6.0",
|
|
155
|
-
"@sindresorhus/is": "7.2.0",
|
|
156
|
-
"@sinonjs/commons": "3.0.1",
|
|
157
|
-
"@sinonjs/fake-timers": "15.1.1",
|
|
158
|
-
"@sinonjs/samsam": "9.0.2",
|
|
159
|
-
"@types/http-cache-semantics": "4.2.0",
|
|
160
|
-
"abbrev": "4.0.0",
|
|
161
|
-
"agent-base": "7.1.4",
|
|
162
|
-
"ajv": "8.18.0",
|
|
163
|
-
"ajv-formats": "3.0.1",
|
|
164
|
-
"ansi-regex": "6.2.2",
|
|
165
|
-
"ansi-styles": "6.2.3",
|
|
166
|
-
"b4a": "1.8.0",
|
|
167
|
-
"balanced-match": "4.0.4",
|
|
168
|
-
"bare-events": "2.8.2",
|
|
169
|
-
"bare-fs": "4.5.5",
|
|
170
|
-
"bare-os": "3.6.2",
|
|
171
|
-
"bare-path": "3.0.0",
|
|
172
|
-
"bare-stream": "2.8.0",
|
|
173
|
-
"bare-url": "2.3.2",
|
|
174
|
-
"bin-links": "6.0.0",
|
|
175
|
-
"body-parser": "2.2.2",
|
|
176
|
-
"boolbase": "1.0.0",
|
|
177
|
-
"brace-expansion": "5.0.4",
|
|
178
|
-
"buffer-equal-constant-time": "1.0.1",
|
|
179
|
-
"byte-counter": "0.1.0",
|
|
180
|
-
"bytes": "3.1.2",
|
|
181
|
-
"cacache": "20.0.3",
|
|
182
|
-
"cacheable-lookup": "7.0.0",
|
|
183
|
-
"cacheable-request": "13.0.18",
|
|
184
|
-
"call-bind-apply-helpers": "1.0.2",
|
|
185
|
-
"call-bound": "1.0.4",
|
|
186
|
-
"cheerio": "1.2.0",
|
|
187
|
-
"cheerio-select": "2.1.0",
|
|
188
|
-
"chownr": "3.0.0",
|
|
189
|
-
"cliui": "9.0.1",
|
|
190
|
-
"cmd-shim": "8.0.0",
|
|
191
|
-
"common-ancestor-path": "1.0.1",
|
|
192
|
-
"compressible": "2.0.18",
|
|
193
|
-
"compression": "1.8.1",
|
|
194
|
-
"connect": "3.7.0",
|
|
195
|
-
"content-type": "1.0.5",
|
|
196
|
-
"css-select": "6.0.0",
|
|
197
|
-
"css-what": "7.0.0",
|
|
198
|
-
"debug": "4.4.3",
|
|
199
|
-
"decompress-response": "10.0.0",
|
|
200
|
-
"deep-extend": "0.6.0",
|
|
201
|
-
"depd": "2.0.0",
|
|
202
|
-
"detect-libc": "2.1.2",
|
|
203
|
-
"diff": "8.0.3",
|
|
204
|
-
"dom-serializer": "2.0.0",
|
|
205
|
-
"domelementtype": "2.3.0",
|
|
206
|
-
"domhandler": "5.0.3",
|
|
207
|
-
"domutils": "3.2.2",
|
|
208
|
-
"dunder-proto": "1.0.1",
|
|
209
|
-
"ecdsa-sig-formatter": "1.0.11",
|
|
210
|
-
"edn-data": "1.1.2",
|
|
211
|
-
"ee-first": "1.1.1",
|
|
212
|
-
"encodeurl": "2.0.0",
|
|
213
|
-
"encoding-sniffer": "0.2.1",
|
|
214
|
-
"end-of-stream": "1.4.5",
|
|
215
|
-
"entities": "7.0.1",
|
|
216
|
-
"env-paths": "3.0.0",
|
|
217
|
-
"err-code": "3.0.1",
|
|
218
|
-
"es-define-property": "1.0.1",
|
|
219
|
-
"es-errors": "1.3.0",
|
|
220
|
-
"es-object-atoms": "1.1.1",
|
|
221
|
-
"escalade": "3.2.0",
|
|
222
|
-
"escape-html": "1.0.3",
|
|
223
|
-
"esmock": "2.7.3",
|
|
224
|
-
"events-universal": "1.0.1",
|
|
225
|
-
"expand-template": "2.0.3",
|
|
226
|
-
"exponential-backoff": "3.1.3",
|
|
227
|
-
"fast-deep-equal": "3.1.3",
|
|
228
|
-
"fast-fifo": "1.3.2",
|
|
229
|
-
"fast-uri": "3.1.0",
|
|
230
|
-
"fdir": "6.5.0",
|
|
231
|
-
"finalhandler": "2.1.1",
|
|
232
|
-
"form-data-encoder": "4.1.0",
|
|
233
|
-
"fs-minipass": "3.0.3",
|
|
234
|
-
"function-bind": "1.1.2",
|
|
235
|
-
"get-caller-file": "2.0.5",
|
|
236
|
-
"get-east-asian-width": "1.5.0",
|
|
237
|
-
"get-intrinsic": "1.3.0",
|
|
238
|
-
"get-proto": "1.0.1",
|
|
239
|
-
"get-stream": "9.0.1",
|
|
240
|
-
"github-from-package": "0.0.0",
|
|
241
|
-
"glob": "13.0.6",
|
|
242
|
-
"gopd": "1.2.0",
|
|
243
|
-
"got": "14.6.6",
|
|
244
|
-
"graceful-fs": "4.2.11",
|
|
245
|
-
"has-symbols": "1.1.0",
|
|
246
|
-
"hasown": "2.0.2",
|
|
247
|
-
"hosted-git-info": "9.0.2",
|
|
248
|
-
"htmlparser2": "10.1.0",
|
|
249
|
-
"http-cache-semantics": "4.2.0",
|
|
250
|
-
"http-errors": "2.0.1",
|
|
251
|
-
"http-proxy-agent": "7.0.2",
|
|
252
|
-
"http2-wrapper": "2.2.1",
|
|
253
|
-
"https-proxy-agent": "7.0.6",
|
|
254
|
-
"iconv-lite": "0.7.2",
|
|
255
|
-
"imurmurhash": "0.1.4",
|
|
256
|
-
"inherits": "2.0.4",
|
|
257
|
-
"ini": "6.0.0",
|
|
258
|
-
"ip-address": "10.1.0",
|
|
259
|
-
"is-fullwidth-code-point": "5.1.0",
|
|
260
|
-
"is-stream": "4.0.1",
|
|
261
|
-
"isexe": "4.0.0",
|
|
262
|
-
"js-tokens": "10.0.0",
|
|
263
|
-
"jsesc": "3.1.0",
|
|
264
|
-
"json-parse-even-better-errors": "5.0.0",
|
|
265
|
-
"json-schema-traverse": "1.0.0",
|
|
266
|
-
"json-stringify-nice": "1.1.4",
|
|
267
|
-
"jsonata": "2.1.0",
|
|
268
|
-
"just-diff": "6.0.2",
|
|
269
|
-
"just-diff-apply": "5.5.0",
|
|
270
|
-
"jwa": "2.0.1",
|
|
271
|
-
"jws": "4.0.1",
|
|
272
|
-
"keyv": "5.6.0",
|
|
273
|
-
"lodash.truncate": "4.4.2",
|
|
274
|
-
"lowercase-keys": "4.0.1",
|
|
275
|
-
"lru-cache": "11.2.5",
|
|
276
|
-
"make-fetch-happen": "15.0.4",
|
|
277
|
-
"math-intrinsics": "1.1.0",
|
|
278
|
-
"media-typer": "1.1.0",
|
|
279
|
-
"mime-db": "1.54.0",
|
|
280
|
-
"mime-types": "3.0.2",
|
|
281
|
-
"mimic-response": "4.0.0",
|
|
282
|
-
"minimatch": "10.2.4",
|
|
283
|
-
"minimist": "1.2.8",
|
|
284
|
-
"minipass": "7.1.3",
|
|
285
|
-
"minipass-collect": "2.0.1",
|
|
286
|
-
"minipass-fetch": "5.0.2",
|
|
287
|
-
"minipass-flush": "1.0.5",
|
|
288
|
-
"minipass-pipeline": "1.2.4",
|
|
289
|
-
"minipass-sized": "2.0.0",
|
|
290
|
-
"minizlib": "3.1.0",
|
|
291
|
-
"mkdirp": "3.0.1",
|
|
292
|
-
"mkdirp-classic": "0.5.3",
|
|
293
|
-
"ms": "2.1.3",
|
|
294
|
-
"napi-build-utils": "2.0.0",
|
|
295
|
-
"negotiator": "1.0.0",
|
|
296
|
-
"node-abi": "3.87.0",
|
|
297
|
-
"node-addon-api": "8.6.0",
|
|
298
|
-
"node-gyp": "12.2.0",
|
|
299
|
-
"node-stream-zip": "1.15.0",
|
|
300
|
-
"nopt": "9.0.0",
|
|
301
|
-
"normalize-url": "9.0.0",
|
|
302
|
-
"npm-install-checks": "8.0.0",
|
|
303
|
-
"npm-normalize-package-bin": "5.0.0",
|
|
304
|
-
"npm-package-arg": "13.0.2",
|
|
305
|
-
"npm-pick-manifest": "11.0.3",
|
|
306
|
-
"nth-check": "2.1.1",
|
|
307
|
-
"object-inspect": "1.13.4",
|
|
308
|
-
"on-finished": "2.4.1",
|
|
309
|
-
"on-headers": "1.1.0",
|
|
310
|
-
"once": "1.4.0",
|
|
311
|
-
"p-cancelable": "4.0.1",
|
|
312
|
-
"p-map": "7.0.4",
|
|
313
|
-
"packageurl-js": "1.0.2",
|
|
314
|
-
"parse-conflict-json": "5.0.1",
|
|
315
|
-
"parse5": "8.0.0",
|
|
316
|
-
"parse5-htmlparser2-tree-adapter": "8.0.0",
|
|
317
|
-
"parse5-parser-stream": "8.0.0",
|
|
318
|
-
"parseurl": "1.3.3",
|
|
319
|
-
"path-scurry": "2.0.2",
|
|
320
|
-
"picocolors": "1.1.1",
|
|
321
|
-
"picomatch": "4.0.3",
|
|
322
|
-
"poku": "3.0.2",
|
|
323
|
-
"prebuild-install": "7.1.3",
|
|
324
|
-
"proc-log": "6.1.0",
|
|
325
|
-
"promise-retry": "2.0.1",
|
|
326
|
-
"properties-reader": "3.0.1",
|
|
327
|
-
"pump": "3.0.4",
|
|
328
|
-
"qs": "6.15.0",
|
|
329
|
-
"quick-lru": "5.1.1",
|
|
330
|
-
"raw-body": "3.0.2",
|
|
331
|
-
"rc": "1.2.8",
|
|
332
|
-
"read-cmd-shim": "6.0.0",
|
|
333
|
-
"read-package-json-fast": "5.0.0",
|
|
334
|
-
"require-from-string": "2.0.2",
|
|
335
|
-
"resolve-alpn": "1.2.1",
|
|
336
|
-
"responselike": "4.0.2",
|
|
337
|
-
"retry": "0.13.1",
|
|
338
|
-
"safe-buffer": "5.2.1",
|
|
339
|
-
"safer-buffer": "2.1.2",
|
|
340
|
-
"sax": "1.5.0",
|
|
341
|
-
"semver": "7.7.4",
|
|
342
|
-
"setprototypeof": "1.2.0",
|
|
343
|
-
"side-channel": "1.1.0",
|
|
344
|
-
"side-channel-list": "1.0.0",
|
|
345
|
-
"side-channel-map": "1.0.1",
|
|
346
|
-
"side-channel-weakmap": "1.0.2",
|
|
347
|
-
"signal-exit": "4.1.0",
|
|
348
|
-
"simple-concat": "1.0.1",
|
|
349
|
-
"simple-get": "4.0.1",
|
|
350
|
-
"sinon": "21.0.2",
|
|
351
|
-
"slice-ansi": "7.1.2",
|
|
352
|
-
"smart-buffer": "4.2.0",
|
|
353
|
-
"socks": "2.8.7",
|
|
354
|
-
"socks-proxy-agent": "8.0.5",
|
|
355
|
-
"spdx-exceptions": "2.5.0",
|
|
356
|
-
"spdx-expression-parse": "4.0.0",
|
|
357
|
-
"spdx-license-ids": "3.0.23",
|
|
358
|
-
"ssri": "13.0.1",
|
|
359
|
-
"statuses": "2.0.2",
|
|
360
|
-
"streamx": "2.23.0",
|
|
361
|
-
"string-width": "8.2.0",
|
|
362
|
-
"strip-ansi": "7.2.0",
|
|
363
|
-
"strip-json-comments": "5.0.3",
|
|
364
|
-
"supports-color": "10.2.2",
|
|
365
|
-
"table": "6.9.0",
|
|
366
|
-
"tagged-tag": "1.0.0",
|
|
367
|
-
"tar": "7.5.10",
|
|
368
|
-
"tar-fs": "3.1.1",
|
|
369
|
-
"tar-stream": "3.1.8",
|
|
370
|
-
"teex": "1.0.1",
|
|
371
|
-
"text-decoder": "1.2.7",
|
|
372
|
-
"tinyglobby": "0.2.15",
|
|
373
|
-
"toidentifier": "1.0.1",
|
|
374
|
-
"treeverse": "3.0.0",
|
|
375
|
-
"tunnel-agent": "0.6.0",
|
|
376
|
-
"type-detect": "4.1.0",
|
|
377
|
-
"type-fest": "5.4.4",
|
|
378
|
-
"type-is": "2.0.1",
|
|
379
|
-
"typescript": "5.9.3",
|
|
380
|
-
"undici": "7.22.0",
|
|
381
|
-
"unique-filename": "5.0.0",
|
|
382
|
-
"unique-slug": "6.0.0",
|
|
383
|
-
"unpipe": "1.0.0",
|
|
384
|
-
"utils-merge": "1.0.1",
|
|
385
|
-
"uuid": "13.0.0",
|
|
386
|
-
"validate-npm-package-name": "7.0.2",
|
|
387
|
-
"vary": "1.1.2",
|
|
388
|
-
"walk-up-path": "4.0.0",
|
|
389
|
-
"whatwg-encoding": "3.1.1",
|
|
390
|
-
"whatwg-mimetype": "4.0.0",
|
|
391
|
-
"which": "6.0.1",
|
|
392
|
-
"wrap-ansi": "10.0.0",
|
|
393
|
-
"wrappy": "1.0.2",
|
|
394
|
-
"write-file-atomic": "7.0.1",
|
|
395
|
-
"xml-js": "1.6.11",
|
|
396
|
-
"y18n": "5.0.8",
|
|
397
|
-
"yallist": "5.0.0",
|
|
398
|
-
"yaml": "2.8.2",
|
|
399
|
-
"yargs": "18.0.0",
|
|
400
|
-
"yargs-parser": "22.0.0",
|
|
401
|
-
"yoctocolors": "2.1.2",
|
|
402
|
-
"hermes-parser": "0.33.3",
|
|
403
|
-
"hermes-estree": "0.33.3"
|
|
404
|
-
},
|
|
405
101
|
"dependencies": {
|
|
406
|
-
"@babel/parser": "7.29.
|
|
102
|
+
"@babel/parser": "7.29.2",
|
|
407
103
|
"@babel/traverse": "7.29.0",
|
|
408
104
|
"@iarna/toml": "2.2.5",
|
|
409
105
|
"@isaacs/string-locale-compare": "1.1.0",
|
|
@@ -433,39 +129,39 @@
|
|
|
433
129
|
"semver": "7.7.4",
|
|
434
130
|
"ssri": "13.0.1",
|
|
435
131
|
"table": "6.9.0",
|
|
436
|
-
"tar": "7.5.
|
|
132
|
+
"tar": "7.5.13",
|
|
437
133
|
"treeverse": "3.0.0",
|
|
438
134
|
"uuid": "13.0.0",
|
|
439
135
|
"walk-up-path": "4.0.0",
|
|
440
136
|
"xml-js": "1.6.11",
|
|
441
|
-
"yaml": "2.8.
|
|
137
|
+
"yaml": "2.8.3",
|
|
442
138
|
"yargs": "18.0.0",
|
|
443
139
|
"yoctocolors": "2.1.2"
|
|
444
140
|
},
|
|
445
141
|
"devDependencies": {
|
|
446
|
-
"@biomejs/biome": "2.4.
|
|
142
|
+
"@biomejs/biome": "2.4.8",
|
|
447
143
|
"esmock": "2.7.3",
|
|
448
|
-
"poku": "
|
|
449
|
-
"sinon": "21.0.
|
|
450
|
-
"typescript": "
|
|
144
|
+
"poku": "4.1.0",
|
|
145
|
+
"sinon": "21.0.3",
|
|
146
|
+
"typescript": "6.0.2"
|
|
451
147
|
},
|
|
452
148
|
"optionalDependencies": {
|
|
453
149
|
"@appthreat/atom": "2.5.2",
|
|
454
150
|
"@appthreat/atom-parsetools": "1.1.3",
|
|
455
151
|
"@appthreat/cdx-proto": "1.2.1",
|
|
456
|
-
"@appthreat/sqlite3": "
|
|
152
|
+
"@appthreat/sqlite3": "8.0.1",
|
|
457
153
|
"@bufbuild/protobuf": "2.11.0",
|
|
458
|
-
"@cdxgen/cdxgen-plugins-bin": "2.0.
|
|
459
|
-
"@cdxgen/cdxgen-plugins-bin-darwin-amd64": "2.0.
|
|
460
|
-
"@cdxgen/cdxgen-plugins-bin-darwin-arm64": "2.0.
|
|
461
|
-
"@cdxgen/cdxgen-plugins-bin-linux-amd64": "2.0.
|
|
462
|
-
"@cdxgen/cdxgen-plugins-bin-linux-arm": "2.0.
|
|
463
|
-
"@cdxgen/cdxgen-plugins-bin-linux-arm64": "2.0.
|
|
464
|
-
"@cdxgen/cdxgen-plugins-bin-linux-ppc64": "2.0.
|
|
465
|
-
"@cdxgen/cdxgen-plugins-bin-linuxmusl-amd64": "2.0.
|
|
466
|
-
"@cdxgen/cdxgen-plugins-bin-linuxmusl-arm64": "2.0.
|
|
467
|
-
"@cdxgen/cdxgen-plugins-bin-windows-amd64": "2.0.
|
|
468
|
-
"@cdxgen/cdxgen-plugins-bin-windows-arm64": "2.0.
|
|
154
|
+
"@cdxgen/cdxgen-plugins-bin": "2.0.3",
|
|
155
|
+
"@cdxgen/cdxgen-plugins-bin-darwin-amd64": "2.0.3",
|
|
156
|
+
"@cdxgen/cdxgen-plugins-bin-darwin-arm64": "2.0.3",
|
|
157
|
+
"@cdxgen/cdxgen-plugins-bin-linux-amd64": "2.0.3",
|
|
158
|
+
"@cdxgen/cdxgen-plugins-bin-linux-arm": "2.0.3",
|
|
159
|
+
"@cdxgen/cdxgen-plugins-bin-linux-arm64": "2.0.3",
|
|
160
|
+
"@cdxgen/cdxgen-plugins-bin-linux-ppc64": "2.0.3",
|
|
161
|
+
"@cdxgen/cdxgen-plugins-bin-linuxmusl-amd64": "2.0.3",
|
|
162
|
+
"@cdxgen/cdxgen-plugins-bin-linuxmusl-arm64": "2.0.3",
|
|
163
|
+
"@cdxgen/cdxgen-plugins-bin-windows-amd64": "2.0.3",
|
|
164
|
+
"@cdxgen/cdxgen-plugins-bin-windows-arm64": "2.0.3",
|
|
469
165
|
"body-parser": "2.2.2",
|
|
470
166
|
"compression": "1.8.1",
|
|
471
167
|
"connect": "3.7.0",
|
|
@@ -484,22 +180,20 @@
|
|
|
484
180
|
},
|
|
485
181
|
{
|
|
486
182
|
"name": "bun",
|
|
487
|
-
"version": "1.3.
|
|
183
|
+
"version": "1.3.11",
|
|
488
184
|
"onFail": "ignore"
|
|
489
185
|
},
|
|
490
186
|
{
|
|
491
187
|
"name": "deno",
|
|
492
|
-
"version": "2.
|
|
188
|
+
"version": "2.7.5",
|
|
493
189
|
"onFail": "ignore"
|
|
494
190
|
}
|
|
495
191
|
]
|
|
496
192
|
},
|
|
497
193
|
"scripts": {
|
|
498
|
-
"dependencies": "node bin/dependencies.js",
|
|
499
194
|
"gen-types": "pnpm exec tsc",
|
|
500
195
|
"install:frozen": "pnpm install --config.strict-dep-builds=true --frozen-lockfile --package-import-method copy",
|
|
501
196
|
"install:prod": "pnpm install --config.strict-dep-builds=true --frozen-lockfile --package-import-method copy --prod",
|
|
502
|
-
"license-check": "node bin/licenses.js",
|
|
503
197
|
"lint": "biome check --write",
|
|
504
198
|
"lint:check": "biome check",
|
|
505
199
|
"lint:errors": "biome check --diagnostic-level=error",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dependencies.d.ts","sourceRoot":"","sources":["../../bin/dependencies.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"dependencies.d.ts","sourceRoot":"","sources":["../../bin/dependencies.js"],"names":[],"mappings":";AAmIA,4CASC"}
|