-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
9483 lines (8578 loc) · 338 KB
/
yarn.lock
File metadata and controls
9483 lines (8578 loc) · 338 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@angular-devkit/core@npm:19.2.17":
version: 19.2.17
resolution: "@angular-devkit/core@npm:19.2.17"
dependencies:
ajv: "npm:8.17.1"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.3.1"
picomatch: "npm:4.0.2"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^4.0.0
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10c0/721c34da992e7060156c1e523703f754b64524d0212efbbdf9a88ef794ef3c9ebb8e8994743f013c3b99c0a9201362ed2a8ecc2979a1bb72a02b2a6cd4887699
languageName: node
linkType: hard
"@angular-devkit/core@npm:19.2.19":
version: 19.2.19
resolution: "@angular-devkit/core@npm:19.2.19"
dependencies:
ajv: "npm:8.17.1"
ajv-formats: "npm:3.0.1"
jsonc-parser: "npm:3.3.1"
picomatch: "npm:4.0.2"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^4.0.0
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10c0/3729fbb53439c6f9279803c4e1156ae3a0813845a66e1e9851ae159b1d5da0ba577d7d568c1f428adcb7839e5e6bcf2620c84baa0235163de1fcf18dd9749e2e
languageName: node
linkType: hard
"@angular-devkit/schematics-cli@npm:19.2.19":
version: 19.2.19
resolution: "@angular-devkit/schematics-cli@npm:19.2.19"
dependencies:
"@angular-devkit/core": "npm:19.2.19"
"@angular-devkit/schematics": "npm:19.2.19"
"@inquirer/prompts": "npm:7.3.2"
ansi-colors: "npm:4.1.3"
symbol-observable: "npm:4.0.0"
yargs-parser: "npm:21.1.1"
bin:
schematics: bin/schematics.js
checksum: 10c0/9ea263fe1207ff210ec1ed73a88943732bd387072fbd81ef4052bf52bfdd411e02d68bf4c1253145ab29a2f8bfcfd0b72e04ba219c73e7bdbabd97f8f5f881d0
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:19.2.17":
version: 19.2.17
resolution: "@angular-devkit/schematics@npm:19.2.17"
dependencies:
"@angular-devkit/core": "npm:19.2.17"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.17"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10c0/393d2148f2a75efdeeadad7cb47bb55cf490c56928cec5f9acb18cd8098aa7a8de48e6e8f5063431a6fd7df569e0fb75bb0cfeb8a9a6e7924e6be625e1779b6f
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:19.2.19":
version: 19.2.19
resolution: "@angular-devkit/schematics@npm:19.2.19"
dependencies:
"@angular-devkit/core": "npm:19.2.19"
jsonc-parser: "npm:3.3.1"
magic-string: "npm:0.30.17"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10c0/59cbd4fd8597de05b2a302fe2d3bf96e51542165173a273036296ac96b09759ee2ae2505c858bfe8d2504755ed79b73a68ab089386a15c3e3812700314362615
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.972.0":
version: 3.972.0
resolution: "@aws-sdk/client-s3@npm:3.972.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/credential-provider-node": "npm:3.972.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.972.0"
"@aws-sdk/middleware-expect-continue": "npm:3.972.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.972.0"
"@aws-sdk/middleware-host-header": "npm:3.972.0"
"@aws-sdk/middleware-location-constraint": "npm:3.972.0"
"@aws-sdk/middleware-logger": "npm:3.972.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.972.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.972.0"
"@aws-sdk/middleware-ssec": "npm:3.972.0"
"@aws-sdk/middleware-user-agent": "npm:3.972.0"
"@aws-sdk/region-config-resolver": "npm:3.972.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@aws-sdk/util-endpoints": "npm:3.972.0"
"@aws-sdk/util-user-agent-browser": "npm:3.972.0"
"@aws-sdk/util-user-agent-node": "npm:3.972.0"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.20.6"
"@smithy/eventstream-serde-browser": "npm:^4.2.8"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.8"
"@smithy/eventstream-serde-node": "npm:^4.2.8"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-blob-browser": "npm:^4.2.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/hash-stream-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/md5-js": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.7"
"@smithy/middleware-retry": "npm:^4.4.23"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.10.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.22"
"@smithy/util-defaults-mode-node": "npm:^4.2.25"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-stream": "npm:^4.5.10"
"@smithy/util-utf8": "npm:^4.2.0"
"@smithy/util-waiter": "npm:^4.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/07e2db64c2be7bfade87ba1f3521fd7f66df4e2640c52bd12aa340e61b1f44b2672a4bd165b033ff02f86ca4f9989008d7c531fba3236ddf90f058c420d9be7e
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/client-sso@npm:3.972.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/middleware-host-header": "npm:3.972.0"
"@aws-sdk/middleware-logger": "npm:3.972.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.972.0"
"@aws-sdk/middleware-user-agent": "npm:3.972.0"
"@aws-sdk/region-config-resolver": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@aws-sdk/util-endpoints": "npm:3.972.0"
"@aws-sdk/util-user-agent-browser": "npm:3.972.0"
"@aws-sdk/util-user-agent-node": "npm:3.972.0"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.20.6"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.7"
"@smithy/middleware-retry": "npm:^4.4.23"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.10.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.22"
"@smithy/util-defaults-mode-node": "npm:^4.2.25"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f94466a045563ef67579ff4f1afc570875d8231f56ba7b274413e16386d5347d8762f9898a42f29241ae2a465aede3671fe3cadcd7bbec36dd610fb8d9ee9094
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/core@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@aws-sdk/xml-builder": "npm:3.972.0"
"@smithy/core": "npm:^3.20.6"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/signature-v4": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.10.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1df2030c303663e7faaa7a7d4f05ba0d00a38ea0e6d7a2e28565f169fe1786cacecc82249d139ce8f324f199260ff70e65ead380823fcf1af141d092b8b546de
languageName: node
linkType: hard
"@aws-sdk/crc64-nvme@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/crc64-nvme@npm:3.972.0"
dependencies:
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c756b934baa51a7582f5efc8a935b3ce3403f0574451ffa8769e2cecac4cd5f08e0c6f0d5cb85c3e3bcf34cbc475c10e9d8302265a5b1fbb37424b5ac2580a6f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/credential-provider-env@npm:3.972.0"
dependencies:
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4a92b2be3b6350b7d56ed342b3f67fa865ed2c60a743fd80f1561350157c34860908a29abe9a23e3be27ab310b2ee427afcb1229643c1d562f6bfa794592f64e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/credential-provider-http@npm:3.972.0"
dependencies:
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.10.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-stream": "npm:^4.5.10"
tslib: "npm:^2.6.2"
checksum: 10c0/aa6a9ef5ef9a2d22aba81d88f940ae9437544a12894537ec116a34fb5528964d0b3f943c53345493b7fc855e8b91ffccdce02cceff72f9677dbc2019a69c4302
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.0"
dependencies:
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/credential-provider-env": "npm:3.972.0"
"@aws-sdk/credential-provider-http": "npm:3.972.0"
"@aws-sdk/credential-provider-login": "npm:3.972.0"
"@aws-sdk/credential-provider-process": "npm:3.972.0"
"@aws-sdk/credential-provider-sso": "npm:3.972.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.972.0"
"@aws-sdk/nested-clients": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/047e0f530383409f9fc594143c606d363d8ac89d4e32e8b64ea0bb5bf8cafd45dcea0a7410720f00a2a154a251d5963fe012f355edd17a09d70ae35634aba9ee
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/credential-provider-login@npm:3.972.0"
dependencies:
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/nested-clients": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ef39b32448841bc24e9fa2715e70f52078d343ac670f8f5bfc5cc641da0854541c5383fc553f2e7852a95b2a330eb20fe071258dd5a06fd4cbb8de428d3df9da
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/credential-provider-node@npm:3.972.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.972.0"
"@aws-sdk/credential-provider-http": "npm:3.972.0"
"@aws-sdk/credential-provider-ini": "npm:3.972.0"
"@aws-sdk/credential-provider-process": "npm:3.972.0"
"@aws-sdk/credential-provider-sso": "npm:3.972.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/credential-provider-imds": "npm:^4.2.8"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c3c56ba3e885ca44d18e2a207eee45249b0854b62d1770e6def7afa2b2b5446744937109615ec2419bc2b32bb9bb0786cf5a0f4e636e69410229c94f6df5b462
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/credential-provider-process@npm:3.972.0"
dependencies:
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/2522f698b60ea65189af56be1cf8d90c85a49b6c1c35303fb1c20579f6b3defba6402b2acb76f4b700e8550f633e8fdddfdec348f0575dbf3c53c3a435a7ceb2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.972.0"
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/token-providers": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6560dc380238bb84c98cbdddc89743b8723e613c738b0875ec22f57d736c558703d69ded6cf9a0755ff045851b9179cfb2767f134d4cd126575a1436d7248c4a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.0"
dependencies:
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/nested-clients": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8e2b1e980300675c07329ab4e510d3e43a0e803dd0e78da708022774e84c4a13428b27cb77ccf496cfe9c03061f13658b61a35dbe089aab00a7f1dcd5d9cf203
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@aws-sdk/util-arn-parser": "npm:3.972.0"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-config-provider": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/00148722bd8b709ceec5e173aebd2f45d74ecce1b8b70288a0d101c8fbbf571227b387517e74752c43f765bfad5c3f4803de4ff703b7f6911686a90c48fd03a6
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0e5af1ec3d965c236ac07ed71434ff04e4b8883d712492c676eb1afd33050b288e20255a3ef1caf4a69c08b498f54e741057334b99248f37dbd2365b778a35d3
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.972.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/crc64-nvme": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/is-array-buffer": "npm:^4.2.0"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-stream": "npm:^4.5.10"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/57bd09c016959b30680fc66807cba9b08663a4a739cd5dd314f133a5ea121e5d908ae8732d191df73e1dd0cdb06e2369fa2bcaeb19844b2c2cf63d15b9aef4aa
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/middleware-host-header@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3d4e42a7afeaa3ad48a0f22d2bf8bc21f21da996b14624ebf78f00c9420cca183b176aac9bef87b81910df5ed7610f98ee4845759312087739b1d59ecb6cae38
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7f955cdf296d0723262fd6d145e66c2815a9c31e32341a91d1e212172121006d48f177e86d1f68fc46de9f1f4f4d1845e636f2c4bb33c68227732e7f47a31fb9
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/middleware-logger@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e2deea474d5127e98f13d5bb829dfea4446448f5ce5a4d8f6245428ce9a0520b5e4573a530827fb717b8e2fa5cb48ec4721eeeb5b8d7e0b3b2f186a2ed542619
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/30450104095bb3669ddecb96555f352d4bc4959bcbab0412a47d8a1bab44aaf447b2b1b09ee34e5c6b6cde1ec3b8addd825b10b2052e3681d7cf69304bdd313c
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.0"
dependencies:
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@aws-sdk/util-arn-parser": "npm:3.972.0"
"@smithy/core": "npm:^3.20.6"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/signature-v4": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.10.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/util-config-provider": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-stream": "npm:^4.5.10"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4256ddc2eb9a867ca0198de14d8350f5f681a016c3a471c88a4a0c716a23afcb207885aacf2820cbab8a1131275c9b092aa387be9c1847683017500324b7ab0d
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/middleware-ssec@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/7dee3209098a39ba8f58b88a1a0ff785aea90d2b72fbea9349943e7857de0ad246721d82df328442353de348cea1410261568cdb3cdbae0fe69477044a3313ab
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.0"
dependencies:
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@aws-sdk/util-endpoints": "npm:3.972.0"
"@smithy/core": "npm:^3.20.6"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f22426f7afa17ca642d2a94a8b316b865195034677475e22d3591e3633e74e5f4c144f9e6995e472be0204baf33903805e40853cd6c77b210e16b8f954239c2b
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/nested-clients@npm:3.972.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/middleware-host-header": "npm:3.972.0"
"@aws-sdk/middleware-logger": "npm:3.972.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.972.0"
"@aws-sdk/middleware-user-agent": "npm:3.972.0"
"@aws-sdk/region-config-resolver": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@aws-sdk/util-endpoints": "npm:3.972.0"
"@aws-sdk/util-user-agent-browser": "npm:3.972.0"
"@aws-sdk/util-user-agent-node": "npm:3.972.0"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/core": "npm:^3.20.6"
"@smithy/fetch-http-handler": "npm:^5.3.9"
"@smithy/hash-node": "npm:^4.2.8"
"@smithy/invalid-dependency": "npm:^4.2.8"
"@smithy/middleware-content-length": "npm:^4.2.8"
"@smithy/middleware-endpoint": "npm:^4.4.7"
"@smithy/middleware-retry": "npm:^4.4.23"
"@smithy/middleware-serde": "npm:^4.2.9"
"@smithy/middleware-stack": "npm:^4.2.8"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/node-http-handler": "npm:^4.4.8"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/smithy-client": "npm:^4.10.8"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-base64": "npm:^4.3.0"
"@smithy/util-body-length-browser": "npm:^4.2.0"
"@smithy/util-body-length-node": "npm:^4.2.1"
"@smithy/util-defaults-mode-browser": "npm:^4.3.22"
"@smithy/util-defaults-mode-node": "npm:^4.2.25"
"@smithy/util-endpoints": "npm:^3.2.8"
"@smithy/util-middleware": "npm:^4.2.8"
"@smithy/util-retry": "npm:^4.2.8"
"@smithy/util-utf8": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/aa9326173f834d65c26d7cbf1d428b2786183117f41034cb77d0826e044723313f5874bc1d4615b7278ff2bfc083d37dd8c7c86dc47f9778a218acfadf376b4a
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/region-config-resolver@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@smithy/config-resolver": "npm:^4.4.6"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/952822c448ead097e2450a5a862974373590b32ac76228a69b1419320355cacb2598e1216b1581d3267ac2e4fbc1778b6814175fcf59b12c25f03c375508e9d0
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.972.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/protocol-http": "npm:^5.3.8"
"@smithy/signature-v4": "npm:^5.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/849fceffb8b9f501e1da6a55d18df3f8d735ed2994e194f4981bfb4f7d66d1158a4de31bc3d7c5a1d6a7d13684fcac81f0f09f189909e1fd18889ed64d291c5d
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/token-providers@npm:3.972.0"
dependencies:
"@aws-sdk/core": "npm:3.972.0"
"@aws-sdk/nested-clients": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/property-provider": "npm:^4.2.8"
"@smithy/shared-ini-file-loader": "npm:^4.4.3"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/d4ed377656761528c069ccac8a580da0fb6891ce236cb957eda64d516cc8c06bde9bdc8443aaed00dde9591008dc939932f4d8c322216c72c70028200430c658
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.972.0, @aws-sdk/types@npm:^3.222.0":
version: 3.972.0
resolution: "@aws-sdk/types@npm:3.972.0"
dependencies:
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/22f4f61497b52e5f3c82ba065abe0023ec94fa07188f8900c8045fbf812721cee6268dd81e41d2818f457177c27042cb8851aa48c6bb352cb35240cc937d1fe3
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/util-arn-parser@npm:3.972.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/59d7c780a9fbca2016431c631c1d5fa67a7d0b610be1749c81c127e61cec9e693757b752e50dc96bba2911fde8dd57961946ad7c4bb03f05d92ea84a9d73c723
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/util-endpoints@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@smithy/types": "npm:^4.12.0"
"@smithy/url-parser": "npm:^4.2.8"
"@smithy/util-endpoints": "npm:^3.2.8"
tslib: "npm:^2.6.2"
checksum: 10c0/68eae3a3b66e40a8228047277e8bfd703c8fe6e4f1d875540033310873fa065e63146f21bcc3b17370ad1d5fa98954250edcdc9773302b05dffb9456275cfd38
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.965.3
resolution: "@aws-sdk/util-locate-window@npm:3.965.3"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/05403991649475dc9635c99fd677a1060481a5068f812815e39bb70927314c1bc8a0116bb6ee6c3d85b607d67896a3a7a3fc05705c0a5eb0fd1af9334eda2358
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.0"
dependencies:
"@aws-sdk/types": "npm:3.972.0"
"@smithy/types": "npm:^4.12.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0cc22ee72e2874540c1fa5f5fba1282390f905a02a624df719eea4ffc521cb27c000d394336ca33548f02c2d838a2d4ce7e25cad18a9f4880e444116f8756c45
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.972.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.972.0"
"@aws-sdk/types": "npm:3.972.0"
"@smithy/node-config-provider": "npm:^4.3.8"
"@smithy/types": "npm:^4.12.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/2b0469b6f60c604e30c37c312083b2e6e7f85e4fd79813a3a2d125bb7363cab3310749d0e6f2525fd3d26b072aad033e8aa34a28a6fed914f6b788a5ee35ed60
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.972.0":
version: 3.972.0
resolution: "@aws-sdk/xml-builder@npm:3.972.0"
dependencies:
"@smithy/types": "npm:^4.12.0"
fast-xml-parser: "npm:5.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/595aaa46391e135bf706a470095d1f630ad3f0e3e222521e11c8e04f03dedcf3b31ef8f4f20073fc1d5a04029810f9d99277e071a55effb1700ecdc0057296fc
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.3
resolution: "@aws/lambda-invoke-store@npm:0.2.3"
checksum: 10c0/3869a5d2494ff81fba306d603c0f2e36c59f89c4efdffd1105a208a595da77059547209a163b6f0c1b716e9d273ce24f94dcbd5a08bad74b2602d13711b0cb3b
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.27.1, @babel/code-frame@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/code-frame@npm:7.28.6"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.28.5"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/ed5d57f99455e3b1c23e75ebb8430c6b9800b4ecd0121b4348b97cecb65406a47778d6db61f0d538a4958bb01b4b277e90348a68d39bd3beff1d7c940ed6dd66
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/compat-data@npm:7.28.6"
checksum: 10c0/2d047431041281eaf33e9943d1a269d3374dbc9b498cafe6a18f5ee9aee7bb96f7f6cac0304eab4d13c41fc4db00fe4ca16c7aa44469ca6a211b8b6343b78fc4
languageName: node
linkType: hard
"@babel/core@npm:^7.23.9, @babel/core@npm:^7.27.4":
version: 7.28.6
resolution: "@babel/core@npm:7.28.6"
dependencies:
"@babel/code-frame": "npm:^7.28.6"
"@babel/generator": "npm:^7.28.6"
"@babel/helper-compilation-targets": "npm:^7.28.6"
"@babel/helper-module-transforms": "npm:^7.28.6"
"@babel/helpers": "npm:^7.28.6"
"@babel/parser": "npm:^7.28.6"
"@babel/template": "npm:^7.28.6"
"@babel/traverse": "npm:^7.28.6"
"@babel/types": "npm:^7.28.6"
"@jridgewell/remapping": "npm:^2.3.5"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10c0/716b88b1ab057aa53ffa40f2b2fb7e4ab7a35cd6a065fa60e55ca13d2a666672592329f7ea9269aec17e90cc7ce29f42eda566d07859bfd998329a9f283faadb
languageName: node
linkType: hard
"@babel/generator@npm:^7.27.5, @babel/generator@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/generator@npm:7.28.6"
dependencies:
"@babel/parser": "npm:^7.28.6"
"@babel/types": "npm:^7.28.6"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
checksum: 10c0/162fa358484a9a18e8da1235d998f10ea77c63bab408c8d3e327d5833f120631a77ff022c5ed1d838ee00523f8bb75df1f08196d3657d0bca9f2cfeb8503cc12
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-compilation-targets@npm:7.28.6"
dependencies:
"@babel/compat-data": "npm:^7.28.6"
"@babel/helper-validator-option": "npm:^7.27.1"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10c0/3fcdf3b1b857a1578e99d20508859dbd3f22f3c87b8a0f3dc540627b4be539bae7f6e61e49d931542fe5b557545347272bbdacd7f58a5c77025a18b745593a50
languageName: node
linkType: hard
"@babel/helper-globals@npm:^7.28.0":
version: 7.28.0
resolution: "@babel/helper-globals@npm:7.28.0"
checksum: 10c0/5a0cd0c0e8c764b5f27f2095e4243e8af6fa145daea2b41b53c0c1414fe6ff139e3640f4e2207ae2b3d2153a1abd346f901c26c290ee7cb3881dd922d4ee9232
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-module-imports@npm:7.28.6"
dependencies:
"@babel/traverse": "npm:^7.28.6"
"@babel/types": "npm:^7.28.6"
checksum: 10c0/b49d8d8f204d9dbfd5ac70c54e533e5269afb3cea966a9d976722b13e9922cc773a653405f53c89acb247d5aebdae4681d631a3ae3df77ec046b58da76eda2ac
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-module-transforms@npm:7.28.6"
dependencies:
"@babel/helper-module-imports": "npm:^7.28.6"
"@babel/helper-validator-identifier": "npm:^7.28.5"
"@babel/traverse": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/6f03e14fc30b287ce0b839474b5f271e72837d0cafe6b172d759184d998fbee3903a035e81e07c2c596449e504f453463d58baa65b6f40a37ded5bec74620b2b
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.28.6, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.28.6
resolution: "@babel/helper-plugin-utils@npm:7.28.6"
checksum: 10c0/3f5f8acc152fdbb69a84b8624145ff4f9b9f6e776cb989f9f968f8606eb7185c5c3cfcf3ba08534e37e1e0e1c118ac67080610333f56baa4f7376c99b5f1143d
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-option@npm:7.27.1"
checksum: 10c0/6fec5f006eba40001a20f26b1ef5dbbda377b7b68c8ad518c05baa9af3f396e780bdfded24c4eef95d14bb7b8fd56192a6ed38d5d439b97d10efc5f1a191d148
languageName: node
linkType: hard
"@babel/helpers@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helpers@npm:7.28.6"
dependencies:
"@babel/template": "npm:^7.28.6"
"@babel/types": "npm:^7.28.6"
checksum: 10c0/c4a779c66396bb0cf619402d92f1610601ff3832db2d3b86b9c9dd10983bf79502270e97ac6d5280cea1b1a37de2f06ecbac561bd2271545270407fbe64027cb
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/parser@npm:7.28.6"
dependencies:
"@babel/types": "npm:^7.28.6"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/d6bfe8aa8e067ef58909e9905496157312372ca65d8d2a4f2b40afbea48d59250163755bba8ae626a615da53d192b084bcfc8c9dad8b01e315b96967600de581
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.12.13"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120
languageName: node
linkType: hard
"@babel/plugin-syntax-class-static-block@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/4464bf9115f4a2d02ce1454411baf9cfb665af1da53709c5c56953e5e2913745b0fcce82982a00463d6facbdd93445c691024e310b91431a1e2f024b158f6371
languageName: node
linkType: hard
"@babel/plugin-syntax-import-attributes@npm:^7.24.7":
version: 7.28.6
resolution: "@babel/plugin-syntax-import-attributes@npm:7.28.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/1be160e2c426faa74e5be2e30e39e8d0d8c543063bd5d06cd804f8751b8fbcb82ce824ca7f9ce4b09c003693f6c06a11ce503b7e34d85e1a259631e4c3f72ad2
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.27.1":
version: 7.28.6
resolution: "@babel/plugin-syntax-jsx@npm:7.28.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.28.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/b98fc3cd75e4ca3d5ca1162f610c286e14ede1486e0d297c13a5eb0ac85680ac9656d17d348bddd9160a54d797a08cea5eaac02b9330ddebb7b26732b7b99fb5
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4":
version: 7.10.4