projscan 2.1.0 → 2.8.0

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.
Files changed (87) hide show
  1. package/README.md +57 -26
  2. package/dist/analyzers/supplyChainCheck.d.ts +2 -0
  3. package/dist/analyzers/supplyChainCheck.js +400 -0
  4. package/dist/analyzers/supplyChainCheck.js.map +1 -0
  5. package/dist/cli/commands/agentBrief.d.ts +1 -0
  6. package/dist/cli/commands/agentBrief.js +68 -0
  7. package/dist/cli/commands/agentBrief.js.map +1 -0
  8. package/dist/cli/commands/bugHunt.d.ts +1 -0
  9. package/dist/cli/commands/bugHunt.js +59 -0
  10. package/dist/cli/commands/bugHunt.js.map +1 -0
  11. package/dist/cli/commands/evidencePack.d.ts +1 -0
  12. package/dist/cli/commands/evidencePack.js +70 -0
  13. package/dist/cli/commands/evidencePack.js.map +1 -0
  14. package/dist/cli/commands/qualityScorecard.d.ts +1 -0
  15. package/dist/cli/commands/qualityScorecard.js +61 -0
  16. package/dist/cli/commands/qualityScorecard.js.map +1 -0
  17. package/dist/cli/commands/regressionPlan.d.ts +1 -0
  18. package/dist/cli/commands/regressionPlan.js +77 -0
  19. package/dist/cli/commands/regressionPlan.js.map +1 -0
  20. package/dist/cli/commands/releaseTrain.d.ts +1 -0
  21. package/dist/cli/commands/releaseTrain.js +58 -0
  22. package/dist/cli/commands/releaseTrain.js.map +1 -0
  23. package/dist/cli/commands/workplan.d.ts +1 -0
  24. package/dist/cli/commands/workplan.js +136 -0
  25. package/dist/cli/commands/workplan.js.map +1 -0
  26. package/dist/cli/index.js +14 -0
  27. package/dist/cli/index.js.map +1 -1
  28. package/dist/core/agentBrief.d.ts +6 -0
  29. package/dist/core/agentBrief.js +192 -0
  30. package/dist/core/agentBrief.js.map +1 -0
  31. package/dist/core/bugHunt.d.ts +6 -0
  32. package/dist/core/bugHunt.js +278 -0
  33. package/dist/core/bugHunt.js.map +1 -0
  34. package/dist/core/issueEngine.js +2 -0
  35. package/dist/core/issueEngine.js.map +1 -1
  36. package/dist/core/preflight.js +38 -4
  37. package/dist/core/preflight.js.map +1 -1
  38. package/dist/core/qualityScorecard.d.ts +6 -0
  39. package/dist/core/qualityScorecard.js +220 -0
  40. package/dist/core/qualityScorecard.js.map +1 -0
  41. package/dist/core/regressionPlan.d.ts +7 -0
  42. package/dist/core/regressionPlan.js +226 -0
  43. package/dist/core/regressionPlan.js.map +1 -0
  44. package/dist/core/releaseEvidence.d.ts +7 -0
  45. package/dist/core/releaseEvidence.js +174 -0
  46. package/dist/core/releaseEvidence.js.map +1 -0
  47. package/dist/core/releaseTrain.d.ts +5 -0
  48. package/dist/core/releaseTrain.js +348 -0
  49. package/dist/core/releaseTrain.js.map +1 -0
  50. package/dist/core/review.js +31 -2
  51. package/dist/core/review.js.map +1 -1
  52. package/dist/core/workplan.d.ts +12 -0
  53. package/dist/core/workplan.js +440 -0
  54. package/dist/core/workplan.js.map +1 -0
  55. package/dist/index.d.ts +8 -1
  56. package/dist/index.js +7 -0
  57. package/dist/index.js.map +1 -1
  58. package/dist/mcp/tools/agentBrief.d.ts +2 -0
  59. package/dist/mcp/tools/agentBrief.js +39 -0
  60. package/dist/mcp/tools/agentBrief.js.map +1 -0
  61. package/dist/mcp/tools/bugHunt.d.ts +2 -0
  62. package/dist/mcp/tools/bugHunt.js +31 -0
  63. package/dist/mcp/tools/bugHunt.js.map +1 -0
  64. package/dist/mcp/tools/evidencePack.d.ts +2 -0
  65. package/dist/mcp/tools/evidencePack.js +39 -0
  66. package/dist/mcp/tools/evidencePack.js.map +1 -0
  67. package/dist/mcp/tools/qualityScorecard.d.ts +2 -0
  68. package/dist/mcp/tools/qualityScorecard.js +26 -0
  69. package/dist/mcp/tools/qualityScorecard.js.map +1 -0
  70. package/dist/mcp/tools/regressionPlan.d.ts +2 -0
  71. package/dist/mcp/tools/regressionPlan.js +47 -0
  72. package/dist/mcp/tools/regressionPlan.js.map +1 -0
  73. package/dist/mcp/tools/releaseTrain.d.ts +2 -0
  74. package/dist/mcp/tools/releaseTrain.js +27 -0
  75. package/dist/mcp/tools/releaseTrain.js.map +1 -0
  76. package/dist/mcp/tools/workplan.d.ts +2 -0
  77. package/dist/mcp/tools/workplan.js +70 -0
  78. package/dist/mcp/tools/workplan.js.map +1 -0
  79. package/dist/mcp/tools.js +14 -0
  80. package/dist/mcp/tools.js.map +1 -1
  81. package/dist/projscan-sbom.cdx.json +4589 -0
  82. package/dist/tool-manifest.json +196 -3
  83. package/dist/types.d.ts +245 -1
  84. package/dist/utils/formatSupport.d.ts +8 -0
  85. package/dist/utils/formatSupport.js +8 -0
  86. package/dist/utils/formatSupport.js.map +1 -1
  87. package/package.json +9 -6
