@tom2012/cc-web 1.5.10 → 1.5.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/README.md +23 -3
  2. package/backend/dist/backup/config.d.ts +8 -0
  3. package/backend/dist/backup/config.d.ts.map +1 -0
  4. package/backend/dist/backup/config.js +104 -0
  5. package/backend/dist/backup/config.js.map +1 -0
  6. package/backend/dist/backup/engine.d.ts +22 -0
  7. package/backend/dist/backup/engine.d.ts.map +1 -0
  8. package/backend/dist/backup/engine.js +280 -0
  9. package/backend/dist/backup/engine.js.map +1 -0
  10. package/backend/dist/backup/providers/dropbox.d.ts +25 -0
  11. package/backend/dist/backup/providers/dropbox.d.ts.map +1 -0
  12. package/backend/dist/backup/providers/dropbox.js +319 -0
  13. package/backend/dist/backup/providers/dropbox.js.map +1 -0
  14. package/backend/dist/backup/providers/google-drive.d.ts +29 -0
  15. package/backend/dist/backup/providers/google-drive.d.ts.map +1 -0
  16. package/backend/dist/backup/providers/google-drive.js +305 -0
  17. package/backend/dist/backup/providers/google-drive.js.map +1 -0
  18. package/backend/dist/backup/providers/index.d.ts +3 -0
  19. package/backend/dist/backup/providers/index.d.ts.map +1 -0
  20. package/backend/dist/backup/providers/index.js +19 -0
  21. package/backend/dist/backup/providers/index.js.map +1 -0
  22. package/backend/dist/backup/providers/onedrive.d.ts +29 -0
  23. package/backend/dist/backup/providers/onedrive.d.ts.map +1 -0
  24. package/backend/dist/backup/providers/onedrive.js +316 -0
  25. package/backend/dist/backup/providers/onedrive.js.map +1 -0
  26. package/backend/dist/backup/scheduler.d.ts +6 -0
  27. package/backend/dist/backup/scheduler.d.ts.map +1 -0
  28. package/backend/dist/backup/scheduler.js +53 -0
  29. package/backend/dist/backup/scheduler.js.map +1 -0
  30. package/backend/dist/backup/types.d.ts +68 -0
  31. package/backend/dist/backup/types.d.ts.map +1 -0
  32. package/backend/dist/backup/types.js +4 -0
  33. package/backend/dist/backup/types.js.map +1 -0
  34. package/backend/dist/index.d.ts.map +1 -1
  35. package/backend/dist/index.js +74 -10
  36. package/backend/dist/index.js.map +1 -1
  37. package/backend/dist/routes/backup.d.ts +4 -0
  38. package/backend/dist/routes/backup.d.ts.map +1 -0
  39. package/backend/dist/routes/backup.js +175 -0
  40. package/backend/dist/routes/backup.js.map +1 -0
  41. package/backend/dist/routes/projects.d.ts.map +1 -1
  42. package/backend/dist/routes/projects.js +14 -0
  43. package/backend/dist/routes/projects.js.map +1 -1
  44. package/backend/dist/routes/sounds.d.ts +3 -0
  45. package/backend/dist/routes/sounds.d.ts.map +1 -0
  46. package/backend/dist/routes/sounds.js +283 -0
  47. package/backend/dist/routes/sounds.js.map +1 -0
  48. package/backend/package-lock.json +662 -20
  49. package/backend/package.json +8 -0
  50. package/bin/ccweb.js +33 -0
  51. package/frontend/dist/assets/index-D7gjxQKB.css +32 -0
  52. package/frontend/dist/assets/index-Dg1NcsQH.js +489 -0
  53. package/frontend/dist/index.html +2 -2
  54. package/package.json +1 -1
  55. package/frontend/dist/assets/index-CQjbS4zv.css +0 -32
  56. package/frontend/dist/assets/index-CtyR65A4.js +0 -434
@@ -9,10 +9,16 @@
9
9
  "version": "1.0.0",
10
10
  "hasInstallScript": true,
11
11
  "dependencies": {
12
+ "@azure/msal-node": "^3.8.10",
13
+ "@microsoft/microsoft-graph-client": "^3.0.7",
12
14
  "bcryptjs": "^2.4.3",
13
15
  "cors": "^2.8.5",
16
+ "dropbox": "^10.34.0",
14
17
  "express": "^4.18.2",
18
+ "googleapis": "^168.0.0",
15
19
  "jsonwebtoken": "^9.0.2",
20
+ "minimatch": "^10.2.4",
21
+ "multer": "^2.1.1",
16
22
  "node-pty": "^1.0.0",
17
23
  "uuid": "^9.0.1",
18
24
  "ws": "^8.16.0"
@@ -22,6 +28,8 @@
22
28
  "@types/cors": "^2.8.17",
23
29
  "@types/express": "^4.17.21",
24
30
  "@types/jsonwebtoken": "^9.0.5",
31
+ "@types/minimatch": "^5.1.2",
32
+ "@types/multer": "^2.1.0",
25
33
  "@types/node": "^20.11.5",
26
34
  "@types/uuid": "^9.0.7",
27
35
  "@types/ws": "^8.5.10",
@@ -30,6 +38,47 @@
30
38
  "typescript": "^5.3.3"
31
39
  }
32
40
  },