@@ -0,0 +1,4589 @@
1
+ {
2
+ "bomFormat": "CycloneDX",
3
+ "specVersion": "1.5",
4
+ "serialNumber": "urn:uuid:4c7f57bc-92f0-44eb-8893-9b1e8d1f5cf1",
5
+ "version": 1,
6
+ "metadata": {
7
+ "timestamp": "2026-05-22T13:11:13.488Z",
8
+ "tools": [
9
+ {
10
+ "vendor": "projscan",
11
+ "name": "projscan-sbom-generator",
12
+ "version": "2.8.0"
13
+ }
14
+ ],
15
+ "component": {
16
+ "type": "application",
17
+ "bom-ref": "pkg:npm/projscan@2.8.0",
18
+ "name": "projscan",
19
+ "version": "2.8.0",
20
+ "purl": "pkg:npm/projscan@2.8.0"
21
+ }
22
+ },
23
+ "components": [
24
+ {
25
+ "type": "library",
26
+ "bom-ref": "pkg:npm/%40babel/helper-string-parser@7.27.1",
27
+ "name": "@babel/helper-string-parser",
28
+ "version": "7.27.1",
29
+ "purl": "pkg:npm/%40babel/helper-string-parser@7.27.1",
30
+ "licenses": [
31
+ {
32
+ "license": {
33
+ "id": "MIT"
34
+ }
35
+ }
36
+ ]
37
+ },
38
+ {
39
+ "type": "library",
40
+ "bom-ref": "pkg:npm/%40babel/helper-validator-identifier@7.28.5",
41
+ "name": "@babel/helper-validator-identifier",
42
+ "version": "7.28.5",
43
+ "purl": "pkg:npm/%40babel/helper-validator-identifier@7.28.5",
44
+ "licenses": [
45
+ {
46
+ "license": {
47
+ "id": "MIT"
48
+ }
49
+ }
50
+ ]
51
+ },
52
+ {
53
+ "type": "library",
54
+ "bom-ref": "pkg:npm/%40babel/parser@7.29.3",
55
+ "name": "@babel/parser",
56
+ "version": "7.29.3",
57
+ "purl": "pkg:npm/%40babel/parser@7.29.3",
58
+ "licenses": [
59
+ {
60
+ "license": {
61
+ "id": "MIT"
62
+ }
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "type": "library",
68
+ "bom-ref": "pkg:npm/%40babel/types@7.29.0",
69
+ "name": "@babel/types",
70
+ "version": "7.29.0",
71
+ "purl": "pkg:npm/%40babel/types@7.29.0",
72
+ "licenses": [
73
+ {
74
+ "license": {
75
+ "id": "MIT"
76
+ }
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ "type": "library",
82
+ "bom-ref": "pkg:npm/%40esbuild/aix-ppc64@0.25.12",
83
+ "name": "@esbuild/aix-ppc64",
84
+ "version": "0.25.12",
85
+ "purl": "pkg:npm/%40esbuild/aix-ppc64@0.25.12",
86
+ "licenses": [
87
+ {
88
+ "license": {
89
+ "id": "MIT"
90
+ }
91
+ }
92
+ ]
93
+ },
94
+ {
95
+ "type": "library",
96
+ "bom-ref": "pkg:npm/%40esbuild/android-arm@0.25.12",
97
+ "name": "@esbuild/android-arm",
98
+ "version": "0.25.12",
99
+ "purl": "pkg:npm/%40esbuild/android-arm@0.25.12",
100
+ "licenses": [
101
+ {
102
+ "license": {
103
+ "id": "MIT"
104
+ }
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ "type": "library",
110
+ "bom-ref": "pkg:npm/%40esbuild/android-arm64@0.25.12",
111
+ "name": "@esbuild/android-arm64",
112
+ "version": "0.25.12",
113
+ "purl": "pkg:npm/%40esbuild/android-arm64@0.25.12",
114
+ "licenses": [
115
+ {
116
+ "license": {
117
+ "id": "MIT"
118
+ }
119
+ }
120
+ ]
121
+ },
122
+ {
123
+ "type": "library",
124
+ "bom-ref": "pkg:npm/%40esbuild/android-x64@0.25.12",
125
+ "name": "@esbuild/android-x64",
126
+ "version": "0.25.12",
127
+ "purl": "pkg:npm/%40esbuild/android-x64@0.25.12",
128
+ "licenses": [
129
+ {
130
+ "license": {
131
+ "id": "MIT"
132
+ }
133
+ }
134
+ ]
135
+ },
136
+ {
137
+ "type": "library",
138
+ "bom-ref": "pkg:npm/%40esbuild/darwin-arm64@0.25.12",
139
+ "name": "@esbuild/darwin-arm64",
140
+ "version": "0.25.12",
141
+ "purl": "pkg:npm/%40esbuild/darwin-arm64@0.25.12",
142
+ "licenses": [
143
+ {
144
+ "license": {
145
+ "id": "MIT"
146
+ }
147
+ }
148
+ ]
149
+ },
150
+ {
151
+ "type": "library",
152
+ "bom-ref": "pkg:npm/%40esbuild/darwin-x64@0.25.12",
153
+ "name": "@esbuild/darwin-x64",
154
+ "version": "0.25.12",
155
+ "purl": "pkg:npm/%40esbuild/darwin-x64@0.25.12",
156
+ "licenses": [
157
+ {
158
+ "license": {
159
+ "id": "MIT"
160
+ }
161
+ }
162
+ ]
163
+ },
164
+ {
165
+ "type": "library",
166
+ "bom-ref": "pkg:npm/%40esbuild/freebsd-arm64@0.25.12",
167
+ "name": "@esbuild/freebsd-arm64",
168
+ "version": "0.25.12",
169
+ "purl": "pkg:npm/%40esbuild/freebsd-arm64@0.25.12",
170
+ "licenses": [
171
+ {
172
+ "license": {
173
+ "id": "MIT"
174
+ }
175
+ }
176
+ ]
177
+ },
178
+ {
179
+ "type": "library",
180
+ "bom-ref": "pkg:npm/%40esbuild/freebsd-x64@0.25.12",
181
+ "name": "@esbuild/freebsd-x64",
182
+ "version": "0.25.12",
183
+ "purl": "pkg:npm/%40esbuild/freebsd-x64@0.25.12",
184
+ "licenses": [
185
+ {
186
+ "license": {
187
+ "id": "MIT"
188
+ }
189
+ }
190
+ ]
191
+ },
192
+ {
193
+ "type": "library",
194
+ "bom-ref": "pkg:npm/%40esbuild/linux-arm@0.25.12",
195
+ "name": "@esbuild/linux-arm",
196
+ "version": "0.25.12",
197
+ "purl": "pkg:npm/%40esbuild/linux-arm@0.25.12",
198
+ "licenses": [
199
+ {
200
+ "license": {
201
+ "id": "MIT"
202
+ }
203
+ }
204
+ ]
205
+ },
206
+ {
207
+ "type": "library",
208
+ "bom-ref": "pkg:npm/%40esbuild/linux-arm64@0.25.12",
209
+ "name": "@esbuild/linux-arm64",
210
+ "version": "0.25.12",
211
+ "purl": "pkg:npm/%40esbuild/linux-arm64@0.25.12",
212
+ "licenses": [
213
+ {
214
+ "license": {
215
+ "id": "MIT"
216
+ }
217
+ }
218
+ ]
219
+ },
220
+ {
221
+ "type": "library",
222
+ "bom-ref": "pkg:npm/%40esbuild/linux-ia32@0.25.12",
223
+ "name": "@esbuild/linux-ia32",
224
+ "version": "0.25.12",
225
+ "purl": "pkg:npm/%40esbuild/linux-ia32@0.25.12",
226
+ "licenses": [
227
+ {
228
+ "license": {
229
+ "id": "MIT"
230
+ }
231
+ }
232
+ ]
233
+ },
234
+ {
235
+ "type": "library",
236
+ "bom-ref": "pkg:npm/%40esbuild/linux-loong64@0.25.12",
237
+ "name": "@esbuild/linux-loong64",
238
+ "version": "0.25.12",
239
+ "purl": "pkg:npm/%40esbuild/linux-loong64@0.25.12",
240
+ "licenses": [
241
+ {
242
+ "license": {
243
+ "id": "MIT"
244
+ }
245
+ }
246
+ ]
247
+ },
248
+ {
249
+ "type": "library",
250
+ "bom-ref": "pkg:npm/%40esbuild/linux-mips64el@0.25.12",
251
+ "name": "@esbuild/linux-mips64el",
252
+ "version": "0.25.12",
253
+ "purl": "pkg:npm/%40esbuild/linux-mips64el@0.25.12",
254
+ "licenses": [
255
+ {
256
+ "license": {
257
+ "id": "MIT"
258
+ }
259
+ }
260
+ ]
261
+ },
262
+ {
263
+ "type": "library",
264
+ "bom-ref": "pkg:npm/%40esbuild/linux-ppc64@0.25.12",
265
+ "name": "@esbuild/linux-ppc64",
266
+ "version": "0.25.12",
267
+ "purl": "pkg:npm/%40esbuild/linux-ppc64@0.25.12",
268
+ "licenses": [
269
+ {
270
+ "license": {
271
+ "id": "MIT"
272
+ }
273
+ }
274
+ ]
275
+ },
276
+ {
277
+ "type": "library",
278
+ "bom-ref": "pkg:npm/%40esbuild/linux-riscv64@0.25.12",
279
+ "name": "@esbuild/linux-riscv64",
280
+ "version": "0.25.12",
281
+ "purl": "pkg:npm/%40esbuild/linux-riscv64@0.25.12",
282
+ "licenses": [
283
+ {
284
+ "license": {
285
+ "id": "MIT"
286
+ }
287
+ }
288
+ ]
289
+ },
290
+ {
291
+ "type": "library",
292
+ "bom-ref": "pkg:npm/%40esbuild/linux-s390x@0.25.12",
293
+ "name": "@esbuild/linux-s390x",
294
+ "version": "0.25.12",
295
+ "purl": "pkg:npm/%40esbuild/linux-s390x@0.25.12",
296
+ "licenses": [
297
+ {
298
+ "license": {
299
+ "id": "MIT"
300
+ }
301
+ }
302
+ ]
303
+ },
304
+ {
305
+ "type": "library",
306
+ "bom-ref": "pkg:npm/%40esbuild/linux-x64@0.25.12",
307
+ "name": "@esbuild/linux-x64",
308
+ "version": "0.25.12",
309
+ "purl": "pkg:npm/%40esbuild/linux-x64@0.25.12",
310
+ "licenses": [
311
+ {
312
+ "license": {
313
+ "id": "MIT"
314
+ }
315
+ }
316
+ ]
317
+ },
318
+ {
319
+ "type": "library",
320
+ "bom-ref": "pkg:npm/%40esbuild/netbsd-arm64@0.25.12",
321
+ "name": "@esbuild/netbsd-arm64",
322
+ "version": "0.25.12",
323
+ "purl": "pkg:npm/%40esbuild/netbsd-arm64@0.25.12",
324
+ "licenses": [
325
+ {
326
+ "license": {
327
+ "id": "MIT"
328
+ }
329
+ }
330
+ ]
331
+ },
332
+ {
333
+ "type": "library",
334
+ "bom-ref": "pkg:npm/%40esbuild/netbsd-x64@0.25.12",
335
+ "name": "@esbuild/netbsd-x64",
336
+ "version": "0.25.12",
337
+ "purl": "pkg:npm/%40esbuild/netbsd-x64@0.25.12",
338
+ "licenses": [
339
+ {
340
+ "license": {
341
+ "id": "MIT"
342
+ }
343
+ }
344
+ ]
345
+ },
346
+ {
347
+ "type": "library",
348
+ "bom-ref": "pkg:npm/%40esbuild/openbsd-arm64@0.25.12",
349
+ "name": "@esbuild/openbsd-arm64",
350
+ "version": "0.25.12",
351
+ "purl": "pkg:npm/%40esbuild/openbsd-arm64@0.25.12",
352
+ "licenses": [
353
+ {
354
+ "license": {
355
+ "id": "MIT"
356
+ }
357
+ }
358
+ ]
359
+ },
360
+ {
361
+ "type": "library",
362
+ "bom-ref": "pkg:npm/%40esbuild/openbsd-x64@0.25.12",
363
+ "name": "@esbuild/openbsd-x64",
364
+ "version": "0.25.12",
365
+ "purl": "pkg:npm/%40esbuild/openbsd-x64@0.25.12",
366
+ "licenses": [
367
+ {
368
+ "license": {
369
+ "id": "MIT"
370
+ }
371
+ }
372
+ ]
373
+ },
374
+ {
375
+ "type": "library",
376
+ "bom-ref": "pkg:npm/%40esbuild/openharmony-arm64@0.25.12",
377
+ "name": "@esbuild/openharmony-arm64",
378
+ "version": "0.25.12",
379
+ "purl": "pkg:npm/%40esbuild/openharmony-arm64@0.25.12",
380
+ "licenses": [
381
+ {
382
+ "license": {
383
+ "id": "MIT"
384
+ }
385
+ }
386
+ ]
387
+ },
388
+ {
389
+ "type": "library",
390
+ "bom-ref": "pkg:npm/%40esbuild/sunos-x64@0.25.12",
391
+ "name": "@esbuild/sunos-x64",
392
+ "version": "0.25.12",
393
+ "purl": "pkg:npm/%40esbuild/sunos-x64@0.25.12",
394
+ "licenses": [
395
+ {
396
+ "license": {
397
+ "id": "MIT"
398
+ }
399
+ }
400
+ ]
401
+ },
402
+ {
403
+ "type": "library",
404
+ "bom-ref": "pkg:npm/%40esbuild/win32-arm64@0.25.12",
405
+ "name": "@esbuild/win32-arm64",
406
+ "version": "0.25.12",
407
+ "purl": "pkg:npm/%40esbuild/win32-arm64@0.25.12",
408
+ "licenses": [
409
+ {
410
+ "license": {
411
+ "id": "MIT"
412
+ }
413
+ }
414
+ ]
415
+ },
416
+ {
417
+ "type": "library",
418
+ "bom-ref": "pkg:npm/%40esbuild/win32-ia32@0.25.12",
419
+ "name": "@esbuild/win32-ia32",
420
+ "version": "0.25.12",
421
+ "purl": "pkg:npm/%40esbuild/win32-ia32@0.25.12",
422
+ "licenses": [
423
+ {
424
+ "license": {
425
+ "id": "MIT"
426
+ }
427
+ }
428
+ ]
429
+ },
430
+ {
431
+ "type": "library",
432
+ "bom-ref": "pkg:npm/%40esbuild/win32-x64@0.25.12",
433
+ "name": "@esbuild/win32-x64",
434
+ "version": "0.25.12",
435
+ "purl": "pkg:npm/%40esbuild/win32-x64@0.25.12",
436
+ "licenses": [
437
+ {
438
+ "license": {
439
+ "id": "MIT"
440
+ }
441
+ }
442
+ ]
443
+ },
444
+ {
445
+ "type": "library",
446
+ "bom-ref": "pkg:npm/%40eslint-community/eslint-utils@4.9.1",
447
+ "name": "@eslint-community/eslint-utils",
448
+ "version": "4.9.1",
449
+ "purl": "pkg:npm/%40eslint-community/eslint-utils@4.9.1",
450
+ "licenses": [
451
+ {
452
+ "license": {
453
+ "id": "MIT"
454
+ }
455
+ }
456
+ ]
457
+ },
458
+ {
459
+ "type": "library",
460
+ "bom-ref": "pkg:npm/%40eslint-community/regexpp@4.12.2",
461
+ "name": "@eslint-community/regexpp",
462
+ "version": "4.12.2",
463
+ "purl": "pkg:npm/%40eslint-community/regexpp@4.12.2",
464
+ "licenses": [
465
+ {
466
+ "license": {
467
+ "id": "MIT"
468
+ }
469
+ }
470
+ ]
471
+ },
472
+ {
473
+ "type": "library",
474
+ "bom-ref": "pkg:npm/%40eslint/config-array@0.23.5",
475
+ "name": "@eslint/config-array",
476
+ "version": "0.23.5",
477
+ "purl": "pkg:npm/%40eslint/config-array@0.23.5",
478
+ "licenses": [
479
+ {
480
+ "license": {
481
+ "id": "Apache-2.0"
482
+ }
483
+ }
484
+ ]
485
+ },
486
+ {
487
+ "type": "library",
488
+ "bom-ref": "pkg:npm/%40eslint/config-helpers@0.5.5",
489
+ "name": "@eslint/config-helpers",
490
+ "version": "0.5.5",
491
+ "purl": "pkg:npm/%40eslint/config-helpers@0.5.5",
492
+ "licenses": [
493
+ {
494
+ "license": {
495
+ "id": "Apache-2.0"
496
+ }
497
+ }
498
+ ]
499
+ },
500
+ {
501
+ "type": "library",
502
+ "bom-ref": "pkg:npm/%40eslint/core@1.2.1",
503
+ "name": "@eslint/core",
504
+ "version": "1.2.1",
505
+ "purl": "pkg:npm/%40eslint/core@1.2.1",
506
+ "licenses": [
507
+ {
508
+ "license": {
509
+ "id": "Apache-2.0"
510
+ }
511
+ }
512
+ ]
513
+ },
514
+ {
515
+ "type": "library",
516
+ "bom-ref": "pkg:npm/%40eslint/js@10.0.1",
517
+ "name": "@eslint/js",
518
+ "version": "10.0.1",
519
+ "purl": "pkg:npm/%40eslint/js@10.0.1",
520
+ "licenses": [
521
+ {
522
+ "license": {
523
+ "id": "MIT"
524
+ }
525
+ }
526
+ ]
527
+ },
528
+ {
529
+ "type": "library",
530
+ "bom-ref": "pkg:npm/%40eslint/object-schema@3.0.5",
531
+ "name": "@eslint/object-schema",
532
+ "version": "3.0.5",
533
+ "purl": "pkg:npm/%40eslint/object-schema@3.0.5",
534
+ "licenses": [
535
+ {
536
+ "license": {
537
+ "id": "Apache-2.0"
538
+ }
539
+ }
540
+ ]
541
+ },
542
+ {
543
+ "type": "library",
544
+ "bom-ref": "pkg:npm/%40eslint/plugin-kit@0.7.1",
545
+ "name": "@eslint/plugin-kit",
546
+ "version": "0.7.1",
547
+ "purl": "pkg:npm/%40eslint/plugin-kit@0.7.1",
548
+ "licenses": [
549
+ {
550
+ "license": {
551
+ "id": "Apache-2.0"
552
+ }
553
+ }
554
+ ]
555
+ },
556
+ {
557
+ "type": "library",
558
+ "bom-ref": "pkg:npm/%40huggingface/jinja@0.2.2",
559
+ "name": "@huggingface/jinja",
560
+ "version": "0.2.2",
561
+ "purl": "pkg:npm/%40huggingface/jinja@0.2.2",
562
+ "licenses": [
563
+ {
564
+ "license": {
565
+ "id": "MIT"
566
+ }
567
+ }
568
+ ]
569
+ },
570
+ {
571
+ "type": "library",
572
+ "bom-ref": "pkg:npm/%40humanfs/core@0.19.2",
573
+ "name": "@humanfs/core",
574
+ "version": "0.19.2",
575
+ "purl": "pkg:npm/%40humanfs/core@0.19.2",
576
+ "licenses": [
577
+ {
578
+ "license": {
579
+ "id": "Apache-2.0"
580
+ }
581
+ }
582
+ ]
583
+ },
584
+ {
585
+ "type": "library",
586
+ "bom-ref": "pkg:npm/%40humanfs/node@0.16.8",
587
+ "name": "@humanfs/node",
588
+ "version": "0.16.8",
589
+ "purl": "pkg:npm/%40humanfs/node@0.16.8",
590
+ "licenses": [
591
+ {
592
+ "license": {
593
+ "id": "Apache-2.0"
594
+ }
595
+ }
596
+ ]
597
+ },
598
+ {
599
+ "type": "library",
600
+ "bom-ref": "pkg:npm/%40humanfs/types@0.15.0",
601
+ "name": "@humanfs/types",
602
+ "version": "0.15.0",
603
+ "purl": "pkg:npm/%40humanfs/types@0.15.0",
604
+ "licenses": [
605
+ {
606
+ "license": {
607
+ "id": "Apache-2.0"
608
+ }
609
+ }
610
+ ]
611
+ },
612
+ {
613
+ "type": "library",
614
+ "bom-ref": "pkg:npm/%40humanwhocodes/module-importer@1.0.1",
615
+ "name": "@humanwhocodes/module-importer",
616
+ "version": "1.0.1",
617
+ "purl": "pkg:npm/%40humanwhocodes/module-importer@1.0.1",
618
+ "licenses": [
619
+ {
620
+ "license": {
621
+ "id": "Apache-2.0"
622
+ }
623
+ }
624
+ ]
625
+ },
626
+ {
627
+ "type": "library",
628
+ "bom-ref": "pkg:npm/%40humanwhocodes/retry@0.4.3",
629
+ "name": "@humanwhocodes/retry",
630
+ "version": "0.4.3",
631
+ "purl": "pkg:npm/%40humanwhocodes/retry@0.4.3",
632
+ "licenses": [
633
+ {
634
+ "license": {
635
+ "id": "Apache-2.0"
636
+ }
637
+ }
638
+ ]
639
+ },
640
+ {
641
+ "type": "library",
642
+ "bom-ref": "pkg:npm/%40jridgewell/sourcemap-codec@1.5.5",
643
+ "name": "@jridgewell/sourcemap-codec",
644
+ "version": "1.5.5",
645
+ "purl": "pkg:npm/%40jridgewell/sourcemap-codec@1.5.5",
646
+ "licenses": [
647
+ {
648
+ "license": {
649
+ "id": "MIT"
650
+ }
651
+ }
652
+ ]
653
+ },
654
+ {
655
+ "type": "library",
656
+ "bom-ref": "pkg:npm/%40nodelib/fs.scandir@2.1.5",
657
+ "name": "@nodelib/fs.scandir",
658
+ "version": "2.1.5",
659
+ "purl": "pkg:npm/%40nodelib/fs.scandir@2.1.5",
660
+ "licenses": [
661
+ {
662
+ "license": {
663
+ "id": "MIT"
664
+ }
665
+ }
666
+ ]
667
+ },
668
+ {
669
+ "type": "library",
670
+ "bom-ref": "pkg:npm/%40nodelib/fs.stat@2.0.5",
671
+ "name": "@nodelib/fs.stat",
672
+ "version": "2.0.5",
673
+ "purl": "pkg:npm/%40nodelib/fs.stat@2.0.5",
674
+ "licenses": [
675
+ {
676
+ "license": {
677
+ "id": "MIT"
678
+ }
679
+ }
680
+ ]
681
+ },
682
+ {
683
+ "type": "library",
684
+ "bom-ref": "pkg:npm/%40nodelib/fs.walk@1.2.8",
685
+ "name": "@nodelib/fs.walk",
686
+ "version": "1.2.8",
687
+ "purl": "pkg:npm/%40nodelib/fs.walk@1.2.8",
688
+ "licenses": [
689
+ {
690
+ "license": {
691
+ "id": "MIT"
692
+ }
693
+ }
694
+ ]
695
+ },
696
+ {
697
+ "type": "library",
698
+ "bom-ref": "pkg:npm/%40protobufjs/aspromise@1.1.2",
699
+ "name": "@protobufjs/aspromise",
700
+ "version": "1.1.2",
701
+ "purl": "pkg:npm/%40protobufjs/aspromise@1.1.2",
702
+ "licenses": [
703
+ {
704
+ "license": {
705
+ "id": "BSD-3-Clause"
706
+ }
707
+ }
708
+ ]
709
+ },
710
+ {
711
+ "type": "library",
712
+ "bom-ref": "pkg:npm/%40protobufjs/base64@1.1.2",
713
+ "name": "@protobufjs/base64",
714
+ "version": "1.1.2",
715
+ "purl": "pkg:npm/%40protobufjs/base64@1.1.2",
716
+ "licenses": [
717
+ {
718
+ "license": {
719
+ "id": "BSD-3-Clause"
720
+ }
721
+ }
722
+ ]
723
+ },
724
+ {
725
+ "type": "library",
726
+ "bom-ref": "pkg:npm/%40protobufjs/codegen@2.0.5",
727
+ "name": "@protobufjs/codegen",
728
+ "version": "2.0.5",
729
+ "purl": "pkg:npm/%40protobufjs/codegen@2.0.5",
730
+ "licenses": [
731
+ {
732
+ "license": {
733
+ "id": "BSD-3-Clause"
734
+ }
735
+ }
736
+ ]
737
+ },
738
+ {
739
+ "type": "library",
740
+ "bom-ref": "pkg:npm/%40protobufjs/eventemitter@1.1.0",
741
+ "name": "@protobufjs/eventemitter",
742
+ "version": "1.1.0",
743
+ "purl": "pkg:npm/%40protobufjs/eventemitter@1.1.0",
744
+ "licenses": [
745
+ {
746
+ "license": {
747
+ "id": "BSD-3-Clause"
748
+ }
749
+ }
750
+ ]
751
+ },
752
+ {
753
+ "type": "library",
754
+ "bom-ref": "pkg:npm/%40protobufjs/fetch@1.1.1",
755
+ "name": "@protobufjs/fetch",
756
+ "version": "1.1.1",
757
+ "purl": "pkg:npm/%40protobufjs/fetch@1.1.1",
758
+ "licenses": [
759
+ {
760
+ "license": {
761
+ "id": "BSD-3-Clause"
762
+ }
763
+ }
764
+ ]
765
+ },
766
+ {
767
+ "type": "library",
768
+ "bom-ref": "pkg:npm/%40protobufjs/float@1.0.2",
769
+ "name": "@protobufjs/float",
770
+ "version": "1.0.2",
771
+ "purl": "pkg:npm/%40protobufjs/float@1.0.2",
772
+ "licenses": [
773
+ {
774
+ "license": {
775
+ "id": "BSD-3-Clause"
776
+ }
777
+ }
778
+ ]
779
+ },
780
+ {
781
+ "type": "library",
782
+ "bom-ref": "pkg:npm/%40protobufjs/inquire@1.1.2",
783
+ "name": "@protobufjs/inquire",
784
+ "version": "1.1.2",
785
+ "purl": "pkg:npm/%40protobufjs/inquire@1.1.2",
786
+ "licenses": [
787
+ {
788
+ "license": {
789
+ "id": "BSD-3-Clause"
790
+ }
791
+ }
792
+ ]
793
+ },
794
+ {
795
+ "type": "library",
796
+ "bom-ref": "pkg:npm/%40protobufjs/path@1.1.2",
797
+ "name": "@protobufjs/path",
798
+ "version": "1.1.2",
799
+ "purl": "pkg:npm/%40protobufjs/path@1.1.2",
800
+ "licenses": [
801
+ {
802
+ "license": {
803
+ "id": "BSD-3-Clause"
804
+ }
805
+ }
806
+ ]
807
+ },
808
+ {
809
+ "type": "library",
810
+ "bom-ref": "pkg:npm/%40protobufjs/pool@1.1.0",
811
+ "name": "@protobufjs/pool",
812
+ "version": "1.1.0",
813
+ "purl": "pkg:npm/%40protobufjs/pool@1.1.0",
814
+ "licenses": [
815
+ {
816
+ "license": {
817
+ "id": "BSD-3-Clause"
818
+ }
819
+ }
820
+ ]
821
+ },
822
+ {
823
+ "type": "library",
824
+ "bom-ref": "pkg:npm/%40protobufjs/utf8@1.1.1",
825
+ "name": "@protobufjs/utf8",
826
+ "version": "1.1.1",
827
+ "purl": "pkg:npm/%40protobufjs/utf8@1.1.1",
828
+ "licenses": [
829
+ {
830
+ "license": {
831
+ "id": "BSD-3-Clause"
832
+ }
833
+ }
834
+ ]
835
+ },
836
+ {
837
+ "type": "library",
838
+ "bom-ref": "pkg:npm/%40rollup/rollup-android-arm-eabi@4.60.3",
839
+ "name": "@rollup/rollup-android-arm-eabi",
840
+ "version": "4.60.3",
841
+ "purl": "pkg:npm/%40rollup/rollup-android-arm-eabi@4.60.3",
842
+ "licenses": [
843
+ {
844
+ "license": {
845
+ "id": "MIT"
846
+ }
847
+ }
848
+ ]
849
+ },
850
+ {
851
+ "type": "library",
852
+ "bom-ref": "pkg:npm/%40rollup/rollup-android-arm64@4.60.3",
853
+ "name": "@rollup/rollup-android-arm64",
854
+ "version": "4.60.3",
855
+ "purl": "pkg:npm/%40rollup/rollup-android-arm64@4.60.3",
856
+ "licenses": [
857
+ {
858
+ "license": {
859
+ "id": "MIT"
860
+ }
861
+ }
862
+ ]
863
+ },
864
+ {
865
+ "type": "library",
866
+ "bom-ref": "pkg:npm/%40rollup/rollup-darwin-arm64@4.60.3",
867
+ "name": "@rollup/rollup-darwin-arm64",
868
+ "version": "4.60.3",
869
+ "purl": "pkg:npm/%40rollup/rollup-darwin-arm64@4.60.3",
870
+ "licenses": [
871
+ {
872
+ "license": {
873
+ "id": "MIT"
874
+ }
875
+ }
876
+ ]
877
+ },
878
+ {
879
+ "type": "library",
880
+ "bom-ref": "pkg:npm/%40rollup/rollup-darwin-x64@4.60.3",
881
+ "name": "@rollup/rollup-darwin-x64",
882
+ "version": "4.60.3",
883
+ "purl": "pkg:npm/%40rollup/rollup-darwin-x64@4.60.3",
884
+ "licenses": [
885
+ {
886
+ "license": {
887
+ "id": "MIT"
888
+ }
889
+ }
890
+ ]
891
+ },
892
+ {
893
+ "type": "library",
894
+ "bom-ref": "pkg:npm/%40rollup/rollup-freebsd-arm64@4.60.3",
895
+ "name": "@rollup/rollup-freebsd-arm64",
896
+ "version": "4.60.3",
897
+ "purl": "pkg:npm/%40rollup/rollup-freebsd-arm64@4.60.3",
898
+ "licenses": [
899
+ {
900
+ "license": {
901
+ "id": "MIT"
902
+ }
903
+ }
904
+ ]
905
+ },
906
+ {
907
+ "type": "library",
908
+ "bom-ref": "pkg:npm/%40rollup/rollup-freebsd-x64@4.60.3",
909
+ "name": "@rollup/rollup-freebsd-x64",
910
+ "version": "4.60.3",
911
+ "purl": "pkg:npm/%40rollup/rollup-freebsd-x64@4.60.3",
912
+ "licenses": [
913
+ {
914
+ "license": {
915
+ "id": "MIT"
916
+ }
917
+ }
918
+ ]
919
+ },
920
+ {
921
+ "type": "library",
922
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-arm-gnueabihf@4.60.3",
923
+ "name": "@rollup/rollup-linux-arm-gnueabihf",
924
+ "version": "4.60.3",
925
+ "purl": "pkg:npm/%40rollup/rollup-linux-arm-gnueabihf@4.60.3",
926
+ "licenses": [
927
+ {
928
+ "license": {
929
+ "id": "MIT"
930
+ }
931
+ }
932
+ ]
933
+ },
934
+ {
935
+ "type": "library",
936
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-arm-musleabihf@4.60.3",
937
+ "name": "@rollup/rollup-linux-arm-musleabihf",
938
+ "version": "4.60.3",
939
+ "purl": "pkg:npm/%40rollup/rollup-linux-arm-musleabihf@4.60.3",
940
+ "licenses": [
941
+ {
942
+ "license": {
943
+ "id": "MIT"
944
+ }
945
+ }
946
+ ]
947
+ },
948
+ {
949
+ "type": "library",
950
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-arm64-gnu@4.60.3",
951
+ "name": "@rollup/rollup-linux-arm64-gnu",
952
+ "version": "4.60.3",
953
+ "purl": "pkg:npm/%40rollup/rollup-linux-arm64-gnu@4.60.3",
954
+ "licenses": [
955
+ {
956
+ "license": {
957
+ "id": "MIT"
958
+ }
959
+ }
960
+ ]
961
+ },
962
+ {
963
+ "type": "library",
964
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-arm64-musl@4.60.3",
965
+ "name": "@rollup/rollup-linux-arm64-musl",
966
+ "version": "4.60.3",
967
+ "purl": "pkg:npm/%40rollup/rollup-linux-arm64-musl@4.60.3",
968
+ "licenses": [
969
+ {
970
+ "license": {
971
+ "id": "MIT"
972
+ }
973
+ }
974
+ ]
975
+ },
976
+ {
977
+ "type": "library",
978
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-loong64-gnu@4.60.3",
979
+ "name": "@rollup/rollup-linux-loong64-gnu",
980
+ "version": "4.60.3",
981
+ "purl": "pkg:npm/%40rollup/rollup-linux-loong64-gnu@4.60.3",
982
+ "licenses": [
983
+ {
984
+ "license": {
985
+ "id": "MIT"
986
+ }
987
+ }
988
+ ]
989
+ },
990
+ {
991
+ "type": "library",
992
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-loong64-musl@4.60.3",
993
+ "name": "@rollup/rollup-linux-loong64-musl",
994
+ "version": "4.60.3",
995
+ "purl": "pkg:npm/%40rollup/rollup-linux-loong64-musl@4.60.3",
996
+ "licenses": [
997
+ {
998
+ "license": {
999
+ "id": "MIT"
1000
+ }
1001
+ }
1002
+ ]
1003
+ },
1004
+ {
1005
+ "type": "library",
1006
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-ppc64-gnu@4.60.3",
1007
+ "name": "@rollup/rollup-linux-ppc64-gnu",
1008
+ "version": "4.60.3",
1009
+ "purl": "pkg:npm/%40rollup/rollup-linux-ppc64-gnu@4.60.3",
1010
+ "licenses": [
1011
+ {
1012
+ "license": {
1013
+ "id": "MIT"
1014
+ }
1015
+ }
1016
+ ]
1017
+ },
1018
+ {
1019
+ "type": "library",
1020
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-ppc64-musl@4.60.3",
1021
+ "name": "@rollup/rollup-linux-ppc64-musl",
1022
+ "version": "4.60.3",
1023
+ "purl": "pkg:npm/%40rollup/rollup-linux-ppc64-musl@4.60.3",
1024
+ "licenses": [
1025
+ {
1026
+ "license": {
1027
+ "id": "MIT"
1028
+ }
1029
+ }
1030
+ ]
1031
+ },
1032
+ {
1033
+ "type": "library",
1034
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-riscv64-gnu@4.60.3",
1035
+ "name": "@rollup/rollup-linux-riscv64-gnu",
1036
+ "version": "4.60.3",
1037
+ "purl": "pkg:npm/%40rollup/rollup-linux-riscv64-gnu@4.60.3",
1038
+ "licenses": [
1039
+ {
1040
+ "license": {
1041
+ "id": "MIT"
1042
+ }
1043
+ }
1044
+ ]
1045
+ },
1046
+ {
1047
+ "type": "library",
1048
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-riscv64-musl@4.60.3",
1049
+ "name": "@rollup/rollup-linux-riscv64-musl",
1050
+ "version": "4.60.3",
1051
+ "purl": "pkg:npm/%40rollup/rollup-linux-riscv64-musl@4.60.3",
1052
+ "licenses": [
1053
+ {
1054
+ "license": {
1055
+ "id": "MIT"
1056
+ }
1057
+ }
1058
+ ]
1059
+ },
1060
+ {
1061
+ "type": "library",
1062
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-s390x-gnu@4.60.3",
1063
+ "name": "@rollup/rollup-linux-s390x-gnu",
1064
+ "version": "4.60.3",
1065
+ "purl": "pkg:npm/%40rollup/rollup-linux-s390x-gnu@4.60.3",
1066
+ "licenses": [
1067
+ {
1068
+ "license": {
1069
+ "id": "MIT"
1070
+ }
1071
+ }
1072
+ ]
1073
+ },
1074
+ {
1075
+ "type": "library",
1076
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-x64-gnu@4.60.3",
1077
+ "name": "@rollup/rollup-linux-x64-gnu",
1078
+ "version": "4.60.3",
1079
+ "purl": "pkg:npm/%40rollup/rollup-linux-x64-gnu@4.60.3",
1080
+ "licenses": [
1081
+ {
1082
+ "license": {
1083
+ "id": "MIT"
1084
+ }
1085
+ }
1086
+ ]
1087
+ },
1088
+ {
1089
+ "type": "library",
1090
+ "bom-ref": "pkg:npm/%40rollup/rollup-linux-x64-musl@4.60.3",
1091
+ "name": "@rollup/rollup-linux-x64-musl",
1092
+ "version": "4.60.3",
1093
+ "purl": "pkg:npm/%40rollup/rollup-linux-x64-musl@4.60.3",
1094
+ "licenses": [
1095
+ {
1096
+ "license": {
1097
+ "id": "MIT"
1098
+ }
1099
+ }
1100
+ ]
1101
+ },
1102
+ {
1103
+ "type": "library",
1104
+ "bom-ref": "pkg:npm/%40rollup/rollup-openbsd-x64@4.60.3",
1105
+ "name": "@rollup/rollup-openbsd-x64",
1106
+ "version": "4.60.3",
1107
+ "purl": "pkg:npm/%40rollup/rollup-openbsd-x64@4.60.3",
1108
+ "licenses": [
1109
+ {
1110
+ "license": {
1111
+ "id": "MIT"
1112
+ }
1113
+ }
1114
+ ]
1115
+ },
1116
+ {
1117
+ "type": "library",
1118
+ "bom-ref": "pkg:npm/%40rollup/rollup-openharmony-arm64@4.60.3",
1119
+ "name": "@rollup/rollup-openharmony-arm64",
1120
+ "version": "4.60.3",
1121
+ "purl": "pkg:npm/%40rollup/rollup-openharmony-arm64@4.60.3",
1122
+ "licenses": [
1123
+ {
1124
+ "license": {
1125
+ "id": "MIT"
1126
+ }
1127
+ }
1128
+ ]
1129
+ },
1130
+ {
1131
+ "type": "library",
1132
+ "bom-ref": "pkg:npm/%40rollup/rollup-win32-arm64-msvc@4.60.3",
1133
+ "name": "@rollup/rollup-win32-arm64-msvc",
1134
+ "version": "4.60.3",
1135
+ "purl": "pkg:npm/%40rollup/rollup-win32-arm64-msvc@4.60.3",
1136
+ "licenses": [
1137
+ {
1138
+ "license": {
1139
+ "id": "MIT"
1140
+ }
1141
+ }
1142
+ ]
1143
+ },
1144
+ {
1145
+ "type": "library",
1146
+ "bom-ref": "pkg:npm/%40rollup/rollup-win32-ia32-msvc@4.60.3",
1147
+ "name": "@rollup/rollup-win32-ia32-msvc",
1148
+ "version": "4.60.3",
1149
+ "purl": "pkg:npm/%40rollup/rollup-win32-ia32-msvc@4.60.3",
1150
+ "licenses": [
1151
+ {
1152
+ "license": {
1153
+ "id": "MIT"
1154
+ }
1155
+ }
1156
+ ]
1157
+ },
1158
+ {
1159
+ "type": "library",
1160
+ "bom-ref": "pkg:npm/%40rollup/rollup-win32-x64-gnu@4.60.3",
1161
+ "name": "@rollup/rollup-win32-x64-gnu",
1162
+ "version": "4.60.3",
1163
+ "purl": "pkg:npm/%40rollup/rollup-win32-x64-gnu@4.60.3",
1164
+ "licenses": [
1165
+ {
1166
+ "license": {
1167
+ "id": "MIT"
1168
+ }
1169
+ }
1170
+ ]
1171
+ },
1172
+ {
1173
+ "type": "library",
1174
+ "bom-ref": "pkg:npm/%40rollup/rollup-win32-x64-msvc@4.60.3",
1175
+ "name": "@rollup/rollup-win32-x64-msvc",
1176
+ "version": "4.60.3",
1177
+ "purl": "pkg:npm/%40rollup/rollup-win32-x64-msvc@4.60.3",
1178
+ "licenses": [
1179
+ {
1180
+ "license": {
1181
+ "id": "MIT"
1182
+ }
1183
+ }
1184
+ ]
1185
+ },
1186
+ {
1187
+ "type": "library",
1188
+ "bom-ref": "pkg:npm/%40types/chai@5.2.3",
1189
+ "name": "@types/chai",
1190
+ "version": "5.2.3",
1191
+ "purl": "pkg:npm/%40types/chai@5.2.3",
1192
+ "licenses": [
1193
+ {
1194
+ "license": {
1195
+ "id": "MIT"
1196
+ }
1197
+ }
1198
+ ]
1199
+ },
1200
+ {
1201
+ "type": "library",
1202
+ "bom-ref": "pkg:npm/%40types/deep-eql@4.0.2",
1203
+ "name": "@types/deep-eql",
1204
+ "version": "4.0.2",
1205
+ "purl": "pkg:npm/%40types/deep-eql@4.0.2",
1206
+ "licenses": [
1207
+ {
1208
+ "license": {
1209
+ "id": "MIT"
1210
+ }
1211
+ }
1212
+ ]
1213
+ },
1214
+ {
1215
+ "type": "library",
1216
+ "bom-ref": "pkg:npm/%40types/esrecurse@4.3.1",
1217
+ "name": "@types/esrecurse",
1218
+ "version": "4.3.1",
1219
+ "purl": "pkg:npm/%40types/esrecurse@4.3.1",
1220
+ "licenses": [
1221
+ {
1222
+ "license": {
1223
+ "id": "MIT"
1224
+ }
1225
+ }
1226
+ ]
1227
+ },
1228
+ {
1229
+ "type": "library",
1230
+ "bom-ref": "pkg:npm/%40types/estree@1.0.8",
1231
+ "name": "@types/estree",
1232
+ "version": "1.0.8",
1233
+ "purl": "pkg:npm/%40types/estree@1.0.8",
1234
+ "licenses": [
1235
+ {
1236
+ "license": {
1237
+ "id": "MIT"
1238
+ }
1239
+ }
1240
+ ]
1241
+ },
1242
+ {
1243
+ "type": "library",
1244
+ "bom-ref": "pkg:npm/%40types/json-schema@7.0.15",
1245
+ "name": "@types/json-schema",
1246
+ "version": "7.0.15",
1247
+ "purl": "pkg:npm/%40types/json-schema@7.0.15",
1248
+ "licenses": [
1249
+ {
1250
+ "license": {
1251
+ "id": "MIT"
1252
+ }
1253
+ }
1254
+ ]
1255
+ },
1256
+ {
1257
+ "type": "library",
1258
+ "bom-ref": "pkg:npm/%40types/node@22.19.17",
1259
+ "name": "@types/node",
1260
+ "version": "22.19.17",
1261
+ "purl": "pkg:npm/%40types/node@22.19.17",
1262
+ "licenses": [
1263
+ {
1264
+ "license": {
1265
+ "id": "MIT"
1266
+ }
1267
+ }
1268
+ ]
1269
+ },
1270
+ {
1271
+ "type": "library",
1272
+ "bom-ref": "pkg:npm/%40typescript-eslint/eslint-plugin@8.59.2",
1273
+ "name": "@typescript-eslint/eslint-plugin",
1274
+ "version": "8.59.2",
1275
+ "purl": "pkg:npm/%40typescript-eslint/eslint-plugin@8.59.2",
1276
+ "licenses": [
1277
+ {
1278
+ "license": {
1279
+ "id": "MIT"
1280
+ }
1281
+ }
1282
+ ]
1283
+ },
1284
+ {
1285
+ "type": "library",
1286
+ "bom-ref": "pkg:npm/%40typescript-eslint/parser@8.59.2",
1287
+ "name": "@typescript-eslint/parser",
1288
+ "version": "8.59.2",
1289
+ "purl": "pkg:npm/%40typescript-eslint/parser@8.59.2",
1290
+ "licenses": [
1291
+ {
1292
+ "license": {
1293
+ "id": "MIT"
1294
+ }
1295
+ }
1296
+ ]
1297
+ },
1298
+ {
1299
+ "type": "library",
1300
+ "bom-ref": "pkg:npm/%40typescript-eslint/project-service@8.59.2",
1301
+ "name": "@typescript-eslint/project-service",
1302
+ "version": "8.59.2",
1303
+ "purl": "pkg:npm/%40typescript-eslint/project-service@8.59.2",
1304
+ "licenses": [
1305
+ {
1306
+ "license": {
1307
+ "id": "MIT"
1308
+ }
1309
+ }
1310
+ ]
1311
+ },
1312
+ {
1313
+ "type": "library",
1314
+ "bom-ref": "pkg:npm/%40typescript-eslint/scope-manager@8.59.2",
1315
+ "name": "@typescript-eslint/scope-manager",
1316
+ "version": "8.59.2",
1317
+ "purl": "pkg:npm/%40typescript-eslint/scope-manager@8.59.2",
1318
+ "licenses": [
1319
+ {
1320
+ "license": {
1321
+ "id": "MIT"
1322
+ }
1323
+ }
1324
+ ]
1325
+ },
1326
+ {
1327
+ "type": "library",
1328
+ "bom-ref": "pkg:npm/%40typescript-eslint/tsconfig-utils@8.59.2",
1329
+ "name": "@typescript-eslint/tsconfig-utils",
1330
+ "version": "8.59.2",
1331
+ "purl": "pkg:npm/%40typescript-eslint/tsconfig-utils@8.59.2",
1332
+ "licenses": [
1333
+ {
1334
+ "license": {
1335
+ "id": "MIT"
1336
+ }
1337
+ }
1338
+ ]
1339
+ },
1340
+ {
1341
+ "type": "library",
1342
+ "bom-ref": "pkg:npm/%40typescript-eslint/type-utils@8.59.2",
1343
+ "name": "@typescript-eslint/type-utils",
1344
+ "version": "8.59.2",
1345
+ "purl": "pkg:npm/%40typescript-eslint/type-utils@8.59.2",
1346
+ "licenses": [
1347
+ {
1348
+ "license": {
1349
+ "id": "MIT"
1350
+ }
1351
+ }
1352
+ ]
1353
+ },
1354
+ {
1355
+ "type": "library",
1356
+ "bom-ref": "pkg:npm/%40typescript-eslint/types@8.59.2",
1357
+ "name": "@typescript-eslint/types",
1358
+ "version": "8.59.2",
1359
+ "purl": "pkg:npm/%40typescript-eslint/types@8.59.2",
1360
+ "licenses": [
1361
+ {
1362
+ "license": {
1363
+ "id": "MIT"
1364
+ }
1365
+ }
1366
+ ]
1367
+ },
1368
+ {
1369
+ "type": "library",
1370
+ "bom-ref": "pkg:npm/%40typescript-eslint/typescript-estree@8.59.2",
1371
+ "name": "@typescript-eslint/typescript-estree",
1372
+ "version": "8.59.2",
1373
+ "purl": "pkg:npm/%40typescript-eslint/typescript-estree@8.59.2",
1374
+ "licenses": [
1375
+ {
1376
+ "license": {
1377
+ "id": "MIT"
1378
+ }
1379
+ }
1380
+ ]
1381
+ },
1382
+ {
1383
+ "type": "library",
1384
+ "bom-ref": "pkg:npm/%40typescript-eslint/utils@8.59.2",
1385
+ "name": "@typescript-eslint/utils",
1386
+ "version": "8.59.2",
1387
+ "purl": "pkg:npm/%40typescript-eslint/utils@8.59.2",
1388
+ "licenses": [
1389
+ {
1390
+ "license": {
1391
+ "id": "MIT"
1392
+ }
1393
+ }
1394
+ ]
1395
+ },
1396
+ {
1397
+ "type": "library",
1398
+ "bom-ref": "pkg:npm/%40typescript-eslint/visitor-keys@8.59.2",
1399
+ "name": "@typescript-eslint/visitor-keys",
1400
+ "version": "8.59.2",
1401
+ "purl": "pkg:npm/%40typescript-eslint/visitor-keys@8.59.2",
1402
+ "licenses": [
1403
+ {
1404
+ "license": {
1405
+ "id": "MIT"
1406
+ }
1407
+ }
1408
+ ]
1409
+ },
1410
+ {
1411
+ "type": "library",
1412
+ "bom-ref": "pkg:npm/%40vitest/expect@3.2.4",
1413
+ "name": "@vitest/expect",
1414
+ "version": "3.2.4",
1415
+ "purl": "pkg:npm/%40vitest/expect@3.2.4",
1416
+ "licenses": [
1417
+ {
1418
+ "license": {
1419
+ "id": "MIT"
1420
+ }
1421
+ }
1422
+ ]
1423
+ },
1424
+ {
1425
+ "type": "library",
1426
+ "bom-ref": "pkg:npm/%40vitest/mocker@3.2.4",
1427
+ "name": "@vitest/mocker",
1428
+ "version": "3.2.4",
1429
+ "purl": "pkg:npm/%40vitest/mocker@3.2.4",
1430
+ "licenses": [
1431
+ {
1432
+ "license": {
1433
+ "id": "MIT"
1434
+ }
1435
+ }
1436
+ ]
1437
+ },
1438
+ {
1439
+ "type": "library",
1440
+ "bom-ref": "pkg:npm/%40vitest/pretty-format@3.2.4",
1441
+ "name": "@vitest/pretty-format",
1442
+ "version": "3.2.4",
1443
+ "purl": "pkg:npm/%40vitest/pretty-format@3.2.4",
1444
+ "licenses": [
1445
+ {
1446
+ "license": {
1447
+ "id": "MIT"
1448
+ }
1449
+ }
1450
+ ]
1451
+ },
1452
+ {
1453
+ "type": "library",
1454
+ "bom-ref": "pkg:npm/%40vitest/runner@3.2.4",
1455
+ "name": "@vitest/runner",
1456
+ "version": "3.2.4",
1457
+ "purl": "pkg:npm/%40vitest/runner@3.2.4",
1458
+ "licenses": [
1459
+ {
1460
+ "license": {
1461
+ "id": "MIT"
1462
+ }
1463
+ }
1464
+ ]
1465
+ },
1466
+ {
1467
+ "type": "library",
1468
+ "bom-ref": "pkg:npm/%40vitest/snapshot@3.2.4",
1469
+ "name": "@vitest/snapshot",
1470
+ "version": "3.2.4",
1471
+ "purl": "pkg:npm/%40vitest/snapshot@3.2.4",
1472
+ "licenses": [
1473
+ {
1474
+ "license": {
1475
+ "id": "MIT"
1476
+ }
1477
+ }
1478
+ ]
1479
+ },
1480
+ {
1481
+ "type": "library",
1482
+ "bom-ref": "pkg:npm/%40vitest/spy@3.2.4",
1483
+ "name": "@vitest/spy",
1484
+ "version": "3.2.4",
1485
+ "purl": "pkg:npm/%40vitest/spy@3.2.4",
1486
+ "licenses": [
1487
+ {
1488
+ "license": {
1489
+ "id": "MIT"
1490
+ }
1491
+ }
1492
+ ]
1493
+ },
1494
+ {
1495
+ "type": "library",
1496
+ "bom-ref": "pkg:npm/%40vitest/utils@3.2.4",
1497
+ "name": "@vitest/utils",
1498
+ "version": "3.2.4",
1499
+ "purl": "pkg:npm/%40vitest/utils@3.2.4",
1500
+ "licenses": [
1501
+ {
1502
+ "license": {
1503
+ "id": "MIT"
1504
+ }
1505
+ }
1506
+ ]
1507
+ },
1508
+ {
1509
+ "type": "library",
1510
+ "bom-ref": "pkg:npm/%40xenova/transformers@2.17.2",
1511
+ "name": "@xenova/transformers",
1512
+ "version": "2.17.2",
1513
+ "purl": "pkg:npm/%40xenova/transformers@2.17.2",
1514
+ "licenses": [
1515
+ {
1516
+ "license": {
1517
+ "id": "Apache-2.0"
1518
+ }
1519
+ }
1520
+ ]
1521
+ },
1522
+ {
1523
+ "type": "library",
1524
+ "bom-ref": "pkg:npm/acorn-jsx@5.3.2",
1525
+ "name": "acorn-jsx",
1526
+ "version": "5.3.2",
1527
+ "purl": "pkg:npm/acorn-jsx@5.3.2",
1528
+ "licenses": [
1529
+ {
1530
+ "license": {
1531
+ "id": "MIT"
1532
+ }
1533
+ }
1534
+ ]
1535
+ },
1536
+ {
1537
+ "type": "library",
1538
+ "bom-ref": "pkg:npm/acorn@8.16.0",
1539
+ "name": "acorn",
1540
+ "version": "8.16.0",
1541
+ "purl": "pkg:npm/acorn@8.16.0",
1542
+ "licenses": [
1543
+ {
1544
+ "license": {
1545
+ "id": "MIT"
1546
+ }
1547
+ }
1548
+ ]
1549
+ },
1550
+ {
1551
+ "type": "library",
1552
+ "bom-ref": "pkg:npm/ajv@6.15.0",
1553
+ "name": "ajv",
1554
+ "version": "6.15.0",
1555
+ "purl": "pkg:npm/ajv@6.15.0",
1556
+ "licenses": [
1557
+ {
1558
+ "license": {
1559
+ "id": "MIT"
1560
+ }
1561
+ }
1562
+ ]
1563
+ },
1564
+ {
1565
+ "type": "library",
1566
+ "bom-ref": "pkg:npm/ansi-regex@6.2.2",
1567
+ "name": "ansi-regex",
1568
+ "version": "6.2.2",
1569
+ "purl": "pkg:npm/ansi-regex@6.2.2",
1570
+ "licenses": [
1571
+ {
1572
+ "license": {
1573
+ "id": "MIT"
1574
+ }
1575
+ }
1576
+ ]
1577
+ },
1578
+ {
1579
+ "type": "library",
1580
+ "bom-ref": "pkg:npm/assertion-error@2.0.1",
1581
+ "name": "assertion-error",
1582
+ "version": "2.0.1",
1583
+ "purl": "pkg:npm/assertion-error@2.0.1",
1584
+ "licenses": [
1585
+ {
1586
+ "license": {
1587
+ "id": "MIT"
1588
+ }
1589
+ }
1590
+ ]
1591
+ },
1592
+ {
1593
+ "type": "library",
1594
+ "bom-ref": "pkg:npm/b4a@1.8.1",
1595
+ "name": "b4a",
1596
+ "version": "1.8.1",
1597
+ "purl": "pkg:npm/b4a@1.8.1",
1598
+ "licenses": [
1599
+ {
1600
+ "license": {
1601
+ "id": "Apache-2.0"
1602
+ }
1603
+ }
1604
+ ]
1605
+ },
1606
+ {
1607
+ "type": "library",
1608
+ "bom-ref": "pkg:npm/balanced-match@4.0.4",
1609
+ "name": "balanced-match",
1610
+ "version": "4.0.4",
1611
+ "purl": "pkg:npm/balanced-match@4.0.4",
1612
+ "licenses": [
1613
+ {
1614
+ "license": {
1615
+ "id": "MIT"
1616
+ }
1617
+ }
1618
+ ]
1619
+ },
1620
+ {
1621
+ "type": "library",
1622
+ "bom-ref": "pkg:npm/bare-events@2.8.2",
1623
+ "name": "bare-events",
1624
+ "version": "2.8.2",
1625
+ "purl": "pkg:npm/bare-events@2.8.2",
1626
+ "licenses": [
1627
+ {
1628
+ "license": {
1629
+ "id": "Apache-2.0"
1630
+ }
1631
+ }
1632
+ ]
1633
+ },
1634
+ {
1635
+ "type": "library",
1636
+ "bom-ref": "pkg:npm/bare-fs@4.7.1",
1637
+ "name": "bare-fs",
1638
+ "version": "4.7.1",
1639
+ "purl": "pkg:npm/bare-fs@4.7.1",
1640
+ "licenses": [
1641
+ {
1642
+ "license": {
1643
+ "id": "Apache-2.0"
1644
+ }
1645
+ }
1646
+ ]
1647
+ },
1648
+ {
1649
+ "type": "library",
1650
+ "bom-ref": "pkg:npm/bare-os@3.9.1",
1651
+ "name": "bare-os",
1652
+ "version": "3.9.1",
1653
+ "purl": "pkg:npm/bare-os@3.9.1",
1654
+ "licenses": [
1655
+ {
1656
+ "license": {
1657
+ "id": "Apache-2.0"
1658
+ }
1659
+ }
1660
+ ]
1661
+ },
1662
+ {
1663
+ "type": "library",
1664
+ "bom-ref": "pkg:npm/bare-path@3.0.0",
1665
+ "name": "bare-path",
1666
+ "version": "3.0.0",
1667
+ "purl": "pkg:npm/bare-path@3.0.0",
1668
+ "licenses": [
1669
+ {
1670
+ "license": {
1671
+ "id": "Apache-2.0"
1672
+ }
1673
+ }
1674
+ ]
1675
+ },
1676
+ {
1677
+ "type": "library",
1678
+ "bom-ref": "pkg:npm/bare-stream@2.13.1",
1679
+ "name": "bare-stream",
1680
+ "version": "2.13.1",
1681
+ "purl": "pkg:npm/bare-stream@2.13.1",
1682
+ "licenses": [
1683
+ {
1684
+ "license": {
1685
+ "id": "Apache-2.0"
1686
+ }
1687
+ }
1688
+ ]
1689
+ },
1690
+ {
1691
+ "type": "library",
1692
+ "bom-ref": "pkg:npm/bare-url@2.4.3",
1693
+ "name": "bare-url",
1694
+ "version": "2.4.3",
1695
+ "purl": "pkg:npm/bare-url@2.4.3",
1696
+ "licenses": [
1697
+ {
1698
+ "license": {
1699
+ "id": "Apache-2.0"
1700
+ }
1701
+ }
1702
+ ]
1703
+ },
1704
+ {
1705
+ "type": "library",
1706
+ "bom-ref": "pkg:npm/base64-js@1.5.1",
1707
+ "name": "base64-js",
1708
+ "version": "1.5.1",
1709
+ "purl": "pkg:npm/base64-js@1.5.1",
1710
+ "licenses": [
1711
+ {
1712
+ "license": {
1713
+ "id": "MIT"
1714
+ }
1715
+ }
1716
+ ]
1717
+ },
1718
+ {
1719
+ "type": "library",
1720
+ "bom-ref": "pkg:npm/bl@4.1.0",
1721
+ "name": "bl",
1722
+ "version": "4.1.0",
1723
+ "purl": "pkg:npm/bl@4.1.0",
1724
+ "licenses": [
1725
+ {
1726
+ "license": {
1727
+ "id": "MIT"
1728
+ }
1729
+ }
1730
+ ]
1731
+ },
1732
+ {
1733
+ "type": "library",
1734
+ "bom-ref": "pkg:npm/brace-expansion@5.0.6",
1735
+ "name": "brace-expansion",
1736
+ "version": "5.0.6",
1737
+ "purl": "pkg:npm/brace-expansion@5.0.6",
1738
+ "licenses": [
1739
+ {
1740
+ "license": {
1741
+ "id": "MIT"
1742
+ }
1743
+ }
1744
+ ]
1745
+ },
1746
+ {
1747
+ "type": "library",
1748
+ "bom-ref": "pkg:npm/braces@3.0.3",
1749
+ "name": "braces",
1750
+ "version": "3.0.3",
1751
+ "purl": "pkg:npm/braces@3.0.3",
1752
+ "licenses": [
1753
+ {
1754
+ "license": {
1755
+ "id": "MIT"
1756
+ }
1757
+ }
1758
+ ]
1759
+ },
1760
+ {
1761
+ "type": "library",
1762
+ "bom-ref": "pkg:npm/buffer@5.7.1",
1763
+ "name": "buffer",
1764
+ "version": "5.7.1",
1765
+ "purl": "pkg:npm/buffer@5.7.1",
1766
+ "licenses": [
1767
+ {
1768
+ "license": {
1769
+ "id": "MIT"
1770
+ }
1771
+ }
1772
+ ]
1773
+ },
1774
+ {
1775
+ "type": "library",
1776
+ "bom-ref": "pkg:npm/cac@6.7.14",
1777
+ "name": "cac",
1778
+ "version": "6.7.14",
1779
+ "purl": "pkg:npm/cac@6.7.14",
1780
+ "licenses": [
1781
+ {
1782
+ "license": {
1783
+ "id": "MIT"
1784
+ }
1785
+ }
1786
+ ]
1787
+ },
1788
+ {
1789
+ "type": "library",
1790
+ "bom-ref": "pkg:npm/chai@5.3.3",
1791
+ "name": "chai",
1792
+ "version": "5.3.3",
1793
+ "purl": "pkg:npm/chai@5.3.3",
1794
+ "licenses": [
1795
+ {
1796
+ "license": {
1797
+ "id": "MIT"
1798
+ }
1799
+ }
1800
+ ]
1801
+ },
1802
+ {
1803
+ "type": "library",
1804
+ "bom-ref": "pkg:npm/chalk@5.6.2",
1805
+ "name": "chalk",
1806
+ "version": "5.6.2",
1807
+ "purl": "pkg:npm/chalk@5.6.2",
1808
+ "licenses": [
1809
+ {
1810
+ "license": {
1811
+ "id": "MIT"
1812
+ }
1813
+ }
1814
+ ]
1815
+ },
1816
+ {
1817
+ "type": "library",
1818
+ "bom-ref": "pkg:npm/check-error@2.1.3",
1819
+ "name": "check-error",
1820
+ "version": "2.1.3",
1821
+ "purl": "pkg:npm/check-error@2.1.3",
1822
+ "licenses": [
1823
+ {
1824
+ "license": {
1825
+ "id": "MIT"
1826
+ }
1827
+ }
1828
+ ]
1829
+ },
1830
+ {
1831
+ "type": "library",
1832
+ "bom-ref": "pkg:npm/chownr@1.1.4",
1833
+ "name": "chownr",
1834
+ "version": "1.1.4",
1835
+ "purl": "pkg:npm/chownr@1.1.4",
1836
+ "licenses": [
1837
+ {
1838
+ "license": {
1839
+ "id": "ISC"
1840
+ }
1841
+ }
1842
+ ]
1843
+ },
1844
+ {
1845
+ "type": "library",
1846
+ "bom-ref": "pkg:npm/cli-cursor@5.0.0",
1847
+ "name": "cli-cursor",
1848
+ "version": "5.0.0",
1849
+ "purl": "pkg:npm/cli-cursor@5.0.0",
1850
+ "licenses": [
1851
+ {
1852
+ "license": {
1853
+ "id": "MIT"
1854
+ }
1855
+ }
1856
+ ]
1857
+ },
1858
+ {
1859
+ "type": "library",
1860
+ "bom-ref": "pkg:npm/cli-spinners@2.9.2",
1861
+ "name": "cli-spinners",
1862
+ "version": "2.9.2",
1863
+ "purl": "pkg:npm/cli-spinners@2.9.2",
1864
+ "licenses": [
1865
+ {
1866
+ "license": {
1867
+ "id": "MIT"
1868
+ }
1869
+ }
1870
+ ]
1871
+ },
1872
+ {
1873
+ "type": "library",
1874
+ "bom-ref": "pkg:npm/color-convert@2.0.1",
1875
+ "name": "color-convert",
1876
+ "version": "2.0.1",
1877
+ "purl": "pkg:npm/color-convert@2.0.1",
1878
+ "licenses": [
1879
+ {
1880
+ "license": {
1881
+ "id": "MIT"
1882
+ }
1883
+ }
1884
+ ]
1885
+ },
1886
+ {
1887
+ "type": "library",
1888
+ "bom-ref": "pkg:npm/color-name@1.1.4",
1889
+ "name": "color-name",
1890
+ "version": "1.1.4",
1891
+ "purl": "pkg:npm/color-name@1.1.4",
1892
+ "licenses": [
1893
+ {
1894
+ "license": {
1895
+ "id": "MIT"
1896
+ }
1897
+ }
1898
+ ]
1899
+ },
1900
+ {
1901
+ "type": "library",
1902
+ "bom-ref": "pkg:npm/color-string@1.9.1",
1903
+ "name": "color-string",
1904
+ "version": "1.9.1",
1905
+ "purl": "pkg:npm/color-string@1.9.1",
1906
+ "licenses": [
1907
+ {
1908
+ "license": {
1909
+ "id": "MIT"
1910
+ }
1911
+ }
1912
+ ]
1913
+ },
1914
+ {
1915
+ "type": "library",
1916
+ "bom-ref": "pkg:npm/color@4.2.3",
1917
+ "name": "color",
1918
+ "version": "4.2.3",
1919
+ "purl": "pkg:npm/color@4.2.3",
1920
+ "licenses": [
1921
+ {
1922
+ "license": {
1923
+ "id": "MIT"
1924
+ }
1925
+ }
1926
+ ]
1927
+ },
1928
+ {
1929
+ "type": "library",
1930
+ "bom-ref": "pkg:npm/commander@12.1.0",
1931
+ "name": "commander",
1932
+ "version": "12.1.0",
1933
+ "purl": "pkg:npm/commander@12.1.0",
1934
+ "licenses": [
1935
+ {
1936
+ "license": {
1937
+ "id": "MIT"
1938
+ }
1939
+ }
1940
+ ]
1941
+ },
1942
+ {
1943
+ "type": "library",
1944
+ "bom-ref": "pkg:npm/cross-spawn@7.0.6",
1945
+ "name": "cross-spawn",
1946
+ "version": "7.0.6",
1947
+ "purl": "pkg:npm/cross-spawn@7.0.6",
1948
+ "licenses": [
1949
+ {
1950
+ "license": {
1951
+ "id": "MIT"
1952
+ }
1953
+ }
1954
+ ]
1955
+ },
1956
+ {
1957
+ "type": "library",
1958
+ "bom-ref": "pkg:npm/debug@4.4.3",
1959
+ "name": "debug",
1960
+ "version": "4.4.3",
1961
+ "purl": "pkg:npm/debug@4.4.3",
1962
+ "licenses": [
1963
+ {
1964
+ "license": {
1965
+ "id": "MIT"
1966
+ }
1967
+ }
1968
+ ]
1969
+ },
1970
+ {
1971
+ "type": "library",
1972
+ "bom-ref": "pkg:npm/decompress-response@6.0.0",
1973
+ "name": "decompress-response",
1974
+ "version": "6.0.0",
1975
+ "purl": "pkg:npm/decompress-response@6.0.0",
1976
+ "licenses": [
1977
+ {
1978
+ "license": {
1979
+ "id": "MIT"
1980
+ }
1981
+ }
1982
+ ]
1983
+ },
1984
+ {
1985
+ "type": "library",
1986
+ "bom-ref": "pkg:npm/deep-eql@5.0.2",
1987
+ "name": "deep-eql",
1988
+ "version": "5.0.2",
1989
+ "purl": "pkg:npm/deep-eql@5.0.2",
1990
+ "licenses": [
1991
+ {
1992
+ "license": {
1993
+ "id": "MIT"
1994
+ }
1995
+ }
1996
+ ]
1997
+ },
1998
+ {
1999
+ "type": "library",
2000
+ "bom-ref": "pkg:npm/deep-extend@0.6.0",
2001
+ "name": "deep-extend",
2002
+ "version": "0.6.0",
2003
+ "purl": "pkg:npm/deep-extend@0.6.0",
2004
+ "licenses": [
2005
+ {
2006
+ "license": {
2007
+ "id": "MIT"
2008
+ }
2009
+ }
2010
+ ]
2011
+ },
2012
+ {
2013
+ "type": "library",
2014
+ "bom-ref": "pkg:npm/deep-is@0.1.4",
2015
+ "name": "deep-is",
2016
+ "version": "0.1.4",
2017
+ "purl": "pkg:npm/deep-is@0.1.4",
2018
+ "licenses": [
2019
+ {
2020
+ "license": {
2021
+ "id": "MIT"
2022
+ }
2023
+ }
2024
+ ]
2025
+ },
2026
+ {
2027
+ "type": "library",
2028
+ "bom-ref": "pkg:npm/detect-libc@2.1.2",
2029
+ "name": "detect-libc",
2030
+ "version": "2.1.2",
2031
+ "purl": "pkg:npm/detect-libc@2.1.2",
2032
+ "licenses": [
2033
+ {
2034
+ "license": {
2035
+ "id": "Apache-2.0"
2036
+ }
2037
+ }
2038
+ ]
2039
+ },
2040
+ {
2041
+ "type": "library",
2042
+ "bom-ref": "pkg:npm/emoji-regex@10.6.0",
2043
+ "name": "emoji-regex",
2044
+ "version": "10.6.0",
2045
+ "purl": "pkg:npm/emoji-regex@10.6.0",
2046
+ "licenses": [
2047
+ {
2048
+ "license": {
2049
+ "id": "MIT"
2050
+ }
2051
+ }
2052
+ ]
2053
+ },
2054
+ {
2055
+ "type": "library",
2056
+ "bom-ref": "pkg:npm/end-of-stream@1.4.5",
2057
+ "name": "end-of-stream",
2058
+ "version": "1.4.5",
2059
+ "purl": "pkg:npm/end-of-stream@1.4.5",
2060
+ "licenses": [
2061
+ {
2062
+ "license": {
2063
+ "id": "MIT"
2064
+ }
2065
+ }
2066
+ ]
2067
+ },
2068
+ {
2069
+ "type": "library",
2070
+ "bom-ref": "pkg:npm/es-module-lexer@1.7.0",
2071
+ "name": "es-module-lexer",
2072
+ "version": "1.7.0",
2073
+ "purl": "pkg:npm/es-module-lexer@1.7.0",
2074
+ "licenses": [
2075
+ {
2076
+ "license": {
2077
+ "id": "MIT"
2078
+ }
2079
+ }
2080
+ ]
2081
+ },
2082
+ {
2083
+ "type": "library",
2084
+ "bom-ref": "pkg:npm/esbuild@0.25.12",
2085
+ "name": "esbuild",
2086
+ "version": "0.25.12",
2087
+ "purl": "pkg:npm/esbuild@0.25.12",
2088
+ "licenses": [
2089
+ {
2090
+ "license": {
2091
+ "id": "MIT"
2092
+ }
2093
+ }
2094
+ ]
2095
+ },
2096
+ {
2097
+ "type": "library",
2098
+ "bom-ref": "pkg:npm/escape-string-regexp@4.0.0",
2099
+ "name": "escape-string-regexp",
2100
+ "version": "4.0.0",
2101
+ "purl": "pkg:npm/escape-string-regexp@4.0.0",
2102
+ "licenses": [
2103
+ {
2104
+ "license": {
2105
+ "id": "MIT"
2106
+ }
2107
+ }
2108
+ ]
2109
+ },
2110
+ {
2111
+ "type": "library",
2112
+ "bom-ref": "pkg:npm/eslint-scope@9.1.2",
2113
+ "name": "eslint-scope",
2114
+ "version": "9.1.2",
2115
+ "purl": "pkg:npm/eslint-scope@9.1.2",
2116
+ "licenses": [
2117
+ {
2118
+ "license": {
2119
+ "id": "BSD-2-Clause"
2120
+ }
2121
+ }
2122
+ ]
2123
+ },
2124
+ {
2125
+ "type": "library",
2126
+ "bom-ref": "pkg:npm/eslint-visitor-keys@3.4.3",
2127
+ "name": "eslint-visitor-keys",
2128
+ "version": "3.4.3",
2129
+ "purl": "pkg:npm/eslint-visitor-keys@3.4.3",
2130
+ "licenses": [
2131
+ {
2132
+ "license": {
2133
+ "id": "Apache-2.0"
2134
+ }
2135
+ }
2136
+ ]
2137
+ },
2138
+ {
2139
+ "type": "library",
2140
+ "bom-ref": "pkg:npm/eslint-visitor-keys@5.0.1",
2141
+ "name": "eslint-visitor-keys",
2142
+ "version": "5.0.1",
2143
+ "purl": "pkg:npm/eslint-visitor-keys@5.0.1",
2144
+ "licenses": [
2145
+ {
2146
+ "license": {
2147
+ "id": "Apache-2.0"
2148
+ }
2149
+ }
2150
+ ]
2151
+ },
2152
+ {
2153
+ "type": "library",
2154
+ "bom-ref": "pkg:npm/eslint@10.3.0",
2155
+ "name": "eslint",
2156
+ "version": "10.3.0",
2157
+ "purl": "pkg:npm/eslint@10.3.0",
2158
+ "licenses": [
2159
+ {
2160
+ "license": {
2161
+ "id": "MIT"
2162
+ }
2163
+ }
2164
+ ]
2165
+ },
2166
+ {
2167
+ "type": "library",
2168
+ "bom-ref": "pkg:npm/espree@11.2.0",
2169
+ "name": "espree",
2170
+ "version": "11.2.0",
2171
+ "purl": "pkg:npm/espree@11.2.0",
2172
+ "licenses": [
2173
+ {
2174
+ "license": {
2175
+ "id": "BSD-2-Clause"
2176
+ }
2177
+ }
2178
+ ]
2179
+ },
2180
+ {
2181
+ "type": "library",
2182
+ "bom-ref": "pkg:npm/esquery@1.7.0",
2183
+ "name": "esquery",
2184
+ "version": "1.7.0",
2185
+ "purl": "pkg:npm/esquery@1.7.0",
2186
+ "licenses": [
2187
+ {
2188
+ "license": {
2189
+ "id": "BSD-3-Clause"
2190
+ }
2191
+ }
2192
+ ]
2193
+ },
2194
+ {
2195
+ "type": "library",
2196
+ "bom-ref": "pkg:npm/esrecurse@4.3.0",
2197
+ "name": "esrecurse",
2198
+ "version": "4.3.0",
2199
+ "purl": "pkg:npm/esrecurse@4.3.0",
2200
+ "licenses": [
2201
+ {
2202
+ "license": {
2203
+ "id": "BSD-2-Clause"
2204
+ }
2205
+ }
2206
+ ]
2207
+ },
2208
+ {
2209
+ "type": "library",
2210
+ "bom-ref": "pkg:npm/estraverse@5.3.0",
2211
+ "name": "estraverse",
2212
+ "version": "5.3.0",
2213
+ "purl": "pkg:npm/estraverse@5.3.0",
2214
+ "licenses": [
2215
+ {
2216
+ "license": {
2217
+ "id": "BSD-2-Clause"
2218
+ }
2219
+ }
2220
+ ]
2221
+ },
2222
+ {
2223
+ "type": "library",
2224
+ "bom-ref": "pkg:npm/estree-walker@3.0.3",
2225
+ "name": "estree-walker",
2226
+ "version": "3.0.3",
2227
+ "purl": "pkg:npm/estree-walker@3.0.3",
2228
+ "licenses": [
2229
+ {
2230
+ "license": {
2231
+ "id": "MIT"
2232
+ }
2233
+ }
2234
+ ]
2235
+ },
2236
+ {
2237
+ "type": "library",
2238
+ "bom-ref": "pkg:npm/esutils@2.0.3",
2239
+ "name": "esutils",
2240
+ "version": "2.0.3",
2241
+ "purl": "pkg:npm/esutils@2.0.3",
2242
+ "licenses": [
2243
+ {
2244
+ "license": {
2245
+ "id": "BSD-2-Clause"
2246
+ }
2247
+ }
2248
+ ]
2249
+ },
2250
+ {
2251
+ "type": "library",
2252
+ "bom-ref": "pkg:npm/events-universal@1.0.1",
2253
+ "name": "events-universal",
2254
+ "version": "1.0.1",
2255
+ "purl": "pkg:npm/events-universal@1.0.1",
2256
+ "licenses": [
2257
+ {
2258
+ "license": {
2259
+ "id": "Apache-2.0"
2260
+ }
2261
+ }
2262
+ ]
2263
+ },
2264
+ {
2265
+ "type": "library",
2266
+ "bom-ref": "pkg:npm/expand-template@2.0.3",
2267
+ "name": "expand-template",
2268
+ "version": "2.0.3",
2269
+ "purl": "pkg:npm/expand-template@2.0.3",
2270
+ "licenses": [
2271
+ {
2272
+ "license": {
2273
+ "id": "(MIT OR WTFPL)"
2274
+ }
2275
+ }
2276
+ ]
2277
+ },
2278
+ {
2279
+ "type": "library",
2280
+ "bom-ref": "pkg:npm/expect-type@1.3.0",
2281
+ "name": "expect-type",
2282
+ "version": "1.3.0",
2283
+ "purl": "pkg:npm/expect-type@1.3.0",
2284
+ "licenses": [
2285
+ {
2286
+ "license": {
2287
+ "id": "Apache-2.0"
2288
+ }
2289
+ }
2290
+ ]
2291
+ },
2292
+ {
2293
+ "type": "library",
2294
+ "bom-ref": "pkg:npm/fast-deep-equal@3.1.3",
2295
+ "name": "fast-deep-equal",
2296
+ "version": "3.1.3",
2297
+ "purl": "pkg:npm/fast-deep-equal@3.1.3",
2298
+ "licenses": [
2299
+ {
2300
+ "license": {
2301
+ "id": "MIT"
2302
+ }
2303
+ }
2304
+ ]
2305
+ },
2306
+ {
2307
+ "type": "library",
2308
+ "bom-ref": "pkg:npm/fast-fifo@1.3.2",
2309
+ "name": "fast-fifo",
2310
+ "version": "1.3.2",
2311
+ "purl": "pkg:npm/fast-fifo@1.3.2",
2312
+ "licenses": [
2313
+ {
2314
+ "license": {
2315
+ "id": "MIT"
2316
+ }
2317
+ }
2318
+ ]
2319
+ },
2320
+ {
2321
+ "type": "library",
2322
+ "bom-ref": "pkg:npm/fast-glob@3.3.3",
2323
+ "name": "fast-glob",
2324
+ "version": "3.3.3",
2325
+ "purl": "pkg:npm/fast-glob@3.3.3",
2326
+ "licenses": [
2327
+ {
2328
+ "license": {
2329
+ "id": "MIT"
2330
+ }
2331
+ }
2332
+ ]
2333
+ },
2334
+ {
2335
+ "type": "library",
2336
+ "bom-ref": "pkg:npm/fast-json-stable-stringify@2.1.0",
2337
+ "name": "fast-json-stable-stringify",
2338
+ "version": "2.1.0",
2339
+ "purl": "pkg:npm/fast-json-stable-stringify@2.1.0",
2340
+ "licenses": [
2341
+ {
2342
+ "license": {
2343
+ "id": "MIT"
2344
+ }
2345
+ }
2346
+ ]
2347
+ },
2348
+ {
2349
+ "type": "library",
2350
+ "bom-ref": "pkg:npm/fast-levenshtein@2.0.6",
2351
+ "name": "fast-levenshtein",
2352
+ "version": "2.0.6",
2353
+ "purl": "pkg:npm/fast-levenshtein@2.0.6",
2354
+ "licenses": [
2355
+ {
2356
+ "license": {
2357
+ "id": "MIT"
2358
+ }
2359
+ }
2360
+ ]
2361
+ },
2362
+ {
2363
+ "type": "library",
2364
+ "bom-ref": "pkg:npm/fastq@1.20.1",
2365
+ "name": "fastq",
2366
+ "version": "1.20.1",
2367
+ "purl": "pkg:npm/fastq@1.20.1",
2368
+ "licenses": [
2369
+ {
2370
+ "license": {
2371
+ "id": "ISC"
2372
+ }
2373
+ }
2374
+ ]
2375
+ },
2376
+ {
2377
+ "type": "library",
2378
+ "bom-ref": "pkg:npm/fdir@6.5.0",
2379
+ "name": "fdir",
2380
+ "version": "6.5.0",
2381
+ "purl": "pkg:npm/fdir@6.5.0",
2382
+ "licenses": [
2383
+ {
2384
+ "license": {
2385
+ "id": "MIT"
2386
+ }
2387
+ }
2388
+ ]
2389
+ },
2390
+ {
2391
+ "type": "library",
2392
+ "bom-ref": "pkg:npm/file-entry-cache@8.0.0",
2393
+ "name": "file-entry-cache",
2394
+ "version": "8.0.0",
2395
+ "purl": "pkg:npm/file-entry-cache@8.0.0",
2396
+ "licenses": [
2397
+ {
2398
+ "license": {
2399
+ "id": "MIT"
2400
+ }
2401
+ }
2402
+ ]
2403
+ },
2404
+ {
2405
+ "type": "library",
2406
+ "bom-ref": "pkg:npm/fill-range@7.1.1",
2407
+ "name": "fill-range",
2408
+ "version": "7.1.1",
2409
+ "purl": "pkg:npm/fill-range@7.1.1",
2410
+ "licenses": [
2411
+ {
2412
+ "license": {
2413
+ "id": "MIT"
2414
+ }
2415
+ }
2416
+ ]
2417
+ },
2418
+ {
2419
+ "type": "library",
2420
+ "bom-ref": "pkg:npm/find-up@5.0.0",
2421
+ "name": "find-up",
2422
+ "version": "5.0.0",
2423
+ "purl": "pkg:npm/find-up@5.0.0",
2424
+ "licenses": [
2425
+ {
2426
+ "license": {
2427
+ "id": "MIT"
2428
+ }
2429
+ }
2430
+ ]
2431
+ },
2432
+ {
2433
+ "type": "library",
2434
+ "bom-ref": "pkg:npm/flat-cache@4.0.1",
2435
+ "name": "flat-cache",
2436
+ "version": "4.0.1",
2437
+ "purl": "pkg:npm/flat-cache@4.0.1",
2438
+ "licenses": [
2439
+ {
2440
+ "license": {
2441
+ "id": "MIT"
2442
+ }
2443
+ }
2444
+ ]
2445
+ },
2446
+ {
2447
+ "type": "library",
2448
+ "bom-ref": "pkg:npm/flatbuffers@1.12.0",
2449
+ "name": "flatbuffers",
2450
+ "version": "1.12.0",
2451
+ "purl": "pkg:npm/flatbuffers@1.12.0",
2452
+ "licenses": [
2453
+ {
2454
+ "license": {
2455
+ "id": "SEE LICENSE IN LICENSE.txt"
2456
+ }
2457
+ }
2458
+ ]
2459
+ },
2460
+ {
2461
+ "type": "library",
2462
+ "bom-ref": "pkg:npm/flatted@3.4.2",
2463
+ "name": "flatted",
2464
+ "version": "3.4.2",
2465
+ "purl": "pkg:npm/flatted@3.4.2",
2466
+ "licenses": [
2467
+ {
2468
+ "license": {
2469
+ "id": "ISC"
2470
+ }
2471
+ }
2472
+ ]
2473
+ },
2474
+ {
2475
+ "type": "library",
2476
+ "bom-ref": "pkg:npm/fs-constants@1.0.0",
2477
+ "name": "fs-constants",
2478
+ "version": "1.0.0",
2479
+ "purl": "pkg:npm/fs-constants@1.0.0",
2480
+ "licenses": [
2481
+ {
2482
+ "license": {
2483
+ "id": "MIT"
2484
+ }
2485
+ }
2486
+ ]
2487
+ },
2488
+ {
2489
+ "type": "library",
2490
+ "bom-ref": "pkg:npm/fsevents@2.3.3",
2491
+ "name": "fsevents",
2492
+ "version": "2.3.3",
2493
+ "purl": "pkg:npm/fsevents@2.3.3",
2494
+ "licenses": [
2495
+ {
2496
+ "license": {
2497
+ "id": "MIT"
2498
+ }
2499
+ }
2500
+ ]
2501
+ },
2502
+ {
2503
+ "type": "library",
2504
+ "bom-ref": "pkg:npm/get-east-asian-width@1.5.0",
2505
+ "name": "get-east-asian-width",
2506
+ "version": "1.5.0",
2507
+ "purl": "pkg:npm/get-east-asian-width@1.5.0",
2508
+ "licenses": [
2509
+ {
2510
+ "license": {
2511
+ "id": "MIT"
2512
+ }
2513
+ }
2514
+ ]
2515
+ },
2516
+ {
2517
+ "type": "library",
2518
+ "bom-ref": "pkg:npm/github-from-package@0.0.0",
2519
+ "name": "github-from-package",
2520
+ "version": "0.0.0",
2521
+ "purl": "pkg:npm/github-from-package@0.0.0",
2522
+ "licenses": [
2523
+ {
2524
+ "license": {
2525
+ "id": "MIT"
2526
+ }
2527
+ }
2528
+ ]
2529
+ },
2530
+ {
2531
+ "type": "library",
2532
+ "bom-ref": "pkg:npm/glob-parent@5.1.2",
2533
+ "name": "glob-parent",
2534
+ "version": "5.1.2",
2535
+ "purl": "pkg:npm/glob-parent@5.1.2",
2536
+ "licenses": [
2537
+ {
2538
+ "license": {
2539
+ "id": "ISC"
2540
+ }
2541
+ }
2542
+ ]
2543
+ },
2544
+ {
2545
+ "type": "library",
2546
+ "bom-ref": "pkg:npm/glob-parent@6.0.2",
2547
+ "name": "glob-parent",
2548
+ "version": "6.0.2",
2549
+ "purl": "pkg:npm/glob-parent@6.0.2",
2550
+ "licenses": [
2551
+ {
2552
+ "license": {
2553
+ "id": "ISC"
2554
+ }
2555
+ }
2556
+ ]
2557
+ },
2558
+ {
2559
+ "type": "library",
2560
+ "bom-ref": "pkg:npm/guid-typescript@1.0.9",
2561
+ "name": "guid-typescript",
2562
+ "version": "1.0.9",
2563
+ "purl": "pkg:npm/guid-typescript@1.0.9",
2564
+ "licenses": [
2565
+ {
2566
+ "license": {
2567
+ "id": "ISC"
2568
+ }
2569
+ }
2570
+ ]
2571
+ },
2572
+ {
2573
+ "type": "library",
2574
+ "bom-ref": "pkg:npm/ieee754@1.2.1",
2575
+ "name": "ieee754",
2576
+ "version": "1.2.1",
2577
+ "purl": "pkg:npm/ieee754@1.2.1",
2578
+ "licenses": [
2579
+ {
2580
+ "license": {
2581
+ "id": "BSD-3-Clause"
2582
+ }
2583
+ }
2584
+ ]
2585
+ },
2586
+ {
2587
+ "type": "library",
2588
+ "bom-ref": "pkg:npm/ignore@5.3.2",
2589
+ "name": "ignore",
2590
+ "version": "5.3.2",
2591
+ "purl": "pkg:npm/ignore@5.3.2",
2592
+ "licenses": [
2593
+ {
2594
+ "license": {
2595
+ "id": "MIT"
2596
+ }
2597
+ }
2598
+ ]
2599
+ },
2600
+ {
2601
+ "type": "library",
2602
+ "bom-ref": "pkg:npm/ignore@7.0.5",
2603
+ "name": "ignore",
2604
+ "version": "7.0.5",
2605
+ "purl": "pkg:npm/ignore@7.0.5",
2606
+ "licenses": [
2607
+ {
2608
+ "license": {
2609
+ "id": "MIT"
2610
+ }
2611
+ }
2612
+ ]
2613
+ },
2614
+ {
2615
+ "type": "library",
2616
+ "bom-ref": "pkg:npm/imurmurhash@0.1.4",
2617
+ "name": "imurmurhash",
2618
+ "version": "0.1.4",
2619
+ "purl": "pkg:npm/imurmurhash@0.1.4",
2620
+ "licenses": [
2621
+ {
2622
+ "license": {
2623
+ "id": "MIT"
2624
+ }
2625
+ }
2626
+ ]
2627
+ },
2628
+ {
2629
+ "type": "library",
2630
+ "bom-ref": "pkg:npm/inherits@2.0.4",
2631
+ "name": "inherits",
2632
+ "version": "2.0.4",
2633
+ "purl": "pkg:npm/inherits@2.0.4",
2634
+ "licenses": [
2635
+ {
2636
+ "license": {
2637
+ "id": "ISC"
2638
+ }
2639
+ }
2640
+ ]
2641
+ },
2642
+ {
2643
+ "type": "library",
2644
+ "bom-ref": "pkg:npm/ini@1.3.8",
2645
+ "name": "ini",
2646
+ "version": "1.3.8",
2647
+ "purl": "pkg:npm/ini@1.3.8",
2648
+ "licenses": [
2649
+ {
2650
+ "license": {
2651
+ "id": "ISC"
2652
+ }
2653
+ }
2654
+ ]
2655
+ },
2656
+ {
2657
+ "type": "library",
2658
+ "bom-ref": "pkg:npm/is-arrayish@0.3.4",
2659
+ "name": "is-arrayish",
2660
+ "version": "0.3.4",
2661
+ "purl": "pkg:npm/is-arrayish@0.3.4",
2662
+ "licenses": [
2663
+ {
2664
+ "license": {
2665
+ "id": "MIT"
2666
+ }
2667
+ }
2668
+ ]
2669
+ },
2670
+ {
2671
+ "type": "library",
2672
+ "bom-ref": "pkg:npm/is-extglob@2.1.1",
2673
+ "name": "is-extglob",
2674
+ "version": "2.1.1",
2675
+ "purl": "pkg:npm/is-extglob@2.1.1",
2676
+ "licenses": [
2677
+ {
2678
+ "license": {
2679
+ "id": "MIT"
2680
+ }
2681
+ }
2682
+ ]
2683
+ },
2684
+ {
2685
+ "type": "library",
2686
+ "bom-ref": "pkg:npm/is-glob@4.0.3",
2687
+ "name": "is-glob",
2688
+ "version": "4.0.3",
2689
+ "purl": "pkg:npm/is-glob@4.0.3",
2690
+ "licenses": [
2691
+ {
2692
+ "license": {
2693
+ "id": "MIT"
2694
+ }
2695
+ }
2696
+ ]
2697
+ },
2698
+ {
2699
+ "type": "library",
2700
+ "bom-ref": "pkg:npm/is-interactive@2.0.0",
2701
+ "name": "is-interactive",
2702
+ "version": "2.0.0",
2703
+ "purl": "pkg:npm/is-interactive@2.0.0",
2704
+ "licenses": [
2705
+ {
2706
+ "license": {
2707
+ "id": "MIT"
2708
+ }
2709
+ }
2710
+ ]
2711
+ },
2712
+ {
2713
+ "type": "library",
2714
+ "bom-ref": "pkg:npm/is-number@7.0.0",
2715
+ "name": "is-number",
2716
+ "version": "7.0.0",
2717
+ "purl": "pkg:npm/is-number@7.0.0",
2718
+ "licenses": [
2719
+ {
2720
+ "license": {
2721
+ "id": "MIT"
2722
+ }
2723
+ }
2724
+ ]
2725
+ },
2726
+ {
2727
+ "type": "library",
2728
+ "bom-ref": "pkg:npm/is-unicode-supported@1.3.0",
2729
+ "name": "is-unicode-supported",
2730
+ "version": "1.3.0",
2731
+ "purl": "pkg:npm/is-unicode-supported@1.3.0",
2732
+ "licenses": [
2733
+ {
2734
+ "license": {
2735
+ "id": "MIT"
2736
+ }
2737
+ }
2738
+ ]
2739
+ },
2740
+ {
2741
+ "type": "library",
2742
+ "bom-ref": "pkg:npm/is-unicode-supported@2.1.0",
2743
+ "name": "is-unicode-supported",
2744
+ "version": "2.1.0",
2745
+ "purl": "pkg:npm/is-unicode-supported@2.1.0",
2746
+ "licenses": [
2747
+ {
2748
+ "license": {
2749
+ "id": "MIT"
2750
+ }
2751
+ }
2752
+ ]
2753
+ },
2754
+ {
2755
+ "type": "library",
2756
+ "bom-ref": "pkg:npm/isexe@2.0.0",
2757
+ "name": "isexe",
2758
+ "version": "2.0.0",
2759
+ "purl": "pkg:npm/isexe@2.0.0",
2760
+ "licenses": [
2761
+ {
2762
+ "license": {
2763
+ "id": "ISC"
2764
+ }
2765
+ }
2766
+ ]
2767
+ },
2768
+ {
2769
+ "type": "library",
2770
+ "bom-ref": "pkg:npm/js-tokens@9.0.1",
2771
+ "name": "js-tokens",
2772
+ "version": "9.0.1",
2773
+ "purl": "pkg:npm/js-tokens@9.0.1",
2774
+ "licenses": [
2775
+ {
2776
+ "license": {
2777
+ "id": "MIT"
2778
+ }
2779
+ }
2780
+ ]
2781
+ },
2782
+ {
2783
+ "type": "library",
2784
+ "bom-ref": "pkg:npm/json-buffer@3.0.1",
2785
+ "name": "json-buffer",
2786
+ "version": "3.0.1",
2787
+ "purl": "pkg:npm/json-buffer@3.0.1",
2788
+ "licenses": [
2789
+ {
2790
+ "license": {
2791
+ "id": "MIT"
2792
+ }
2793
+ }
2794
+ ]
2795
+ },
2796
+ {
2797
+ "type": "library",
2798
+ "bom-ref": "pkg:npm/json-schema-traverse@0.4.1",
2799
+ "name": "json-schema-traverse",
2800
+ "version": "0.4.1",
2801
+ "purl": "pkg:npm/json-schema-traverse@0.4.1",
2802
+ "licenses": [
2803
+ {
2804
+ "license": {
2805
+ "id": "MIT"
2806
+ }
2807
+ }
2808
+ ]
2809
+ },
2810
+ {
2811
+ "type": "library",
2812
+ "bom-ref": "pkg:npm/json-stable-stringify-without-jsonify@1.0.1",
2813
+ "name": "json-stable-stringify-without-jsonify",
2814
+ "version": "1.0.1",
2815
+ "purl": "pkg:npm/json-stable-stringify-without-jsonify@1.0.1",
2816
+ "licenses": [
2817
+ {
2818
+ "license": {
2819
+ "id": "MIT"
2820
+ }
2821
+ }
2822
+ ]
2823
+ },
2824
+ {
2825
+ "type": "library",
2826
+ "bom-ref": "pkg:npm/keyv@4.5.4",
2827
+ "name": "keyv",
2828
+ "version": "4.5.4",
2829
+ "purl": "pkg:npm/keyv@4.5.4",
2830
+ "licenses": [
2831
+ {
2832
+ "license": {
2833
+ "id": "MIT"
2834
+ }
2835
+ }
2836
+ ]
2837
+ },
2838
+ {
2839
+ "type": "library",
2840
+ "bom-ref": "pkg:npm/levn@0.4.1",
2841
+ "name": "levn",
2842
+ "version": "0.4.1",
2843
+ "purl": "pkg:npm/levn@0.4.1",
2844
+ "licenses": [
2845
+ {
2846
+ "license": {
2847
+ "id": "MIT"
2848
+ }
2849
+ }
2850
+ ]
2851
+ },
2852
+ {
2853
+ "type": "library",
2854
+ "bom-ref": "pkg:npm/locate-path@6.0.0",
2855
+ "name": "locate-path",
2856
+ "version": "6.0.0",
2857
+ "purl": "pkg:npm/locate-path@6.0.0",
2858
+ "licenses": [
2859
+ {
2860
+ "license": {
2861
+ "id": "MIT"
2862
+ }
2863
+ }
2864
+ ]
2865
+ },
2866
+ {
2867
+ "type": "library",
2868
+ "bom-ref": "pkg:npm/log-symbols@6.0.0",
2869
+ "name": "log-symbols",
2870
+ "version": "6.0.0",
2871
+ "purl": "pkg:npm/log-symbols@6.0.0",
2872
+ "licenses": [
2873
+ {
2874
+ "license": {
2875
+ "id": "MIT"
2876
+ }
2877
+ }
2878
+ ]
2879
+ },
2880
+ {
2881
+ "type": "library",
2882
+ "bom-ref": "pkg:npm/long@4.0.0",
2883
+ "name": "long",
2884
+ "version": "4.0.0",
2885
+ "purl": "pkg:npm/long@4.0.0",
2886
+ "licenses": [
2887
+ {
2888
+ "license": {
2889
+ "id": "Apache-2.0"
2890
+ }
2891
+ }
2892
+ ]
2893
+ },
2894
+ {
2895
+ "type": "library",
2896
+ "bom-ref": "pkg:npm/long@5.3.2",
2897
+ "name": "long",
2898
+ "version": "5.3.2",
2899
+ "purl": "pkg:npm/long@5.3.2",
2900
+ "licenses": [
2901
+ {
2902
+ "license": {
2903
+ "id": "Apache-2.0"
2904
+ }
2905
+ }
2906
+ ]
2907
+ },
2908
+ {
2909
+ "type": "library",
2910
+ "bom-ref": "pkg:npm/loupe@3.2.1",
2911
+ "name": "loupe",
2912
+ "version": "3.2.1",
2913
+ "purl": "pkg:npm/loupe@3.2.1",
2914
+ "licenses": [
2915
+ {
2916
+ "license": {
2917
+ "id": "MIT"
2918
+ }
2919
+ }
2920
+ ]
2921
+ },
2922
+ {
2923
+ "type": "library",
2924
+ "bom-ref": "pkg:npm/magic-string@0.30.21",
2925
+ "name": "magic-string",
2926
+ "version": "0.30.21",
2927
+ "purl": "pkg:npm/magic-string@0.30.21",
2928
+ "licenses": [
2929
+ {
2930
+ "license": {
2931
+ "id": "MIT"
2932
+ }
2933
+ }
2934
+ ]
2935
+ },
2936
+ {
2937
+ "type": "library",
2938
+ "bom-ref": "pkg:npm/merge2@1.4.1",
2939
+ "name": "merge2",
2940
+ "version": "1.4.1",
2941
+ "purl": "pkg:npm/merge2@1.4.1",
2942
+ "licenses": [
2943
+ {
2944
+ "license": {
2945
+ "id": "MIT"
2946
+ }
2947
+ }
2948
+ ]
2949
+ },
2950
+ {
2951
+ "type": "library",
2952
+ "bom-ref": "pkg:npm/micromatch@4.0.8",
2953
+ "name": "micromatch",
2954
+ "version": "4.0.8",
2955
+ "purl": "pkg:npm/micromatch@4.0.8",
2956
+ "licenses": [
2957
+ {
2958
+ "license": {
2959
+ "id": "MIT"
2960
+ }
2961
+ }
2962
+ ]
2963
+ },
2964
+ {
2965
+ "type": "library",
2966
+ "bom-ref": "pkg:npm/mimic-function@5.0.1",
2967
+ "name": "mimic-function",
2968
+ "version": "5.0.1",
2969
+ "purl": "pkg:npm/mimic-function@5.0.1",
2970
+ "licenses": [
2971
+ {
2972
+ "license": {
2973
+ "id": "MIT"
2974
+ }
2975
+ }
2976
+ ]
2977
+ },
2978
+ {
2979
+ "type": "library",
2980
+ "bom-ref": "pkg:npm/mimic-response@3.1.0",
2981
+ "name": "mimic-response",
2982
+ "version": "3.1.0",
2983
+ "purl": "pkg:npm/mimic-response@3.1.0",
2984
+ "licenses": [
2985
+ {
2986
+ "license": {
2987
+ "id": "MIT"
2988
+ }
2989
+ }
2990
+ ]
2991
+ },
2992
+ {
2993
+ "type": "library",
2994
+ "bom-ref": "pkg:npm/minimatch@10.2.5",
2995
+ "name": "minimatch",
2996
+ "version": "10.2.5",
2997
+ "purl": "pkg:npm/minimatch@10.2.5",
2998
+ "licenses": [
2999
+ {
3000
+ "license": {
3001
+ "id": "BlueOak-1.0.0"
3002
+ }
3003
+ }
3004
+ ]
3005
+ },
3006
+ {
3007
+ "type": "library",
3008
+ "bom-ref": "pkg:npm/minimist@1.2.8",
3009
+ "name": "minimist",
3010
+ "version": "1.2.8",
3011
+ "purl": "pkg:npm/minimist@1.2.8",
3012
+ "licenses": [
3013
+ {
3014
+ "license": {
3015
+ "id": "MIT"
3016
+ }
3017
+ }
3018
+ ]
3019
+ },
3020
+ {
3021
+ "type": "library",
3022
+ "bom-ref": "pkg:npm/mkdirp-classic@0.5.3",
3023
+ "name": "mkdirp-classic",
3024
+ "version": "0.5.3",
3025
+ "purl": "pkg:npm/mkdirp-classic@0.5.3",
3026
+ "licenses": [
3027
+ {
3028
+ "license": {
3029
+ "id": "MIT"
3030
+ }
3031
+ }
3032
+ ]
3033
+ },
3034
+ {
3035
+ "type": "library",
3036
+ "bom-ref": "pkg:npm/ms@2.1.3",
3037
+ "name": "ms",
3038
+ "version": "2.1.3",
3039
+ "purl": "pkg:npm/ms@2.1.3",
3040
+ "licenses": [
3041
+ {
3042
+ "license": {
3043
+ "id": "MIT"
3044
+ }
3045
+ }
3046
+ ]
3047
+ },
3048
+ {
3049
+ "type": "library",
3050
+ "bom-ref": "pkg:npm/nanoid@3.3.12",
3051
+ "name": "nanoid",
3052
+ "version": "3.3.12",
3053
+ "purl": "pkg:npm/nanoid@3.3.12",
3054
+ "licenses": [
3055
+ {
3056
+ "license": {
3057
+ "id": "MIT"
3058
+ }
3059
+ }
3060
+ ]
3061
+ },
3062
+ {
3063
+ "type": "library",
3064
+ "bom-ref": "pkg:npm/napi-build-utils@2.0.0",
3065
+ "name": "napi-build-utils",
3066
+ "version": "2.0.0",
3067
+ "purl": "pkg:npm/napi-build-utils@2.0.0",
3068
+ "licenses": [
3069
+ {
3070
+ "license": {
3071
+ "id": "MIT"
3072
+ }
3073
+ }
3074
+ ]
3075
+ },
3076
+ {
3077
+ "type": "library",
3078
+ "bom-ref": "pkg:npm/natural-compare@1.4.0",
3079
+ "name": "natural-compare",
3080
+ "version": "1.4.0",
3081
+ "purl": "pkg:npm/natural-compare@1.4.0",
3082
+ "licenses": [
3083
+ {
3084
+ "license": {
3085
+ "id": "MIT"
3086
+ }
3087
+ }
3088
+ ]
3089
+ },
3090
+ {
3091
+ "type": "library",
3092
+ "bom-ref": "pkg:npm/node-abi@3.90.0",
3093
+ "name": "node-abi",
3094
+ "version": "3.90.0",
3095
+ "purl": "pkg:npm/node-abi@3.90.0",
3096
+ "licenses": [
3097
+ {
3098
+ "license": {
3099
+ "id": "MIT"
3100
+ }
3101
+ }
3102
+ ]
3103
+ },
3104
+ {
3105
+ "type": "library",
3106
+ "bom-ref": "pkg:npm/node-addon-api@6.1.0",
3107
+ "name": "node-addon-api",
3108
+ "version": "6.1.0",
3109
+ "purl": "pkg:npm/node-addon-api@6.1.0",
3110
+ "licenses": [
3111
+ {
3112
+ "license": {
3113
+ "id": "MIT"
3114
+ }
3115
+ }
3116
+ ]
3117
+ },
3118
+ {
3119
+ "type": "library",
3120
+ "bom-ref": "pkg:npm/node-addon-api@7.1.1",
3121
+ "name": "node-addon-api",
3122
+ "version": "7.1.1",
3123
+ "purl": "pkg:npm/node-addon-api@7.1.1",
3124
+ "licenses": [
3125
+ {
3126
+ "license": {
3127
+ "id": "MIT"
3128
+ }
3129
+ }
3130
+ ]
3131
+ },
3132
+ {
3133
+ "type": "library",
3134
+ "bom-ref": "pkg:npm/node-addon-api@8.7.0",
3135
+ "name": "node-addon-api",
3136
+ "version": "8.7.0",
3137
+ "purl": "pkg:npm/node-addon-api@8.7.0",
3138
+ "licenses": [
3139
+ {
3140
+ "license": {
3141
+ "id": "MIT"
3142
+ }
3143
+ }
3144
+ ]
3145
+ },
3146
+ {
3147
+ "type": "library",
3148
+ "bom-ref": "pkg:npm/node-addon-api@8.7.0",
3149
+ "name": "node-addon-api",
3150
+ "version": "8.7.0",
3151
+ "purl": "pkg:npm/node-addon-api@8.7.0",
3152
+ "licenses": [
3153
+ {
3154
+ "license": {
3155
+ "id": "MIT"
3156
+ }
3157
+ }
3158
+ ]
3159
+ },
3160
+ {
3161
+ "type": "library",
3162
+ "bom-ref": "pkg:npm/node-addon-api@8.7.0",
3163
+ "name": "node-addon-api",
3164
+ "version": "8.7.0",
3165
+ "purl": "pkg:npm/node-addon-api@8.7.0",
3166
+ "licenses": [
3167
+ {
3168
+ "license": {
3169
+ "id": "MIT"
3170
+ }
3171
+ }
3172
+ ]
3173
+ },
3174
+ {
3175
+ "type": "library",
3176
+ "bom-ref": "pkg:npm/node-addon-api@8.7.0",
3177
+ "name": "node-addon-api",
3178
+ "version": "8.7.0",
3179
+ "purl": "pkg:npm/node-addon-api@8.7.0",
3180
+ "licenses": [
3181
+ {
3182
+ "license": {
3183
+ "id": "MIT"
3184
+ }
3185
+ }
3186
+ ]
3187
+ },
3188
+ {
3189
+ "type": "library",
3190
+ "bom-ref": "pkg:npm/node-addon-api@8.7.0",
3191
+ "name": "node-addon-api",
3192
+ "version": "8.7.0",
3193
+ "purl": "pkg:npm/node-addon-api@8.7.0",
3194
+ "licenses": [
3195
+ {
3196
+ "license": {
3197
+ "id": "MIT"
3198
+ }
3199
+ }
3200
+ ]
3201
+ },
3202
+ {
3203
+ "type": "library",
3204
+ "bom-ref": "pkg:npm/node-addon-api@8.7.0",
3205
+ "name": "node-addon-api",
3206
+ "version": "8.7.0",
3207
+ "purl": "pkg:npm/node-addon-api@8.7.0",
3208
+ "licenses": [
3209
+ {
3210
+ "license": {
3211
+ "id": "MIT"
3212
+ }
3213
+ }
3214
+ ]
3215
+ },
3216
+ {
3217
+ "type": "library",
3218
+ "bom-ref": "pkg:npm/node-addon-api@8.7.0",
3219
+ "name": "node-addon-api",
3220
+ "version": "8.7.0",
3221
+ "purl": "pkg:npm/node-addon-api@8.7.0",
3222
+ "licenses": [
3223
+ {
3224
+ "license": {
3225
+ "id": "MIT"
3226
+ }
3227
+ }
3228
+ ]
3229
+ },
3230
+ {
3231
+ "type": "library",
3232
+ "bom-ref": "pkg:npm/node-addon-api@8.7.0",
3233
+ "name": "node-addon-api",
3234
+ "version": "8.7.0",
3235
+ "purl": "pkg:npm/node-addon-api@8.7.0",
3236
+ "licenses": [
3237
+ {
3238
+ "license": {
3239
+ "id": "MIT"
3240
+ }
3241
+ }
3242
+ ]
3243
+ },
3244
+ {
3245
+ "type": "library",
3246
+ "bom-ref": "pkg:npm/node-addon-api@8.7.0",
3247
+ "name": "node-addon-api",
3248
+ "version": "8.7.0",
3249
+ "purl": "pkg:npm/node-addon-api@8.7.0",
3250
+ "licenses": [
3251
+ {
3252
+ "license": {
3253
+ "id": "MIT"
3254
+ }
3255
+ }
3256
+ ]
3257
+ },
3258
+ {
3259
+ "type": "library",
3260
+ "bom-ref": "pkg:npm/node-addon-api@8.7.0",
3261
+ "name": "node-addon-api",
3262
+ "version": "8.7.0",
3263
+ "purl": "pkg:npm/node-addon-api@8.7.0",
3264
+ "licenses": [
3265
+ {
3266
+ "license": {
3267
+ "id": "MIT"
3268
+ }
3269
+ }
3270
+ ]
3271
+ },
3272
+ {
3273
+ "type": "library",
3274
+ "bom-ref": "pkg:npm/node-gyp-build@4.8.4",
3275
+ "name": "node-gyp-build",
3276
+ "version": "4.8.4",
3277
+ "purl": "pkg:npm/node-gyp-build@4.8.4",
3278
+ "licenses": [
3279
+ {
3280
+ "license": {
3281
+ "id": "MIT"
3282
+ }
3283
+ }
3284
+ ]
3285
+ },
3286
+ {
3287
+ "type": "library",
3288
+ "bom-ref": "pkg:npm/once@1.4.0",
3289
+ "name": "once",
3290
+ "version": "1.4.0",
3291
+ "purl": "pkg:npm/once@1.4.0",
3292
+ "licenses": [
3293
+ {
3294
+ "license": {
3295
+ "id": "ISC"
3296
+ }
3297
+ }
3298
+ ]
3299
+ },
3300
+ {
3301
+ "type": "library",
3302
+ "bom-ref": "pkg:npm/onetime@7.0.0",
3303
+ "name": "onetime",
3304
+ "version": "7.0.0",
3305
+ "purl": "pkg:npm/onetime@7.0.0",
3306
+ "licenses": [
3307
+ {
3308
+ "license": {
3309
+ "id": "MIT"
3310
+ }
3311
+ }
3312
+ ]
3313
+ },
3314
+ {
3315
+ "type": "library",
3316
+ "bom-ref": "pkg:npm/onnx-proto@4.0.4",
3317
+ "name": "onnx-proto",
3318
+ "version": "4.0.4",
3319
+ "purl": "pkg:npm/onnx-proto@4.0.4",
3320
+ "licenses": [
3321
+ {
3322
+ "license": {
3323
+ "id": "MIT"
3324
+ }
3325
+ }
3326
+ ]
3327
+ },
3328
+ {
3329
+ "type": "library",
3330
+ "bom-ref": "pkg:npm/onnxruntime-common@1.14.0",
3331
+ "name": "onnxruntime-common",
3332
+ "version": "1.14.0",
3333
+ "purl": "pkg:npm/onnxruntime-common@1.14.0",
3334
+ "licenses": [
3335
+ {
3336
+ "license": {
3337
+ "id": "MIT"
3338
+ }
3339
+ }
3340
+ ]
3341
+ },
3342
+ {
3343
+ "type": "library",
3344
+ "bom-ref": "pkg:npm/onnxruntime-node@1.14.0",
3345
+ "name": "onnxruntime-node",
3346
+ "version": "1.14.0",
3347
+ "purl": "pkg:npm/onnxruntime-node@1.14.0",
3348
+ "licenses": [
3349
+ {
3350
+ "license": {
3351
+ "id": "MIT"
3352
+ }
3353
+ }
3354
+ ]
3355
+ },
3356
+ {
3357
+ "type": "library",
3358
+ "bom-ref": "pkg:npm/onnxruntime-web@1.14.0",
3359
+ "name": "onnxruntime-web",
3360
+ "version": "1.14.0",
3361
+ "purl": "pkg:npm/onnxruntime-web@1.14.0",
3362
+ "licenses": [
3363
+ {
3364
+ "license": {
3365
+ "id": "MIT"
3366
+ }
3367
+ }
3368
+ ]
3369
+ },
3370
+ {
3371
+ "type": "library",
3372
+ "bom-ref": "pkg:npm/optionator@0.9.4",
3373
+ "name": "optionator",
3374
+ "version": "0.9.4",
3375
+ "purl": "pkg:npm/optionator@0.9.4",
3376
+ "licenses": [
3377
+ {
3378
+ "license": {
3379
+ "id": "MIT"
3380
+ }
3381
+ }
3382
+ ]
3383
+ },
3384
+ {
3385
+ "type": "library",
3386
+ "bom-ref": "pkg:npm/ora@8.2.0",
3387
+ "name": "ora",
3388
+ "version": "8.2.0",
3389
+ "purl": "pkg:npm/ora@8.2.0",
3390
+ "licenses": [
3391
+ {
3392
+ "license": {
3393
+ "id": "MIT"
3394
+ }
3395
+ }
3396
+ ]
3397
+ },
3398
+ {
3399
+ "type": "library",
3400
+ "bom-ref": "pkg:npm/p-limit@3.1.0",
3401
+ "name": "p-limit",
3402
+ "version": "3.1.0",
3403
+ "purl": "pkg:npm/p-limit@3.1.0",
3404
+ "licenses": [
3405
+ {
3406
+ "license": {
3407
+ "id": "MIT"
3408
+ }
3409
+ }
3410
+ ]
3411
+ },
3412
+ {
3413
+ "type": "library",
3414
+ "bom-ref": "pkg:npm/p-locate@5.0.0",
3415
+ "name": "p-locate",
3416
+ "version": "5.0.0",
3417
+ "purl": "pkg:npm/p-locate@5.0.0",
3418
+ "licenses": [
3419
+ {
3420
+ "license": {
3421
+ "id": "MIT"
3422
+ }
3423
+ }
3424
+ ]
3425
+ },
3426
+ {
3427
+ "type": "library",
3428
+ "bom-ref": "pkg:npm/path-exists@4.0.0",
3429
+ "name": "path-exists",
3430
+ "version": "4.0.0",
3431
+ "purl": "pkg:npm/path-exists@4.0.0",
3432
+ "licenses": [
3433
+ {
3434
+ "license": {
3435
+ "id": "MIT"
3436
+ }
3437
+ }
3438
+ ]
3439
+ },
3440
+ {
3441
+ "type": "library",
3442
+ "bom-ref": "pkg:npm/path-key@3.1.1",
3443
+ "name": "path-key",
3444
+ "version": "3.1.1",
3445
+ "purl": "pkg:npm/path-key@3.1.1",
3446
+ "licenses": [
3447
+ {
3448
+ "license": {
3449
+ "id": "MIT"
3450
+ }
3451
+ }
3452
+ ]
3453
+ },
3454
+ {
3455
+ "type": "library",
3456
+ "bom-ref": "pkg:npm/pathe@2.0.3",
3457
+ "name": "pathe",
3458
+ "version": "2.0.3",
3459
+ "purl": "pkg:npm/pathe@2.0.3",
3460
+ "licenses": [
3461
+ {
3462
+ "license": {
3463
+ "id": "MIT"
3464
+ }
3465
+ }
3466
+ ]
3467
+ },
3468
+ {
3469
+ "type": "library",
3470
+ "bom-ref": "pkg:npm/pathval@2.0.1",
3471
+ "name": "pathval",
3472
+ "version": "2.0.1",
3473
+ "purl": "pkg:npm/pathval@2.0.1",
3474
+ "licenses": [
3475
+ {
3476
+ "license": {
3477
+ "id": "MIT"
3478
+ }
3479
+ }
3480
+ ]
3481
+ },
3482
+ {
3483
+ "type": "library",
3484
+ "bom-ref": "pkg:npm/picocolors@1.1.1",
3485
+ "name": "picocolors",
3486
+ "version": "1.1.1",
3487
+ "purl": "pkg:npm/picocolors@1.1.1",
3488
+ "licenses": [
3489
+ {
3490
+ "license": {
3491
+ "id": "ISC"
3492
+ }
3493
+ }
3494
+ ]
3495
+ },
3496
+ {
3497
+ "type": "library",
3498
+ "bom-ref": "pkg:npm/picomatch@4.0.4",
3499
+ "name": "picomatch",
3500
+ "version": "4.0.4",
3501
+ "purl": "pkg:npm/picomatch@4.0.4",
3502
+ "licenses": [
3503
+ {
3504
+ "license": {
3505
+ "id": "MIT"
3506
+ }
3507
+ }
3508
+ ]
3509
+ },
3510
+ {
3511
+ "type": "library",
3512
+ "bom-ref": "pkg:npm/platform@1.3.6",
3513
+ "name": "platform",
3514
+ "version": "1.3.6",
3515
+ "purl": "pkg:npm/platform@1.3.6",
3516
+ "licenses": [
3517
+ {
3518
+ "license": {
3519
+ "id": "MIT"
3520
+ }
3521
+ }
3522
+ ]
3523
+ },
3524
+ {
3525
+ "type": "library",
3526
+ "bom-ref": "pkg:npm/postcss@8.5.14",
3527
+ "name": "postcss",
3528
+ "version": "8.5.14",
3529
+ "purl": "pkg:npm/postcss@8.5.14",
3530
+ "licenses": [
3531
+ {
3532
+ "license": {
3533
+ "id": "MIT"
3534
+ }
3535
+ }
3536
+ ]
3537
+ },
3538
+ {
3539
+ "type": "library",
3540
+ "bom-ref": "pkg:npm/prebuild-install@7.1.3",
3541
+ "name": "prebuild-install",
3542
+ "version": "7.1.3",
3543
+ "purl": "pkg:npm/prebuild-install@7.1.3",
3544
+ "licenses": [
3545
+ {
3546
+ "license": {
3547
+ "id": "MIT"
3548
+ }
3549
+ }
3550
+ ]
3551
+ },
3552
+ {
3553
+ "type": "library",
3554
+ "bom-ref": "pkg:npm/prelude-ls@1.2.1",
3555
+ "name": "prelude-ls",
3556
+ "version": "1.2.1",
3557
+ "purl": "pkg:npm/prelude-ls@1.2.1",
3558
+ "licenses": [
3559
+ {
3560
+ "license": {
3561
+ "id": "MIT"
3562
+ }
3563
+ }
3564
+ ]
3565
+ },
3566
+ {
3567
+ "type": "library",
3568
+ "bom-ref": "pkg:npm/protobufjs@7.6.0",
3569
+ "name": "protobufjs",
3570
+ "version": "7.6.0",
3571
+ "purl": "pkg:npm/protobufjs@7.6.0",
3572
+ "licenses": [
3573
+ {
3574
+ "license": {
3575
+ "id": "BSD-3-Clause"
3576
+ }
3577
+ }
3578
+ ]
3579
+ },
3580
+ {
3581
+ "type": "library",
3582
+ "bom-ref": "pkg:npm/pump@3.0.4",
3583
+ "name": "pump",
3584
+ "version": "3.0.4",
3585
+ "purl": "pkg:npm/pump@3.0.4",
3586
+ "licenses": [
3587
+ {
3588
+ "license": {
3589
+ "id": "MIT"
3590
+ }
3591
+ }
3592
+ ]
3593
+ },
3594
+ {
3595
+ "type": "library",
3596
+ "bom-ref": "pkg:npm/punycode@2.3.1",
3597
+ "name": "punycode",
3598
+ "version": "2.3.1",
3599
+ "purl": "pkg:npm/punycode@2.3.1",
3600
+ "licenses": [
3601
+ {
3602
+ "license": {
3603
+ "id": "MIT"
3604
+ }
3605
+ }
3606
+ ]
3607
+ },
3608
+ {
3609
+ "type": "library",
3610
+ "bom-ref": "pkg:npm/queue-microtask@1.2.3",
3611
+ "name": "queue-microtask",
3612
+ "version": "1.2.3",
3613
+ "purl": "pkg:npm/queue-microtask@1.2.3",
3614
+ "licenses": [
3615
+ {
3616
+ "license": {
3617
+ "id": "MIT"
3618
+ }
3619
+ }
3620
+ ]
3621
+ },
3622
+ {
3623
+ "type": "library",
3624
+ "bom-ref": "pkg:npm/rc@1.2.8",
3625
+ "name": "rc",
3626
+ "version": "1.2.8",
3627
+ "purl": "pkg:npm/rc@1.2.8",
3628
+ "licenses": [
3629
+ {
3630
+ "license": {
3631
+ "id": "(BSD-2-Clause OR MIT OR Apache-2.0)"
3632
+ }
3633
+ }
3634
+ ]
3635
+ },
3636
+ {
3637
+ "type": "library",
3638
+ "bom-ref": "pkg:npm/readable-stream@3.6.2",
3639
+ "name": "readable-stream",
3640
+ "version": "3.6.2",
3641
+ "purl": "pkg:npm/readable-stream@3.6.2",
3642
+ "licenses": [
3643
+ {
3644
+ "license": {
3645
+ "id": "MIT"
3646
+ }
3647
+ }
3648
+ ]
3649
+ },
3650
+ {
3651
+ "type": "library",
3652
+ "bom-ref": "pkg:npm/restore-cursor@5.1.0",
3653
+ "name": "restore-cursor",
3654
+ "version": "5.1.0",
3655
+ "purl": "pkg:npm/restore-cursor@5.1.0",
3656
+ "licenses": [
3657
+ {
3658
+ "license": {
3659
+ "id": "MIT"
3660
+ }
3661
+ }
3662
+ ]
3663
+ },
3664
+ {
3665
+ "type": "library",
3666
+ "bom-ref": "pkg:npm/reusify@1.1.0",
3667
+ "name": "reusify",
3668
+ "version": "1.1.0",
3669
+ "purl": "pkg:npm/reusify@1.1.0",
3670
+ "licenses": [
3671
+ {
3672
+ "license": {
3673
+ "id": "MIT"
3674
+ }
3675
+ }
3676
+ ]
3677
+ },
3678
+ {
3679
+ "type": "library",
3680
+ "bom-ref": "pkg:npm/rollup@4.60.3",
3681
+ "name": "rollup",
3682
+ "version": "4.60.3",
3683
+ "purl": "pkg:npm/rollup@4.60.3",
3684
+ "licenses": [
3685
+ {
3686
+ "license": {
3687
+ "id": "MIT"
3688
+ }
3689
+ }
3690
+ ]
3691
+ },
3692
+ {
3693
+ "type": "library",
3694
+ "bom-ref": "pkg:npm/run-parallel@1.2.0",
3695
+ "name": "run-parallel",
3696
+ "version": "1.2.0",
3697
+ "purl": "pkg:npm/run-parallel@1.2.0",
3698
+ "licenses": [
3699
+ {
3700
+ "license": {
3701
+ "id": "MIT"
3702
+ }
3703
+ }
3704
+ ]
3705
+ },
3706
+ {
3707
+ "type": "library",
3708
+ "bom-ref": "pkg:npm/safe-buffer@5.2.1",
3709
+ "name": "safe-buffer",
3710
+ "version": "5.2.1",
3711
+ "purl": "pkg:npm/safe-buffer@5.2.1",
3712
+ "licenses": [
3713
+ {
3714
+ "license": {
3715
+ "id": "MIT"
3716
+ }
3717
+ }
3718
+ ]
3719
+ },
3720
+ {
3721
+ "type": "library",
3722
+ "bom-ref": "pkg:npm/semver@7.7.4",
3723
+ "name": "semver",
3724
+ "version": "7.7.4",
3725
+ "purl": "pkg:npm/semver@7.7.4",
3726
+ "licenses": [
3727
+ {
3728
+ "license": {
3729
+ "id": "ISC"
3730
+ }
3731
+ }
3732
+ ]
3733
+ },
3734
+ {
3735
+ "type": "library",
3736
+ "bom-ref": "pkg:npm/sharp@0.32.6",
3737
+ "name": "sharp",
3738
+ "version": "0.32.6",
3739
+ "purl": "pkg:npm/sharp@0.32.6",
3740
+ "licenses": [
3741
+ {
3742
+ "license": {
3743
+ "id": "Apache-2.0"
3744
+ }
3745
+ }
3746
+ ]
3747
+ },
3748
+ {
3749
+ "type": "library",
3750
+ "bom-ref": "pkg:npm/shebang-command@2.0.0",
3751
+ "name": "shebang-command",
3752
+ "version": "2.0.0",
3753
+ "purl": "pkg:npm/shebang-command@2.0.0",
3754
+ "licenses": [
3755
+ {
3756
+ "license": {
3757
+ "id": "MIT"
3758
+ }
3759
+ }
3760
+ ]
3761
+ },
3762
+ {
3763
+ "type": "library",
3764
+ "bom-ref": "pkg:npm/shebang-regex@3.0.0",
3765
+ "name": "shebang-regex",
3766
+ "version": "3.0.0",
3767
+ "purl": "pkg:npm/shebang-regex@3.0.0",
3768
+ "licenses": [
3769
+ {
3770
+ "license": {
3771
+ "id": "MIT"
3772
+ }
3773
+ }
3774
+ ]
3775
+ },
3776
+ {
3777
+ "type": "library",
3778
+ "bom-ref": "pkg:npm/siginfo@2.0.0",
3779
+ "name": "siginfo",
3780
+ "version": "2.0.0",
3781
+ "purl": "pkg:npm/siginfo@2.0.0",
3782
+ "licenses": [
3783
+ {
3784
+ "license": {
3785
+ "id": "ISC"
3786
+ }
3787
+ }
3788
+ ]
3789
+ },
3790
+ {
3791
+ "type": "library",
3792
+ "bom-ref": "pkg:npm/signal-exit@4.1.0",
3793
+ "name": "signal-exit",
3794
+ "version": "4.1.0",
3795
+ "purl": "pkg:npm/signal-exit@4.1.0",
3796
+ "licenses": [
3797
+ {
3798
+ "license": {
3799
+ "id": "ISC"
3800
+ }
3801
+ }
3802
+ ]
3803
+ },
3804
+ {
3805
+ "type": "library",
3806
+ "bom-ref": "pkg:npm/simple-concat@1.0.1",
3807
+ "name": "simple-concat",
3808
+ "version": "1.0.1",
3809
+ "purl": "pkg:npm/simple-concat@1.0.1",
3810
+ "licenses": [
3811
+ {
3812
+ "license": {
3813
+ "id": "MIT"
3814
+ }
3815
+ }
3816
+ ]
3817
+ },
3818
+ {
3819
+ "type": "library",
3820
+ "bom-ref": "pkg:npm/simple-get@4.0.1",
3821
+ "name": "simple-get",
3822
+ "version": "4.0.1",
3823
+ "purl": "pkg:npm/simple-get@4.0.1",
3824
+ "licenses": [
3825
+ {
3826
+ "license": {
3827
+ "id": "MIT"
3828
+ }
3829
+ }
3830
+ ]
3831
+ },
3832
+ {
3833
+ "type": "library",
3834
+ "bom-ref": "pkg:npm/simple-swizzle@0.2.4",
3835
+ "name": "simple-swizzle",
3836
+ "version": "0.2.4",
3837
+ "purl": "pkg:npm/simple-swizzle@0.2.4",
3838
+ "licenses": [
3839
+ {
3840
+ "license": {
3841
+ "id": "MIT"
3842
+ }
3843
+ }
3844
+ ]
3845
+ },
3846
+ {
3847
+ "type": "library",
3848
+ "bom-ref": "pkg:npm/source-map-js@1.2.1",
3849
+ "name": "source-map-js",
3850
+ "version": "1.2.1",
3851
+ "purl": "pkg:npm/source-map-js@1.2.1",
3852
+ "licenses": [
3853
+ {
3854
+ "license": {
3855
+ "id": "BSD-3-Clause"
3856
+ }
3857
+ }
3858
+ ]
3859
+ },
3860
+ {
3861
+ "type": "library",
3862
+ "bom-ref": "pkg:npm/stackback@0.0.2",
3863
+ "name": "stackback",
3864
+ "version": "0.0.2",
3865
+ "purl": "pkg:npm/stackback@0.0.2",
3866
+ "licenses": [
3867
+ {
3868
+ "license": {
3869
+ "id": "MIT"
3870
+ }
3871
+ }
3872
+ ]
3873
+ },
3874
+ {
3875
+ "type": "library",
3876
+ "bom-ref": "pkg:npm/std-env@3.10.0",
3877
+ "name": "std-env",
3878
+ "version": "3.10.0",
3879
+ "purl": "pkg:npm/std-env@3.10.0",
3880
+ "licenses": [
3881
+ {
3882
+ "license": {
3883
+ "id": "MIT"
3884
+ }
3885
+ }
3886
+ ]
3887
+ },
3888
+ {
3889
+ "type": "library",
3890
+ "bom-ref": "pkg:npm/stdin-discarder@0.2.2",
3891
+ "name": "stdin-discarder",
3892
+ "version": "0.2.2",
3893
+ "purl": "pkg:npm/stdin-discarder@0.2.2",
3894
+ "licenses": [
3895
+ {
3896
+ "license": {
3897
+ "id": "MIT"
3898
+ }
3899
+ }
3900
+ ]
3901
+ },
3902
+ {
3903
+ "type": "library",
3904
+ "bom-ref": "pkg:npm/streamx@2.25.0",
3905
+ "name": "streamx",
3906
+ "version": "2.25.0",
3907
+ "purl": "pkg:npm/streamx@2.25.0",
3908
+ "licenses": [
3909
+ {
3910
+ "license": {
3911
+ "id": "MIT"
3912
+ }
3913
+ }
3914
+ ]
3915
+ },
3916
+ {
3917
+ "type": "library",
3918
+ "bom-ref": "pkg:npm/string_decoder@1.3.0",
3919
+ "name": "string_decoder",
3920
+ "version": "1.3.0",
3921
+ "purl": "pkg:npm/string_decoder@1.3.0",
3922
+ "licenses": [
3923
+ {
3924
+ "license": {
3925
+ "id": "MIT"
3926
+ }
3927
+ }
3928
+ ]
3929
+ },
3930
+ {
3931
+ "type": "library",
3932
+ "bom-ref": "pkg:npm/string-width@7.2.0",
3933
+ "name": "string-width",
3934
+ "version": "7.2.0",
3935
+ "purl": "pkg:npm/string-width@7.2.0",
3936
+ "licenses": [
3937
+ {
3938
+ "license": {
3939
+ "id": "MIT"
3940
+ }
3941
+ }
3942
+ ]
3943
+ },
3944
+ {
3945
+ "type": "library",
3946
+ "bom-ref": "pkg:npm/strip-ansi@7.2.0",
3947
+ "name": "strip-ansi",
3948
+ "version": "7.2.0",
3949
+ "purl": "pkg:npm/strip-ansi@7.2.0",
3950
+ "licenses": [
3951
+ {
3952
+ "license": {
3953
+ "id": "MIT"
3954
+ }
3955
+ }
3956
+ ]
3957
+ },
3958
+ {
3959
+ "type": "library",
3960
+ "bom-ref": "pkg:npm/strip-json-comments@2.0.1",
3961
+ "name": "strip-json-comments",
3962
+ "version": "2.0.1",
3963
+ "purl": "pkg:npm/strip-json-comments@2.0.1",
3964
+ "licenses": [
3965
+ {
3966
+ "license": {
3967
+ "id": "MIT"
3968
+ }
3969
+ }
3970
+ ]
3971
+ },
3972
+ {
3973
+ "type": "library",
3974
+ "bom-ref": "pkg:npm/strip-literal@3.1.0",
3975
+ "name": "strip-literal",
3976
+ "version": "3.1.0",
3977
+ "purl": "pkg:npm/strip-literal@3.1.0",
3978
+ "licenses": [
3979
+ {
3980
+ "license": {
3981
+ "id": "MIT"
3982
+ }
3983
+ }
3984
+ ]
3985
+ },
3986
+ {
3987
+ "type": "library",
3988
+ "bom-ref": "pkg:npm/tar-fs@2.1.4",
3989
+ "name": "tar-fs",
3990
+ "version": "2.1.4",
3991
+ "purl": "pkg:npm/tar-fs@2.1.4",
3992
+ "licenses": [
3993
+ {
3994
+ "license": {
3995
+ "id": "MIT"
3996
+ }
3997
+ }
3998
+ ]
3999
+ },
4000
+ {
4001
+ "type": "library",
4002
+ "bom-ref": "pkg:npm/tar-fs@3.1.2",
4003
+ "name": "tar-fs",
4004
+ "version": "3.1.2",
4005
+ "purl": "pkg:npm/tar-fs@3.1.2",
4006
+ "licenses": [
4007
+ {
4008
+ "license": {
4009
+ "id": "MIT"
4010
+ }
4011
+ }
4012
+ ]
4013
+ },
4014
+ {
4015
+ "type": "library",
4016
+ "bom-ref": "pkg:npm/tar-stream@2.2.0",
4017
+ "name": "tar-stream",
4018
+ "version": "2.2.0",
4019
+ "purl": "pkg:npm/tar-stream@2.2.0",
4020
+ "licenses": [
4021
+ {
4022
+ "license": {
4023
+ "id": "MIT"
4024
+ }
4025
+ }
4026
+ ]
4027
+ },
4028
+ {
4029
+ "type": "library",
4030
+ "bom-ref": "pkg:npm/tar-stream@3.2.0",
4031
+ "name": "tar-stream",
4032
+ "version": "3.2.0",
4033
+ "purl": "pkg:npm/tar-stream@3.2.0",
4034
+ "licenses": [
4035
+ {
4036
+ "license": {
4037
+ "id": "MIT"
4038
+ }
4039
+ }
4040
+ ]
4041
+ },
4042
+ {
4043
+ "type": "library",
4044
+ "bom-ref": "pkg:npm/teex@1.0.1",
4045
+ "name": "teex",
4046
+ "version": "1.0.1",
4047
+ "purl": "pkg:npm/teex@1.0.1",
4048
+ "licenses": [
4049
+ {
4050
+ "license": {
4051
+ "id": "MIT"
4052
+ }
4053
+ }
4054
+ ]
4055
+ },
4056
+ {
4057
+ "type": "library",
4058
+ "bom-ref": "pkg:npm/text-decoder@1.2.7",
4059
+ "name": "text-decoder",
4060
+ "version": "1.2.7",
4061
+ "purl": "pkg:npm/text-decoder@1.2.7",
4062
+ "licenses": [
4063
+ {
4064
+ "license": {
4065
+ "id": "Apache-2.0"
4066
+ }
4067
+ }
4068
+ ]
4069
+ },
4070
+ {
4071
+ "type": "library",
4072
+ "bom-ref": "pkg:npm/tinybench@2.9.0",
4073
+ "name": "tinybench",
4074
+ "version": "2.9.0",
4075
+ "purl": "pkg:npm/tinybench@2.9.0",
4076
+ "licenses": [
4077
+ {
4078
+ "license": {
4079
+ "id": "MIT"
4080
+ }
4081
+ }
4082
+ ]
4083
+ },
4084
+ {
4085
+ "type": "library",
4086
+ "bom-ref": "pkg:npm/tinyexec@0.3.2",
4087
+ "name": "tinyexec",
4088
+ "version": "0.3.2",
4089
+ "purl": "pkg:npm/tinyexec@0.3.2",
4090
+ "licenses": [
4091
+ {
4092
+ "license": {
4093
+ "id": "MIT"
4094
+ }
4095
+ }
4096
+ ]
4097
+ },
4098
+ {
4099
+ "type": "library",
4100
+ "bom-ref": "pkg:npm/tinyglobby@0.2.16",
4101
+ "name": "tinyglobby",
4102
+ "version": "0.2.16",
4103
+ "purl": "pkg:npm/tinyglobby@0.2.16",
4104
+ "licenses": [
4105
+ {
4106
+ "license": {
4107
+ "id": "MIT"
4108
+ }
4109
+ }
4110
+ ]
4111
+ },
4112
+ {
4113
+ "type": "library",
4114
+ "bom-ref": "pkg:npm/tinypool@1.1.1",
4115
+ "name": "tinypool",
4116
+ "version": "1.1.1",
4117
+ "purl": "pkg:npm/tinypool@1.1.1",
4118
+ "licenses": [
4119
+ {
4120
+ "license": {
4121
+ "id": "MIT"
4122
+ }
4123
+ }
4124
+ ]
4125
+ },
4126
+ {
4127
+ "type": "library",
4128
+ "bom-ref": "pkg:npm/tinyrainbow@2.0.0",
4129
+ "name": "tinyrainbow",
4130
+ "version": "2.0.0",
4131
+ "purl": "pkg:npm/tinyrainbow@2.0.0",
4132
+ "licenses": [
4133
+ {
4134
+ "license": {
4135
+ "id": "MIT"
4136
+ }
4137
+ }
4138
+ ]
4139
+ },
4140
+ {
4141
+ "type": "library",
4142
+ "bom-ref": "pkg:npm/tinyspy@4.0.4",
4143
+ "name": "tinyspy",
4144
+ "version": "4.0.4",
4145
+ "purl": "pkg:npm/tinyspy@4.0.4",
4146
+ "licenses": [
4147
+ {
4148
+ "license": {
4149
+ "id": "MIT"
4150
+ }
4151
+ }
4152
+ ]
4153
+ },
4154
+ {
4155
+ "type": "library",
4156
+ "bom-ref": "pkg:npm/to-regex-range@5.0.1",
4157
+ "name": "to-regex-range",
4158
+ "version": "5.0.1",
4159
+ "purl": "pkg:npm/to-regex-range@5.0.1",
4160
+ "licenses": [
4161
+ {
4162
+ "license": {
4163
+ "id": "MIT"
4164
+ }
4165
+ }
4166
+ ]
4167
+ },
4168
+ {
4169
+ "type": "library",
4170
+ "bom-ref": "pkg:npm/tree-sitter-c-sharp@0.23.5",
4171
+ "name": "tree-sitter-c-sharp",
4172
+ "version": "0.23.5",
4173
+ "purl": "pkg:npm/tree-sitter-c-sharp@0.23.5",
4174
+ "licenses": [
4175
+ {
4176
+ "license": {
4177
+ "id": "MIT"
4178
+ }
4179
+ }
4180
+ ]
4181
+ },
4182
+ {
4183
+ "type": "library",
4184
+ "bom-ref": "pkg:npm/tree-sitter-c@0.23.6",
4185
+ "name": "tree-sitter-c",
4186
+ "version": "0.23.6",
4187
+ "purl": "pkg:npm/tree-sitter-c@0.23.6",
4188
+ "licenses": [
4189
+ {
4190
+ "license": {
4191
+ "id": "MIT"
4192
+ }
4193
+ }
4194
+ ]
4195
+ },
4196
+ {
4197
+ "type": "library",
4198
+ "bom-ref": "pkg:npm/tree-sitter-cli@0.23.2",
4199
+ "name": "tree-sitter-cli",
4200
+ "version": "0.23.2",
4201
+ "purl": "pkg:npm/tree-sitter-cli@0.23.2",
4202
+ "licenses": [
4203
+ {
4204
+ "license": {
4205
+ "id": "MIT"
4206
+ }
4207
+ }
4208
+ ]
4209
+ },
4210
+ {
4211
+ "type": "library",
4212
+ "bom-ref": "pkg:npm/tree-sitter-cli@0.26.8",
4213
+ "name": "tree-sitter-cli",
4214
+ "version": "0.26.8",
4215
+ "purl": "pkg:npm/tree-sitter-cli@0.26.8",
4216
+ "licenses": [
4217
+ {
4218
+ "license": {
4219
+ "id": "MIT"
4220
+ }
4221
+ }
4222
+ ]
4223
+ },
4224
+ {
4225
+ "type": "library",
4226
+ "bom-ref": "pkg:npm/tree-sitter-cpp@0.23.4",
4227
+ "name": "tree-sitter-cpp",
4228
+ "version": "0.23.4",
4229
+ "purl": "pkg:npm/tree-sitter-cpp@0.23.4",
4230
+ "licenses": [
4231
+ {
4232
+ "license": {
4233
+ "id": "MIT"
4234
+ }
4235
+ }
4236
+ ]
4237
+ },
4238
+ {
4239
+ "type": "library",
4240
+ "bom-ref": "pkg:npm/tree-sitter-go@0.25.0",
4241
+ "name": "tree-sitter-go",
4242
+ "version": "0.25.0",
4243
+ "purl": "pkg:npm/tree-sitter-go@0.25.0",
4244
+ "licenses": [
4245
+ {
4246
+ "license": {
4247
+ "id": "MIT"
4248
+ }
4249
+ }
4250
+ ]
4251
+ },
4252
+ {
4253
+ "type": "library",
4254
+ "bom-ref": "pkg:npm/tree-sitter-java@0.23.5",
4255
+ "name": "tree-sitter-java",
4256
+ "version": "0.23.5",
4257
+ "purl": "pkg:npm/tree-sitter-java@0.23.5",
4258
+ "licenses": [
4259
+ {
4260
+ "license": {
4261
+ "id": "MIT"
4262
+ }
4263
+ }
4264
+ ]
4265
+ },
4266
+ {
4267
+ "type": "library",
4268
+ "bom-ref": "pkg:npm/tree-sitter-kotlin@0.3.8",
4269
+ "name": "tree-sitter-kotlin",
4270
+ "version": "0.3.8",
4271
+ "purl": "pkg:npm/tree-sitter-kotlin@0.3.8",
4272
+ "licenses": [
4273
+ {
4274
+ "license": {
4275
+ "id": "MIT"
4276
+ }
4277
+ }
4278
+ ]
4279
+ },
4280
+ {
4281
+ "type": "library",
4282
+ "bom-ref": "pkg:npm/tree-sitter-php@0.23.12",
4283
+ "name": "tree-sitter-php",
4284
+ "version": "0.23.12",
4285
+ "purl": "pkg:npm/tree-sitter-php@0.23.12",
4286
+ "licenses": [
4287
+ {
4288
+ "license": {
4289
+ "id": "MIT"
4290
+ }
4291
+ }
4292
+ ]
4293
+ },
4294
+ {
4295
+ "type": "library",
4296
+ "bom-ref": "pkg:npm/tree-sitter-python@0.25.0",
4297
+ "name": "tree-sitter-python",
4298
+ "version": "0.25.0",
4299
+ "purl": "pkg:npm/tree-sitter-python@0.25.0",
4300
+ "licenses": [
4301
+ {
4302
+ "license": {
4303
+ "id": "MIT"
4304
+ }
4305
+ }
4306
+ ]
4307
+ },
4308
+ {
4309
+ "type": "library",
4310
+ "bom-ref": "pkg:npm/tree-sitter-ruby@0.23.1",
4311
+ "name": "tree-sitter-ruby",
4312
+ "version": "0.23.1",
4313
+ "purl": "pkg:npm/tree-sitter-ruby@0.23.1",
4314
+ "licenses": [
4315
+ {
4316
+ "license": {
4317
+ "id": "MIT"
4318
+ }
4319
+ }
4320
+ ]
4321
+ },
4322
+ {
4323
+ "type": "library",
4324
+ "bom-ref": "pkg:npm/tree-sitter-rust@0.23.3",
4325
+ "name": "tree-sitter-rust",
4326
+ "version": "0.23.3",
4327
+ "purl": "pkg:npm/tree-sitter-rust@0.23.3",
4328
+ "licenses": [
4329
+ {
4330
+ "license": {
4331
+ "id": "MIT"
4332
+ }
4333
+ }
4334
+ ]
4335
+ },
4336
+ {
4337
+ "type": "library",
4338
+ "bom-ref": "pkg:npm/tree-sitter-swift@0.7.1",
4339
+ "name": "tree-sitter-swift",
4340
+ "version": "0.7.1",
4341
+ "purl": "pkg:npm/tree-sitter-swift@0.7.1",
4342
+ "licenses": [
4343
+ {
4344
+ "license": {
4345
+ "id": "MIT"
4346
+ }
4347
+ }
4348
+ ]
4349
+ },
4350
+ {
4351
+ "type": "library",
4352
+ "bom-ref": "pkg:npm/ts-api-utils@2.5.0",
4353
+ "name": "ts-api-utils",
4354
+ "version": "2.5.0",
4355
+ "purl": "pkg:npm/ts-api-utils@2.5.0",
4356
+ "licenses": [
4357
+ {
4358
+ "license": {
4359
+ "id": "MIT"
4360
+ }
4361
+ }
4362
+ ]
4363
+ },
4364
+ {
4365
+ "type": "library",
4366
+ "bom-ref": "pkg:npm/tunnel-agent@0.6.0",
4367
+ "name": "tunnel-agent",
4368
+ "version": "0.6.0",
4369
+ "purl": "pkg:npm/tunnel-agent@0.6.0",
4370
+ "licenses": [
4371
+ {
4372
+ "license": {
4373
+ "id": "Apache-2.0"
4374
+ }
4375
+ }
4376
+ ]
4377
+ },
4378
+ {
4379
+ "type": "library",
4380
+ "bom-ref": "pkg:npm/type-check@0.4.0",
4381
+ "name": "type-check",
4382
+ "version": "0.4.0",
4383
+ "purl": "pkg:npm/type-check@0.4.0",
4384
+ "licenses": [
4385
+ {
4386
+ "license": {
4387
+ "id": "MIT"
4388
+ }
4389
+ }
4390
+ ]
4391
+ },
4392
+ {
4393
+ "type": "library",
4394
+ "bom-ref": "pkg:npm/typescript-eslint@8.59.2",
4395
+ "name": "typescript-eslint",
4396
+ "version": "8.59.2",
4397
+ "purl": "pkg:npm/typescript-eslint@8.59.2",
4398
+ "licenses": [
4399
+ {
4400
+ "license": {
4401
+ "id": "MIT"
4402
+ }
4403
+ }
4404
+ ]
4405
+ },
4406
+ {
4407
+ "type": "library",
4408
+ "bom-ref": "pkg:npm/typescript@5.9.3",
4409
+ "name": "typescript",
4410
+ "version": "5.9.3",
4411
+ "purl": "pkg:npm/typescript@5.9.3",
4412
+ "licenses": [
4413
+ {
4414
+ "license": {
4415
+ "id": "Apache-2.0"
4416
+ }
4417
+ }
4418
+ ]
4419
+ },
4420
+ {
4421
+ "type": "library",
4422
+ "bom-ref": "pkg:npm/undici-types@6.21.0",
4423
+ "name": "undici-types",
4424
+ "version": "6.21.0",
4425
+ "purl": "pkg:npm/undici-types@6.21.0",
4426
+ "licenses": [
4427
+ {
4428
+ "license": {
4429
+ "id": "MIT"
4430
+ }
4431
+ }
4432
+ ]
4433
+ },
4434
+ {
4435
+ "type": "library",
4436
+ "bom-ref": "pkg:npm/uri-js@4.4.1",
4437
+ "name": "uri-js",
4438
+ "version": "4.4.1",
4439
+ "purl": "pkg:npm/uri-js@4.4.1",
4440
+ "licenses": [
4441
+ {
4442
+ "license": {
4443
+ "id": "BSD-2-Clause"
4444
+ }
4445
+ }
4446
+ ]
4447
+ },
4448
+ {
4449
+ "type": "library",
4450
+ "bom-ref": "pkg:npm/util-deprecate@1.0.2",
4451
+ "name": "util-deprecate",
4452
+ "version": "1.0.2",
4453
+ "purl": "pkg:npm/util-deprecate@1.0.2",
4454
+ "licenses": [
4455
+ {
4456
+ "license": {
4457
+ "id": "MIT"
4458
+ }
4459
+ }
4460
+ ]
4461
+ },
4462
+ {
4463
+ "type": "library",
4464
+ "bom-ref": "pkg:npm/vite-node@3.2.4",
4465
+ "name": "vite-node",
4466
+ "version": "3.2.4",
4467
+ "purl": "pkg:npm/vite-node@3.2.4",
4468
+ "licenses": [
4469
+ {
4470
+ "license": {
4471
+ "id": "MIT"
4472
+ }
4473
+ }
4474
+ ]
4475
+ },
4476
+ {
4477
+ "type": "library",
4478
+ "bom-ref": "pkg:npm/vite@6.4.2",
4479
+ "name": "vite",
4480
+ "version": "6.4.2",
4481
+ "purl": "pkg:npm/vite@6.4.2",
4482
+ "licenses": [
4483
+ {
4484
+ "license": {
4485
+ "id": "MIT"
4486
+ }
4487
+ }
4488
+ ]
4489
+ },
4490
+ {
4491
+ "type": "library",
4492
+ "bom-ref": "pkg:npm/vitest@3.2.4",
4493
+ "name": "vitest",
4494
+ "version": "3.2.4",
4495
+ "purl": "pkg:npm/vitest@3.2.4",
4496
+ "licenses": [
4497
+ {
4498
+ "license": {
4499
+ "id": "MIT"
4500
+ }
4501
+ }
4502
+ ]
4503
+ },
4504
+ {
4505
+ "type": "library",
4506
+ "bom-ref": "pkg:npm/web-tree-sitter@0.26.8",
4507
+ "name": "web-tree-sitter",
4508
+ "version": "0.26.8",
4509
+ "purl": "pkg:npm/web-tree-sitter@0.26.8",
4510
+ "licenses": [
4511
+ {
4512
+ "license": {
4513
+ "id": "MIT"
4514
+ }
4515
+ }
4516
+ ]
4517
+ },
4518
+ {
4519
+ "type": "library",
4520
+ "bom-ref": "pkg:npm/which@2.0.2",
4521
+ "name": "which",
4522
+ "version": "2.0.2",
4523
+ "purl": "pkg:npm/which@2.0.2",
4524
+ "licenses": [
4525
+ {
4526
+ "license": {
4527
+ "id": "ISC"
4528
+ }
4529
+ }
4530
+ ]
4531
+ },
4532
+ {
4533
+ "type": "library",
4534
+ "bom-ref": "pkg:npm/why-is-node-running@2.3.0",
4535
+ "name": "why-is-node-running",
4536
+ "version": "2.3.0",
4537
+ "purl": "pkg:npm/why-is-node-running@2.3.0",
4538
+ "licenses": [
4539
+ {
4540
+ "license": {
4541
+ "id": "MIT"
4542
+ }
4543
+ }
4544
+ ]
4545
+ },
4546
+ {
4547
+ "type": "library",
4548
+ "bom-ref": "pkg:npm/word-wrap@1.2.5",
4549
+ "name": "word-wrap",
4550
+ "version": "1.2.5",
4551
+ "purl": "pkg:npm/word-wrap@1.2.5",
4552
+ "licenses": [
4553
+ {
4554
+ "license": {
4555
+ "id": "MIT"
4556
+ }
4557
+ }
4558
+ ]
4559
+ },
4560
+ {
4561
+ "type": "library",
4562
+ "bom-ref": "pkg:npm/wrappy@1.0.2",
4563
+ "name": "wrappy",
4564
+ "version": "1.0.2",
4565
+ "purl": "pkg:npm/wrappy@1.0.2",
4566
+ "licenses": [
4567
+ {
4568
+ "license": {
4569
+ "id": "ISC"
4570
+ }
4571
+ }
4572
+ ]
4573
+ },
4574
+ {
4575
+ "type": "library",
4576
+ "bom-ref": "pkg:npm/yocto-queue@0.1.0",
4577
+ "name": "yocto-queue",
4578
+ "version": "0.1.0",
4579
+ "purl": "pkg:npm/yocto-queue@0.1.0",
4580
+ "licenses": [
4581
+ {
4582
+ "license": {
4583
+ "id": "MIT"
4584
+ }
4585
+ }
4586
+ ]
4587
+ }
4588
+ ]
4589
+ }