41
+ "node_modules/@azure/msal-common": {
42
+ "version": "15.17.0",
43
+ "resolved": "https://registry.npmmirror.com/@azure/msal-common/-/msal-common-15.17.0.tgz",
44
+ "integrity": "sha512-VQ5/gTLFADkwue+FohVuCqlzFPUq4xSrX8jeZe+iwZuY6moliNC8xt86qPVNYdtbQfELDf2Nu6LI+demFPHGgw==",
45
+ "license": "MIT",
46
+ "engines": {
47
+ "node": ">=0.8.0"
48
+ }
49
+ },
50
+ "node_modules/@azure/msal-node": {
51
+ "version": "3.8.10",
52
+ "resolved": "https://registry.npmmirror.com/@azure/msal-node/-/msal-node-3.8.10.tgz",
53
+ "integrity": "sha512-0Hz7Kx4hs70KZWep/Rd7aw/qOLUF92wUOhn7ZsOuB5xNR/06NL1E2RAI9+UKH1FtvN8nD6mFjH7UKSjv6vOWvQ==",
54
+ "license": "MIT",
55
+ "dependencies": {
56
+ "@azure/msal-common": "15.17.0",
57
+ "jsonwebtoken": "^9.0.0",
58
+ "uuid": "^8.3.0"
59
+ },
60
+ "engines": {
61
+ "node": ">=16"
62
+ }
63
+ },
64
+ "node_modules/@azure/msal-node/node_modules/uuid": {
65
+ "version": "8.3.2",
66
+ "resolved": "https://registry.npmmirror.com/uuid/-/uuid-8.3.2.tgz",
67
+ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
68
+ "license": "MIT",
69
+ "bin": {
70
+ "uuid": "dist/bin/uuid"
71
+ }
72
+ },
73
+ "node_modules/@babel/runtime": {
74
+ "version": "7.29.2",
75
+ "resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.29.2.tgz",
76
+ "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
77
+ "license": "MIT",
78
+ "engines": {
79
+ "node": ">=6.9.0"
80
+ }
81
+ },
33
82
  "node_modules/@cspotcode/source-map-support": {
34
83
  "version": "0.8.1",
35
84
  "resolved": "https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
@@ -71,6 +120,33 @@
71
120
  "@jridgewell/sourcemap-codec": "^1.4.10"
72
121
  }
73
122
  },
123
+ "node_modules/@microsoft/microsoft-graph-client": {
124
+ "version": "3.0.7",
125
+ "resolved": "https://registry.npmmirror.com/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.7.tgz",
126
+ "integrity": "sha512-/AazAV/F+HK4LIywF9C+NYHcJo038zEnWkteilcxC1FM/uK/4NVGDKGrxx7nNq1ybspAroRKT4I1FHfxQzxkUw==",
127
+ "license": "MIT",
128
+ "dependencies": {
129
+ "@babel/runtime": "^7.12.5",
130
+ "tslib": "^2.2.0"
131
+ },
132
+ "engines": {
133
+ "node": ">=12.0.0"
134
+ },
135
+ "peerDependenciesMeta": {
136
+ "@azure/identity": {
137
+ "optional": true
138
+ },
139
+ "@azure/msal-browser": {
140
+ "optional": true
141
+ },
142
+ "buffer": {
143
+ "optional": true
144
+ },
145
+ "stream-browserify": {
146
+ "optional": true
147
+ }
148
+ }
149
+ },
74
150
  "node_modules/@tsconfig/node10": {
75
151
  "version": "1.0.12",
76
152
  "resolved": "https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.12.tgz",
@@ -188,6 +264,13 @@
188
264
  "dev": true,
189
265
  "license": "MIT"
190
266
  },
267
+ "node_modules/@types/minimatch": {
268
+ "version": "5.1.2",
269
+ "resolved": "https://registry.npmmirror.com/@types/minimatch/-/minimatch-5.1.2.tgz",
270
+ "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==",
271
+ "dev": true,
272
+ "license": "MIT"
273
+ },
191
274
  "node_modules/@types/ms": {
192
275
  "version": "2.1.0",
193
276
  "resolved": "https://registry.npmmirror.com/@types/ms/-/ms-2.1.0.tgz",
@@ -195,16 +278,36 @@
195
278
  "dev": true,
196
279
  "license": "MIT"
197
280
  },
281
+ "node_modules/@types/multer": {
282
+ "version": "2.1.0",
283
+ "resolved": "https://registry.npmmirror.com/@types/multer/-/multer-2.1.0.tgz",
284
+ "integrity": "sha512-zYZb0+nJhOHtPpGDb3vqPjwpdeGlGC157VpkqNQL+UU2qwoacoQ7MpsAmUptI/0Oa127X32JzWDqQVEXp2RcIA==",
285
+ "dev": true,
286
+ "license": "MIT",
287
+ "dependencies": {
288
+ "@types/express": "*"
289
+ }
290
+ },
198
291
  "node_modules/@types/node": {
199
292
  "version": "20.19.37",
200
293
  "resolved": "https://registry.npmmirror.com/@types/node/-/node-20.19.37.tgz",
201
294
  "integrity": "sha512-8kzdPJ3FsNsVIurqBs7oodNnCEVbni9yUEkaHbgptDACOPW04jimGagZ51E6+lXUwJjgnBw+hyko/lkFWCldqw==",
202
- "dev": true,
203
295
  "license": "MIT",
204
296
  "dependencies": {
205
297
  "undici-types": "~6.21.0"
206
298
  }
207
299
  },
300
+ "node_modules/@types/node-fetch": {
301
+ "version": "2.6.13",
302
+ "resolved": "https://registry.npmmirror.com/@types/node-fetch/-/node-fetch-2.6.13.tgz",
303
+ "integrity": "sha512-QGpRVpzSaUs30JBSGPjOg4Uveu384erbHBoT1zeONvyCfwQxIkUshLAOqN/k9EjGviPRmWTTe6aH2qySWKTVSw==",
304
+ "license": "MIT",
305
+ "peer": true,
306
+ "dependencies": {
307
+ "@types/node": "*",
308
+ "form-data": "^4.0.4"
309
+ }
310
+ },
208
311
  "node_modules/@types/qs": {
209
312
  "version": "6.15.0",
210
313
  "resolved": "https://registry.npmmirror.com/@types/qs/-/qs-6.15.0.tgz",
@@ -322,6 +425,15 @@
322
425
  "node": ">=0.4.0"
323
426
  }
324
427
  },
428
+ "node_modules/agent-base": {
429
+ "version": "7.1.4",
430
+ "resolved": "https://registry.npmmirror.com/agent-base/-/agent-base-7.1.4.tgz",
431
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
432
+ "license": "MIT",
433
+ "engines": {
434
+ "node": ">= 14"
435
+ }
436
+ },
325
437
  "node_modules/anymatch": {
326
438
  "version": "3.1.3",
327
439
  "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz",
@@ -336,6 +448,12 @@
336
448
  "node": ">= 8"
337
449
  }
338
450
  },
451
+ "node_modules/append-field": {
452
+ "version": "1.0.0",
453
+ "resolved": "https://registry.npmmirror.com/append-field/-/append-field-1.0.0.tgz",
454
+ "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==",
455
+ "license": "MIT"
456
+ },
339
457
  "node_modules/arg": {
340
458
  "version": "4.1.3",
341
459
  "resolved": "https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz",
@@ -349,11 +467,40 @@
349
467
  "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
350
468
  "license": "MIT"
351
469
  },
470
+ "node_modules/asynckit": {
471
+ "version": "0.4.0",
472
+ "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
473
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
474
+ "license": "MIT",
475
+ "peer": true
476
+ },
352
477
  "node_modules/balanced-match": {
353
- "version": "1.0.2",
354
- "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz",
355
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
356
- "dev": true,
478
+ "version": "4.0.4",
479
+ "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-4.0.4.tgz",
480
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
481
+ "license": "MIT",
482
+ "engines": {
483
+ "node": "18 || 20 || >=22"
484
+ }
485
+ },
486
+ "node_modules/base64-js": {
487
+ "version": "1.5.1",
488
+ "resolved": "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz",
489
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
490
+ "funding": [
491
+ {
492
+ "type": "github",
493
+ "url": "https://github.com/sponsors/feross"
494
+ },
495
+ {
496
+ "type": "patreon",
497
+ "url": "https://www.patreon.com/feross"
498
+ },
499
+ {
500
+ "type": "consulting",
501
+ "url": "https://feross.org/support"
502
+ }
503
+ ],
357
504
  "license": "MIT"
358
505
  },
359
506
  "node_modules/bcryptjs": {
@@ -362,6 +509,15 @@
362
509
  "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==",
363
510
  "license": "MIT"
364
511
  },
512
+ "node_modules/bignumber.js": {
513
+ "version": "9.3.1",
514
+ "resolved": "https://registry.npmmirror.com/bignumber.js/-/bignumber.js-9.3.1.tgz",
515
+ "integrity": "sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==",
516
+ "license": "MIT",
517
+ "engines": {
518
+ "node": "*"
519
+ }
520
+ },
365
521
  "node_modules/binary-extensions": {
366
522
  "version": "2.3.0",
367
523
  "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.3.0.tgz",
@@ -400,14 +556,15 @@
400
556
  }
401
557
  },
402
558
  "node_modules/brace-expansion": {
403
- "version": "1.1.12",
404
- "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz",
405
- "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
406
- "dev": true,
559
+ "version": "5.0.4",
560
+ "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-5.0.4.tgz",
561
+ "integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==",
407
562
  "license": "MIT",
408
563
  "dependencies": {
409
- "balanced-match": "^1.0.0",
410
- "concat-map": "0.0.1"
564
+ "balanced-match": "^4.0.2"
565
+ },
566
+ "engines": {
567
+ "node": "18 || 20 || >=22"
411
568
  }
412
569
  },
413
570
  "node_modules/braces": {
@@ -433,9 +590,19 @@
433
590
  "version": "1.1.2",
434
591
  "resolved": "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz",
435
592
  "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
436
- "dev": true,
437
593
  "license": "MIT"
438
594
  },
595
+ "node_modules/busboy": {
596
+ "version": "1.6.0",
597
+ "resolved": "https://registry.npmmirror.com/busboy/-/busboy-1.6.0.tgz",
598
+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
599
+ "dependencies": {
600
+ "streamsearch": "^1.1.0"
601
+ },
602
+ "engines": {
603
+ "node": ">=10.16.0"
604
+ }
605
+ },
439
606
  "node_modules/bytes": {
440
607
  "version": "3.1.2",
441
608
  "resolved": "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz",
@@ -499,6 +666,19 @@
499
666
  "fsevents": "~2.3.2"
500
667
  }
501
668
  },
669
+ "node_modules/combined-stream": {
670
+ "version": "1.0.8",
671
+ "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
672
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
673
+ "license": "MIT",
674
+ "peer": true,
675
+ "dependencies": {
676
+ "delayed-stream": "~1.0.0"
677
+ },
678
+ "engines": {
679
+ "node": ">= 0.8"
680
+ }
681
+ },
502
682
  "node_modules/concat-map": {
503
683
  "version": "0.0.1",
504
684
  "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz",
@@ -506,6 +686,21 @@
506
686
  "dev": true,
507
687
  "license": "MIT"
508
688
  },
689
+ "node_modules/concat-stream": {
690
+ "version": "2.0.0",
691
+ "resolved": "https://registry.npmmirror.com/concat-stream/-/concat-stream-2.0.0.tgz",
692
+ "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==",
693
+ "engines": [
694
+ "node >= 6.0"
695
+ ],
696
+ "license": "MIT",
697
+ "dependencies": {
698
+ "buffer-from": "^1.0.0",
699
+ "inherits": "^2.0.3",
700
+ "readable-stream": "^3.0.2",
701
+ "typedarray": "^0.0.6"
702
+ }
703
+ },
509
704
  "node_modules/content-disposition": {
510
705
  "version": "0.5.4",
511
706
  "resolved": "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz",
@@ -566,6 +761,15 @@
566
761
  "dev": true,
567
762
  "license": "MIT"
568
763
  },
764
+ "node_modules/data-uri-to-buffer": {
765
+ "version": "4.0.1",
766
+ "resolved": "https://registry.npmmirror.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
767
+ "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
768
+ "license": "MIT",
769
+ "engines": {
770
+ "node": ">= 12"
771
+ }
772
+ },
569
773
  "node_modules/debug": {
570
774
  "version": "2.6.9",
571
775
  "resolved": "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz",
@@ -575,6 +779,16 @@
575
779
  "ms": "2.0.0"
576
780
  }
577
781
  },
782
+ "node_modules/delayed-stream": {
783
+ "version": "1.0.0",
784
+ "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
785
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
786
+ "license": "MIT",
787
+ "peer": true,
788
+ "engines": {
789
+ "node": ">=0.4.0"
790
+ }
791
+ },
578
792
  "node_modules/depd": {
579
793
  "version": "2.0.0",
580
794
  "resolved": "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz",
@@ -604,6 +818,21 @@
604
818
  "node": ">=0.3.1"
605
819
  }
606
820
  },
821
+ "node_modules/dropbox": {
822
+ "version": "10.34.0",
823
+ "resolved": "https://registry.npmmirror.com/dropbox/-/dropbox-10.34.0.tgz",
824
+ "integrity": "sha512-5jb5/XzU0fSnq36/hEpwT5/QIep7MgqKuxghEG44xCu7HruOAjPdOb3x0geXv5O/hd0nHpQpWO+r5MjYTpMvJg==",
825
+ "license": "MIT",
826
+ "dependencies": {
827
+ "node-fetch": "^2.6.1"
828
+ },
829
+ "engines": {
830
+ "node": ">=0.10.3"
831
+ },
832
+ "peerDependencies": {
833
+ "@types/node-fetch": "^2.5.7"
834
+ }
835
+ },
607
836
  "node_modules/dunder-proto": {
608
837
  "version": "1.0.1",
609
838
  "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
@@ -682,6 +911,22 @@
682
911
  "node": ">= 0.4"
683
912
  }
684
913
  },
914
+ "node_modules/es-set-tostringtag": {
915
+ "version": "2.1.0",
916
+ "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
917
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
918
+ "license": "MIT",
919
+ "peer": true,
920
+ "dependencies": {
921
+ "es-errors": "^1.3.0",
922
+ "get-intrinsic": "^1.2.6",
923
+ "has-tostringtag": "^1.0.2",
924
+ "hasown": "^2.0.2"
925
+ },
926
+ "engines": {
927
+ "node": ">= 0.4"
928
+ }
929
+ },
685
930
  "node_modules/escape-html": {
686
931
  "version": "1.0.3",
687
932
  "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz",
@@ -743,6 +988,35 @@
743
988
  "url": "https://opencollective.com/express"
744
989
  }
745
990
  },
991
+ "node_modules/extend": {
992
+ "version": "3.0.2",
993
+ "resolved": "https://registry.npmmirror.com/extend/-/extend-3.0.2.tgz",
994
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
995
+ "license": "MIT"
996
+ },
997
+ "node_modules/fetch-blob": {
998
+ "version": "3.2.0",
999
+ "resolved": "https://registry.npmmirror.com/fetch-blob/-/fetch-blob-3.2.0.tgz",
1000
+ "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
1001
+ "funding": [
1002
+ {
1003
+ "type": "github",
1004
+ "url": "https://github.com/sponsors/jimmywarting"
1005
+ },
1006
+ {
1007
+ "type": "paypal",
1008
+ "url": "https://paypal.me/jimmywarting"
1009
+ }
1010
+ ],
1011
+ "license": "MIT",
1012
+ "dependencies": {
1013
+ "node-domexception": "^1.0.0",
1014
+ "web-streams-polyfill": "^3.0.3"
1015
+ },
1016
+ "engines": {
1017
+ "node": "^12.20 || >= 14.13"
1018
+ }
1019
+ },
746
1020
  "node_modules/fill-range": {
747
1021
  "version": "7.1.1",
748
1022
  "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz",
@@ -774,6 +1048,35 @@
774
1048
  "node": ">= 0.8"
775
1049
  }
776
1050
  },
1051
+ "node_modules/form-data": {
1052
+ "version": "4.0.5",
1053
+ "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.5.tgz",
1054
+ "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
1055
+ "license": "MIT",
1056
+ "peer": true,
1057
+ "dependencies": {
1058
+ "asynckit": "^0.4.0",
1059
+ "combined-stream": "^1.0.8",
1060
+ "es-set-tostringtag": "^2.1.0",
1061
+ "hasown": "^2.0.2",
1062
+ "mime-types": "^2.1.12"
1063
+ },
1064
+ "engines": {
1065
+ "node": ">= 6"
1066
+ }
1067
+ },
1068
+ "node_modules/formdata-polyfill": {
1069
+ "version": "4.0.10",
1070
+ "resolved": "https://registry.npmmirror.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
1071
+ "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
1072
+ "license": "MIT",
1073
+ "dependencies": {
1074
+ "fetch-blob": "^3.1.2"
1075
+ },
1076
+ "engines": {
1077
+ "node": ">=12.20.0"
1078
+ }
1079
+ },
777
1080
  "node_modules/forwarded": {
778
1081
  "version": "0.2.0",
779
1082
  "resolved": "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz",
@@ -823,6 +1126,52 @@
823
1126
  "url": "https://github.com/sponsors/ljharb"
824
1127
  }
825
1128
  },
1129
+ "node_modules/gaxios": {
1130
+ "version": "7.1.4",
1131
+ "resolved": "https://registry.npmmirror.com/gaxios/-/gaxios-7.1.4.tgz",
1132
+ "integrity": "sha512-bTIgTsM2bWn3XklZISBTQX7ZSddGW+IO3bMdGaemHZ3tbqExMENHLx6kKZ/KlejgrMtj8q7wBItt51yegqalrA==",
1133
+ "license": "Apache-2.0",
1134
+ "dependencies": {
1135
+ "extend": "^3.0.2",
1136
+ "https-proxy-agent": "^7.0.1",
1137
+ "node-fetch": "^3.3.2"
1138
+ },
1139
+ "engines": {
1140
+ "node": ">=18"
1141
+ }
1142
+ },
1143
+ "node_modules/gaxios/node_modules/node-fetch": {
1144
+ "version": "3.3.2",
1145
+ "resolved": "https://registry.npmmirror.com/node-fetch/-/node-fetch-3.3.2.tgz",
1146
+ "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
1147
+ "license": "MIT",
1148
+ "dependencies": {
1149
+ "data-uri-to-buffer": "^4.0.0",
1150
+ "fetch-blob": "^3.1.4",
1151
+ "formdata-polyfill": "^4.0.10"
1152
+ },
1153
+ "engines": {
1154
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1155
+ },
1156
+ "funding": {
1157
+ "type": "opencollective",
1158
+ "url": "https://opencollective.com/node-fetch"
1159
+ }
1160
+ },
1161
+ "node_modules/gcp-metadata": {
1162
+ "version": "8.1.2",
1163
+ "resolved": "https://registry.npmmirror.com/gcp-metadata/-/gcp-metadata-8.1.2.tgz",
1164
+ "integrity": "sha512-zV/5HKTfCeKWnxG0Dmrw51hEWFGfcF2xiXqcA3+J90WDuP0SvoiSO5ORvcBsifmx/FoIjgQN3oNOGaQ5PhLFkg==",
1165
+ "license": "Apache-2.0",
1166
+ "dependencies": {
1167
+ "gaxios": "^7.0.0",
1168
+ "google-logging-utils": "^1.0.0",
1169
+ "json-bigint": "^1.0.0"
1170
+ },
1171
+ "engines": {
1172
+ "node": ">=18"
1173
+ }
1174
+ },
826
1175
  "node_modules/get-intrinsic": {
827
1176
  "version": "1.3.0",
828
1177
  "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
@@ -895,6 +1244,92 @@
895
1244
  "node": ">= 6"
896
1245
  }
897
1246
  },
1247
+ "node_modules/glob/node_modules/balanced-match": {
1248
+ "version": "1.0.2",
1249
+ "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz",
1250
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1251
+ "dev": true,
1252
+ "license": "MIT"
1253
+ },
1254
+ "node_modules/glob/node_modules/brace-expansion": {
1255
+ "version": "1.1.12",
1256
+ "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.12.tgz",
1257
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
1258
+ "dev": true,
1259
+ "license": "MIT",
1260
+ "dependencies": {
1261
+ "balanced-match": "^1.0.0",
1262
+ "concat-map": "0.0.1"
1263
+ }
1264
+ },
1265
+ "node_modules/glob/node_modules/minimatch": {
1266
+ "version": "3.1.5",
1267
+ "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.5.tgz",
1268
+ "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
1269
+ "dev": true,
1270
+ "license": "ISC",
1271
+ "dependencies": {
1272
+ "brace-expansion": "^1.1.7"
1273
+ },
1274
+ "engines": {
1275
+ "node": "*"
1276
+ }
1277
+ },
1278
+ "node_modules/google-auth-library": {
1279
+ "version": "10.6.2",
1280
+ "resolved": "https://registry.npmmirror.com/google-auth-library/-/google-auth-library-10.6.2.tgz",
1281
+ "integrity": "sha512-e27Z6EThmVNNvtYASwQxose/G57rkRuaRbQyxM2bvYLLX/GqWZ5chWq2EBoUchJbCc57eC9ArzO5wMsEmWftCw==",
1282
+ "license": "Apache-2.0",
1283
+ "dependencies": {
1284
+ "base64-js": "^1.3.0",
1285
+ "ecdsa-sig-formatter": "^1.0.11",
1286
+ "gaxios": "^7.1.4",
1287
+ "gcp-metadata": "8.1.2",
1288
+ "google-logging-utils": "1.1.3",
1289
+ "jws": "^4.0.0"
1290
+ },
1291
+ "engines": {
1292
+ "node": ">=18"
1293
+ }
1294
+ },
1295
+ "node_modules/google-logging-utils": {
1296
+ "version": "1.1.3",
1297
+ "resolved": "https://registry.npmmirror.com/google-logging-utils/-/google-logging-utils-1.1.3.tgz",
1298
+ "integrity": "sha512-eAmLkjDjAFCVXg7A1unxHsLf961m6y17QFqXqAXGj/gVkKFrEICfStRfwUlGNfeCEjNRa32JEWOUTlYXPyyKvA==",
1299
+ "license": "Apache-2.0",
1300
+ "engines": {
1301
+ "node": ">=14"
1302
+ }
1303
+ },
1304
+ "node_modules/googleapis": {
1305
+ "version": "168.0.0",
1306
+ "resolved": "https://registry.npmmirror.com/googleapis/-/googleapis-168.0.0.tgz",
1307
+ "integrity": "sha512-A1gQtli8/UXjuGnBAwvObwcsIs2xheV82OnmnrrqSOzgzU0gsu18VbOBLh6G8DiMsZze5hJmOJJM7qsVuqAe6g==",
1308
+ "license": "Apache-2.0",
1309
+ "dependencies": {
1310
+ "google-auth-library": "^10.2.0",
1311
+ "googleapis-common": "^8.0.0"
1312
+ },
1313
+ "engines": {
1314
+ "node": ">=18"
1315
+ }
1316
+ },
1317
+ "node_modules/googleapis-common": {
1318
+ "version": "8.0.1",
1319
+ "resolved": "https://registry.npmmirror.com/googleapis-common/-/googleapis-common-8.0.1.tgz",
1320
+ "integrity": "sha512-eCzNACUXPb1PW5l0ULTzMHaL/ltPRADoPgjBlT8jWsTbxkCp6siv+qKJ/1ldaybCthGwsYFYallF7u9AkU4L+A==",
1321
+ "license": "Apache-2.0",
1322
+ "dependencies": {
1323
+ "extend": "^3.0.2",
1324
+ "gaxios": "^7.0.0-rc.4",
1325
+ "google-auth-library": "^10.1.0",
1326
+ "qs": "^6.7.0",
1327
+ "url-template": "^2.0.8"
1328
+ },
1329
+ "engines": {
1330
+ "node": ">=18.0.0"
1331
+ }
1332
+ },
898
1333
  "node_modules/gopd": {
899
1334
  "version": "1.2.0",
900
1335
  "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
@@ -919,6 +1354,22 @@
919
1354
  "url": "https://github.com/sponsors/ljharb"
920
1355
  }
921
1356
  },
1357
+ "node_modules/has-tostringtag": {
1358
+ "version": "1.0.2",
1359
+ "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
1360
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
1361
+ "license": "MIT",
1362
+ "peer": true,
1363
+ "dependencies": {
1364
+ "has-symbols": "^1.0.3"
1365
+ },
1366
+ "engines": {
1367
+ "node": ">= 0.4"
1368
+ },
1369
+ "funding": {
1370
+ "url": "https://github.com/sponsors/ljharb"
1371
+ }
1372
+ },
922
1373
  "node_modules/hasown": {
923
1374
  "version": "2.0.2",
924
1375
  "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz",
@@ -951,6 +1402,42 @@
951
1402
  "url": "https://opencollective.com/express"
952
1403
  }
953
1404
  },
1405
+ "node_modules/https-proxy-agent": {
1406
+ "version": "7.0.6",
1407
+ "resolved": "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
1408
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
1409
+ "license": "MIT",
1410
+ "dependencies": {
1411
+ "agent-base": "^7.1.2",
1412
+ "debug": "4"
1413
+ },
1414
+ "engines": {
1415
+ "node": ">= 14"
1416
+ }
1417
+ },
1418
+ "node_modules/https-proxy-agent/node_modules/debug": {
1419
+ "version": "4.4.3",
1420
+ "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
1421
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1422
+ "license": "MIT",
1423
+ "dependencies": {
1424
+ "ms": "^2.1.3"
1425
+ },
1426
+ "engines": {
1427
+ "node": ">=6.0"
1428
+ },
1429
+ "peerDependenciesMeta": {
1430
+ "supports-color": {
1431
+ "optional": true
1432
+ }
1433
+ }
1434
+ },
1435
+ "node_modules/https-proxy-agent/node_modules/ms": {
1436
+ "version": "2.1.3",
1437
+ "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
1438
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1439
+ "license": "MIT"
1440
+ },
954
1441
  "node_modules/iconv-lite": {
955
1442
  "version": "0.4.24",
956
1443
  "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz",
@@ -1052,6 +1539,15 @@
1052
1539
  "node": ">=0.12.0"
1053
1540
  }
1054
1541
  },
1542
+ "node_modules/json-bigint": {
1543
+ "version": "1.0.0",
1544
+ "resolved": "https://registry.npmmirror.com/json-bigint/-/json-bigint-1.0.0.tgz",
1545
+ "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
1546
+ "license": "MIT",
1547
+ "dependencies": {
1548
+ "bignumber.js": "^9.0.0"
1549
+ }
1550
+ },
1055
1551
  "node_modules/jsonwebtoken": {
1056
1552
  "version": "9.0.3",
1057
1553
  "resolved": "https://registry.npmmirror.com/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz",
@@ -1220,16 +1716,18 @@
1220
1716
  }
1221
1717
  },
1222
1718
  "node_modules/minimatch": {
1223
- "version": "3.1.5",
1224
- "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.5.tgz",
1225
- "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
1226
- "dev": true,
1227
- "license": "ISC",
1719
+ "version": "10.2.4",
1720
+ "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-10.2.4.tgz",
1721
+ "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
1722
+ "license": "BlueOak-1.0.0",
1228
1723
  "dependencies": {
1229
- "brace-expansion": "^1.1.7"
1724
+ "brace-expansion": "^5.0.2"
1230
1725
  },
1231
1726
  "engines": {
1232
- "node": "*"
1727
+ "node": "18 || 20 || >=22"
1728
+ },
1729
+ "funding": {
1730
+ "url": "https://github.com/sponsors/isaacs"
1233
1731
  }
1234
1732
  },
1235
1733
  "node_modules/minimist": {
@@ -1261,6 +1759,25 @@
1261
1759
  "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
1262
1760
  "license": "MIT"
1263
1761
  },
1762
+ "node_modules/multer": {
1763
+ "version": "2.1.1",
1764
+ "resolved": "https://registry.npmmirror.com/multer/-/multer-2.1.1.tgz",
1765
+ "integrity": "sha512-mo+QTzKlx8R7E5ylSXxWzGoXoZbOsRMpyitcht8By2KHvMbf3tjwosZ/Mu/XYU6UuJ3VZnODIrak5ZrPiPyB6A==",
1766
+ "license": "MIT",
1767
+ "dependencies": {
1768
+ "append-field": "^1.0.0",
1769
+ "busboy": "^1.6.0",
1770
+ "concat-stream": "^2.0.0",
1771
+ "type-is": "^1.6.18"
1772
+ },
1773
+ "engines": {
1774
+ "node": ">= 10.16.0"
1775
+ },
1776
+ "funding": {
1777
+ "type": "opencollective",
1778
+ "url": "https://opencollective.com/express"
1779
+ }
1780
+ },
1264
1781
  "node_modules/negotiator": {
1265
1782
  "version": "0.6.3",
1266
1783
  "resolved": "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz",
@@ -1276,6 +1793,46 @@
1276
1793
  "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
1277
1794
  "license": "MIT"
1278
1795
  },
1796
+ "node_modules/node-domexception": {
1797
+ "version": "1.0.0",
1798
+ "resolved": "https://registry.npmmirror.com/node-domexception/-/node-domexception-1.0.0.tgz",
1799
+ "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
1800
+ "deprecated": "Use your platform's native DOMException instead",
1801
+ "funding": [
1802
+ {
1803
+ "type": "github",
1804
+ "url": "https://github.com/sponsors/jimmywarting"
1805
+ },
1806
+ {
1807
+ "type": "github",
1808
+ "url": "https://paypal.me/jimmywarting"
1809
+ }
1810
+ ],
1811
+ "license": "MIT",
1812
+ "engines": {
1813
+ "node": ">=10.5.0"
1814
+ }
1815
+ },
1816
+ "node_modules/node-fetch": {
1817
+ "version": "2.7.0",
1818
+ "resolved": "https://registry.npmmirror.com/node-fetch/-/node-fetch-2.7.0.tgz",
1819
+ "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
1820
+ "license": "MIT",
1821
+ "dependencies": {
1822
+ "whatwg-url": "^5.0.0"
1823
+ },
1824
+ "engines": {
1825
+ "node": "4.x || >=6.0.0"
1826
+ },
1827
+ "peerDependencies": {
1828
+ "encoding": "^0.1.0"
1829
+ },
1830
+ "peerDependenciesMeta": {
1831
+ "encoding": {
1832
+ "optional": true
1833
+ }
1834
+ }
1835
+ },
1279
1836
  "node_modules/node-pty": {
1280
1837
  "version": "1.1.0",
1281
1838
  "resolved": "https://registry.npmmirror.com/node-pty/-/node-pty-1.1.0.tgz",
@@ -1436,6 +1993,20 @@
1436
1993
  "node": ">= 0.8"
1437
1994
  }
1438
1995
  },
1996
+ "node_modules/readable-stream": {
1997
+ "version": "3.6.2",
1998
+ "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
1999
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
2000
+ "license": "MIT",
2001
+ "dependencies": {
2002
+ "inherits": "^2.0.3",
2003
+ "string_decoder": "^1.1.1",
2004
+ "util-deprecate": "^1.0.1"
2005
+ },
2006
+ "engines": {
2007
+ "node": ">= 6"
2008
+ }
2009
+ },
1439
2010
  "node_modules/readdirp": {
1440
2011
  "version": "3.6.0",
1441
2012
  "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz",
@@ -1675,6 +2246,23 @@
1675
2246
  "node": ">= 0.8"
1676
2247
  }
1677
2248
  },
2249
+ "node_modules/streamsearch": {
2250
+ "version": "1.1.0",
2251
+ "resolved": "https://registry.npmmirror.com/streamsearch/-/streamsearch-1.1.0.tgz",
2252
+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
2253
+ "engines": {
2254
+ "node": ">=10.0.0"
2255
+ }
2256
+ },
2257
+ "node_modules/string_decoder": {
2258
+ "version": "1.3.0",
2259
+ "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz",
2260
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
2261
+ "license": "MIT",
2262
+ "dependencies": {
2263
+ "safe-buffer": "~5.2.0"
2264
+ }
2265
+ },
1678
2266
  "node_modules/strip-bom": {
1679
2267
  "version": "3.0.0",
1680
2268
  "resolved": "https://registry.npmmirror.com/strip-bom/-/strip-bom-3.0.0.tgz",
@@ -1730,6 +2318,12 @@
1730
2318
  "node": ">=0.6"
1731
2319
  }
1732
2320
  },
2321
+ "node_modules/tr46": {
2322
+ "version": "0.0.3",
2323
+ "resolved": "https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz",
2324
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
2325
+ "license": "MIT"
2326
+ },
1733
2327
  "node_modules/tree-kill": {
1734
2328
  "version": "1.2.2",
1735
2329
  "resolved": "https://registry.npmmirror.com/tree-kill/-/tree-kill-1.2.2.tgz",
@@ -1832,6 +2426,12 @@
1832
2426
  "strip-json-comments": "^2.0.0"
1833
2427
  }
1834
2428
  },
2429
+ "node_modules/tslib": {
2430
+ "version": "2.8.1",
2431
+ "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.8.1.tgz",
2432
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
2433
+ "license": "0BSD"
2434
+ },
1835
2435
  "node_modules/type-is": {
1836
2436
  "version": "1.6.18",
1837
2437
  "resolved": "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz",
@@ -1845,6 +2445,12 @@
1845
2445
  "node": ">= 0.6"
1846
2446
  }
1847
2447
  },
2448
+ "node_modules/typedarray": {
2449
+ "version": "0.0.6",
2450
+ "resolved": "https://registry.npmmirror.com/typedarray/-/typedarray-0.0.6.tgz",
2451
+ "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
2452
+ "license": "MIT"
2453
+ },
1848
2454
  "node_modules/typescript": {
1849
2455
  "version": "5.9.3",
1850
2456
  "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.9.3.tgz",
@@ -1863,7 +2469,6 @@
1863
2469
  "version": "6.21.0",
1864
2470
  "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-6.21.0.tgz",
1865
2471
  "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
1866
- "dev": true,
1867
2472
  "license": "MIT"
1868
2473
  },
1869
2474
  "node_modules/unpipe": {
@@ -1875,6 +2480,18 @@
1875
2480
  "node": ">= 0.8"
1876
2481
  }
1877
2482
  },
2483
+ "node_modules/url-template": {
2484
+ "version": "2.0.8",
2485
+ "resolved": "https://registry.npmmirror.com/url-template/-/url-template-2.0.8.tgz",
2486
+ "integrity": "sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==",
2487
+ "license": "BSD"
2488
+ },
2489
+ "node_modules/util-deprecate": {
2490
+ "version": "1.0.2",
2491
+ "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz",
2492
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
2493
+ "license": "MIT"
2494
+ },
1878
2495
  "node_modules/utils-merge": {
1879
2496
  "version": "1.0.1",
1880
2497
  "resolved": "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz",
@@ -1913,6 +2530,31 @@
1913
2530
  "node": ">= 0.8"
1914
2531
  }
1915
2532
  },
2533
+ "node_modules/web-streams-polyfill": {
2534
+ "version": "3.3.3",
2535
+ "resolved": "https://registry.npmmirror.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
2536
+ "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
2537
+ "license": "MIT",
2538
+ "engines": {
2539
+ "node": ">= 8"
2540
+ }
2541
+ },
2542
+ "node_modules/webidl-conversions": {
2543
+ "version": "3.0.1",
2544
+ "resolved": "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
2545
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
2546
+ "license": "BSD-2-Clause"
2547
+ },
2548
+ "node_modules/whatwg-url": {
2549
+ "version": "5.0.0",
2550
+ "resolved": "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz",
2551
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
2552
+ "license": "MIT",
2553
+ "dependencies": {
2554
+ "tr46": "~0.0.3",
2555
+ "webidl-conversions": "^3.0.0"
2556
+ }
2557
+ },
1916
2558
  "node_modules/wrappy": {
1917
2559
  "version": "1.0.2",
1918
2560
  "resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz",