-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
13001 lines (11684 loc) · 459 KB
/
yarn.lock
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: 10
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@angular-devkit/core@npm:16.0.1":
version: 16.0.1
resolution: "@angular-devkit/core@npm:16.0.1"
dependencies:
ajv: "npm:8.12.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.2.0"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10/9be91bf7fb152200a0317172a4927a997c6daa7e5666ed23c87cb71c8d0e2595284af323ee5aa794b96a3604bcea77c29af341a8f5e1cc10ac45269c8341d518
languageName: node
linkType: hard
"@angular-devkit/core@npm:17.3.11":
version: 17.3.11
resolution: "@angular-devkit/core@npm:17.3.11"
dependencies:
ajv: "npm:8.12.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.2.1"
picomatch: "npm:4.0.1"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10/eb9a9ea1383cea8e55a8a0686b7c79790a2b4600a9250b2b826af527e5c1f3dbffb14d6a19b899d4c414f8e2723df71608c2f06612e895b553b5777174c207d2
languageName: node
linkType: hard
"@angular-devkit/schematics-cli@npm:16.0.1":
version: 16.0.1
resolution: "@angular-devkit/schematics-cli@npm:16.0.1"
dependencies:
"@angular-devkit/core": "npm:16.0.1"
"@angular-devkit/schematics": "npm:16.0.1"
ansi-colors: "npm:4.1.3"
inquirer: "npm:8.2.4"
symbol-observable: "npm:4.0.0"
yargs-parser: "npm:21.1.1"
bin:
schematics: bin/schematics.js
checksum: 10/99ec0ccbd24cf5c7287298c7b2660a06be0d27024d11f243121bf57e833eee81b0f4d2f96852d1c41f916d4905f868ec758c787c4a2d8310153ee3db45783533
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:16.0.1":
version: 16.0.1
resolution: "@angular-devkit/schematics@npm:16.0.1"
dependencies:
"@angular-devkit/core": "npm:16.0.1"
jsonc-parser: "npm:3.2.0"
magic-string: "npm:0.30.0"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10/c82dae3c49ad9e2b709beeacb8ba2050b8c369bb58f919f444782c9f17daf83944c6d74d6e37392a62f133ed44f979f3ea81f12550084e28503bd9a2c13a7d88
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:17.3.11":
version: 17.3.11
resolution: "@angular-devkit/schematics@npm:17.3.11"
dependencies:
"@angular-devkit/core": "npm:17.3.11"
jsonc-parser: "npm:3.2.1"
magic-string: "npm:0.30.8"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10/752246dba1146a99f051faa6b9ed048f76c4a8c0fff73aee153023945b2e47d3bd07a7cbd5b0b60776640dad3c31d0ded8b760fc3995417369b02630e7dd8d08
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: 10/1b0a56ad4cb44c9512d8b1668dcf9306ab541d3a73829f435ca97abaec8d56f3db953db03ad0d0698754fea16fcd803d11fa42e0889bc7b803c6a030b04c63de
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: 10/08bd1db17d7c772fa6e34b38a360ce77ad041164743113eefa8343c2af917a419697daf090c5854129ef19f3a9673ed1fd8446e03eb32c8ed52d2cc409b0dee7
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: 10/239f4c59cce9abd33c01117b10553fbef868a063e74faf17edb798c250d759a2578841efa2837e5e51854f52ef57dbc40780b073cae20f89ebed6a8cc7fa06f1
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: 10/2b1b701ca6caa876333b4eb2b96e5187d71ebb51ebf8e2d632690dbcdedeff038202d23adcc97e023437ed42bb1963b7b463e343687edf0635fd4b98b2edad1a
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: 10/f46aace7b873c615be4e787ab0efd0148ef7de48f9f12c7d043e05c52e52b75bb0bf6dbcb9b2852d940d7724fab7b6d5ff1469160a3dd024efe7a68b5f70df8c
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: 10/6ed0c7e17f4f6663d057630805c45edb35d5693380c24ab52d4c453ece303c6c8a6ade9ee93c97dda77d9f6cae376ffbb44467057161c513dffa3422250edaf5
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: 10/f80a174c404e1ad4364741c942f440e75f834c08278fa754349fe23a6edc679d480ea9ced5820774aee58091ed270067022d8059ecf1a7ef452d58134ac7e9e1
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/client-s3@npm:3.693.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/client-sso-oidc": "npm:3.693.0"
"@aws-sdk/client-sts": "npm:3.693.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/credential-provider-node": "npm:3.693.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.693.0"
"@aws-sdk/middleware-expect-continue": "npm:3.693.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.693.0"
"@aws-sdk/middleware-host-header": "npm:3.693.0"
"@aws-sdk/middleware-location-constraint": "npm:3.693.0"
"@aws-sdk/middleware-logger": "npm:3.693.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.693.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.693.0"
"@aws-sdk/middleware-ssec": "npm:3.693.0"
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/region-config-resolver": "npm:3.693.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@aws-sdk/util-user-agent-browser": "npm:3.693.0"
"@aws-sdk/util-user-agent-node": "npm:3.693.0"
"@aws-sdk/xml-builder": "npm:3.693.0"
"@smithy/config-resolver": "npm:^3.0.11"
"@smithy/core": "npm:^2.5.2"
"@smithy/eventstream-serde-browser": "npm:^3.0.12"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.9"
"@smithy/eventstream-serde-node": "npm:^3.0.11"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/hash-blob-browser": "npm:^3.1.8"
"@smithy/hash-node": "npm:^3.0.9"
"@smithy/hash-stream-node": "npm:^3.1.8"
"@smithy/invalid-dependency": "npm:^3.0.9"
"@smithy/md5-js": "npm:^3.0.9"
"@smithy/middleware-content-length": "npm:^3.0.11"
"@smithy/middleware-endpoint": "npm:^3.2.2"
"@smithy/middleware-retry": "npm:^3.0.26"
"@smithy/middleware-serde": "npm:^3.0.9"
"@smithy/middleware-stack": "npm:^3.0.9"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/url-parser": "npm:^3.0.9"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.26"
"@smithy/util-defaults-mode-node": "npm:^3.0.26"
"@smithy/util-endpoints": "npm:^2.1.5"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-retry": "npm:^3.0.9"
"@smithy/util-stream": "npm:^3.3.0"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.8"
tslib: "npm:^2.6.2"
checksum: 10/54bdc85e1e795388eb2e9243216051aa44b365299169559f02bed336809074ca6a91935aadce819344878203c60e655325a6afd98edeca0a48ed58bc56b8409e
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.693.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/credential-provider-node": "npm:3.693.0"
"@aws-sdk/middleware-host-header": "npm:3.693.0"
"@aws-sdk/middleware-logger": "npm:3.693.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.693.0"
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/region-config-resolver": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@aws-sdk/util-user-agent-browser": "npm:3.693.0"
"@aws-sdk/util-user-agent-node": "npm:3.693.0"
"@smithy/config-resolver": "npm:^3.0.11"
"@smithy/core": "npm:^2.5.2"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/hash-node": "npm:^3.0.9"
"@smithy/invalid-dependency": "npm:^3.0.9"
"@smithy/middleware-content-length": "npm:^3.0.11"
"@smithy/middleware-endpoint": "npm:^3.2.2"
"@smithy/middleware-retry": "npm:^3.0.26"
"@smithy/middleware-serde": "npm:^3.0.9"
"@smithy/middleware-stack": "npm:^3.0.9"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/url-parser": "npm:^3.0.9"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.26"
"@smithy/util-defaults-mode-node": "npm:^3.0.26"
"@smithy/util-endpoints": "npm:^2.1.5"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-retry": "npm:^3.0.9"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.693.0
checksum: 10/efcd645a02443cb474321138c4959cfd7a273a8d731358cc6c340e4fb85f60b6814fd3edace4769f64242399953827cfd0ba3fffcff952293fb3f439b900d7a9
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/client-sso@npm:3.693.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/middleware-host-header": "npm:3.693.0"
"@aws-sdk/middleware-logger": "npm:3.693.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.693.0"
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/region-config-resolver": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@aws-sdk/util-user-agent-browser": "npm:3.693.0"
"@aws-sdk/util-user-agent-node": "npm:3.693.0"
"@smithy/config-resolver": "npm:^3.0.11"
"@smithy/core": "npm:^2.5.2"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/hash-node": "npm:^3.0.9"
"@smithy/invalid-dependency": "npm:^3.0.9"
"@smithy/middleware-content-length": "npm:^3.0.11"
"@smithy/middleware-endpoint": "npm:^3.2.2"
"@smithy/middleware-retry": "npm:^3.0.26"
"@smithy/middleware-serde": "npm:^3.0.9"
"@smithy/middleware-stack": "npm:^3.0.9"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/url-parser": "npm:^3.0.9"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.26"
"@smithy/util-defaults-mode-node": "npm:^3.0.26"
"@smithy/util-endpoints": "npm:^2.1.5"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-retry": "npm:^3.0.9"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/b05944c769a8b959a8872e75504cd363006e41365d08ac17aa173fc1fe95d35ac4bd5901756610ac7ce461f459f45c69d6bbd72a30b043387925cf8ffdb4b1a1
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/client-sts@npm:3.693.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.693.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/credential-provider-node": "npm:3.693.0"
"@aws-sdk/middleware-host-header": "npm:3.693.0"
"@aws-sdk/middleware-logger": "npm:3.693.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.693.0"
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/region-config-resolver": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@aws-sdk/util-user-agent-browser": "npm:3.693.0"
"@aws-sdk/util-user-agent-node": "npm:3.693.0"
"@smithy/config-resolver": "npm:^3.0.11"
"@smithy/core": "npm:^2.5.2"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/hash-node": "npm:^3.0.9"
"@smithy/invalid-dependency": "npm:^3.0.9"
"@smithy/middleware-content-length": "npm:^3.0.11"
"@smithy/middleware-endpoint": "npm:^3.2.2"
"@smithy/middleware-retry": "npm:^3.0.26"
"@smithy/middleware-serde": "npm:^3.0.9"
"@smithy/middleware-stack": "npm:^3.0.9"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/url-parser": "npm:^3.0.9"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.26"
"@smithy/util-defaults-mode-node": "npm:^3.0.26"
"@smithy/util-endpoints": "npm:^2.1.5"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-retry": "npm:^3.0.9"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/aac13ed42192b66715220c259c2e42ff707e1cc033109f5a53fa9f6def07e1438047d8b84d2d4c15e1124d645e59e841d2f09ddd4ae0645cbc64c4ff34cfb786
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/core@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/core": "npm:^2.5.2"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-middleware": "npm:^3.0.9"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/b152ad668cf767da560bef2ef794444bc38f79bcc8969dcbd0989a271af74d2f85d019223adda429feeb685f8faf433f065d27317ab039b05f7ce50f9f0e6d06
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-env@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/dc31919012f5c3e9fe138bd94bb4899ddd13751823b56268181cd9112c64bc1e9ef671ecaa8d69610d086e22a2ca806d2242715cce40b5d30649469ec887a5c7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-http@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-stream": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10/9f951dc66f1ca68cd383f9d3acadba3ae5ebdc03f0441384c4f366574c5d30cc9e0f947949aeb7fee5b190a087158e5f1be62188e92300383c1274c4b3c3fa97
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/credential-provider-env": "npm:3.693.0"
"@aws-sdk/credential-provider-http": "npm:3.693.0"
"@aws-sdk/credential-provider-process": "npm:3.693.0"
"@aws-sdk/credential-provider-sso": "npm:3.693.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/credential-provider-imds": "npm:^3.2.6"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.693.0
checksum: 10/499b656c4c55addc3d0c440bd9e0b66f11921e6e77d7b418c0e5f2132c151651df955dd2ffb69bacf1e36aafcc1e2c5fbab1995924532ccb06ed78bf3f4b82dd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-node@npm:3.693.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.693.0"
"@aws-sdk/credential-provider-http": "npm:3.693.0"
"@aws-sdk/credential-provider-ini": "npm:3.693.0"
"@aws-sdk/credential-provider-process": "npm:3.693.0"
"@aws-sdk/credential-provider-sso": "npm:3.693.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/credential-provider-imds": "npm:^3.2.6"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/6679d1a9834a658cc8fed42fcd493f9b872a3c7ddb5d5ea165ba8a4eae023d8e43533dcc7cd45d79963cb2f1d16f8c120f7f16848f12a6ed07cb1083a33034a7
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-process@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/a06debeeae759118560541cb0db484e375e3d071d8035b873b94bc24b6cffe7b55644aff2387e15971bdf8f1a108431689407226da99ab31dea1bee5c904e28e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.693.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.693.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/token-providers": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/db406047ae3dac8f0347113210a8bd6b113905b73861b7966a3f345229a1835473d0e677d3cf5db8aae34e659c31598ba8894d02c3af6b273e79e25a26aba1c5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.693.0
checksum: 10/7aaba45cf527ac34c80205a76007bbdc25b8a92ba182ec967036ff17c11f7b136a29eb1b59ded7160ae6937b89da6b6b41b7955e6471380bb5f248b14c308385
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/6b27bd08e20f3e35505fc156e3bea3919cf7a8cfb57c1c736c8e6c9a20d2ad7d5ac2eb0cd2fe1de5ae05de984e9d892478f489151933dfdfad8326e87b36a2ce
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/7039189cabab4cd21c73a6ada5bc303200e74c63e767cc08a808f4dac4a4c404061923c4fcb1f80fcbef8577987a4348d8ab92e265d2ffe1f9069edfff4cd3a9
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.693.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.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-stream": "npm:^3.3.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/b4b1a35f5a12f9594805320713c7f794472e6bf9e51e7adcadddb17d3b59ec8c2cbe48a2582816047716a11ae0a477486590376b7346fc7655cc57cd79d945d5
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-host-header@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/710499a5c96acbc37bb7102a88600f7c08603c76188bf99a3e5c485b9fa71548197b0e009a48edf871ea0644967408fc914569064fa40b5d716d09b95f17e317
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/2bf75935daa7d7fb9a85a375b4400a2d0b3a2058dc61ace3620a21d3fd78b6d2f699f82116315b88d2602fd5cb95ec422a8d73c49fee5c636c9b9cc6e2ed8898
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-logger@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/f5bf26756992a821721dcd315f60549a1c4f2475ad12012e1744bdd5821980397ccd045ff3877a5630f2756ae5de3c185d9b1462b961ff28192d390cf2d3ec56
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/fd44cbb696f658d0d0bb8c27d56d469c929062e62e363b19d96c8221fe5dc99f03db2ae34becb013878842878593ef8d74fce64bfbb3f8c974cd7acbaf3d6b4b
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/core": "npm:^2.5.2"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-stream": "npm:^3.3.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/3667aae769de95b159e8cb0f1ed8db74620d99f184cd7c457b33c8276996640c19f011a0461573d79e4500294f00a141d9c5326530a9ea683eacec8f114276b1
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-ssec@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/d36c1f417bd2a72517a4589d3ce9ad0e1f75591368d0469e48db2f173b194046f30c61da0a89280eb8d89fe80e0705da2551ae573308b267cc6feb4b7e17352c
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@smithy/core": "npm:^2.5.2"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/ee0b51acb0b28d6e1cff4d7aaa4e4b26b5bcd37e15a8cca9d980d9baa45e152c6649c957ed562eb06cf403f1a0b53fa38dda270a832220946e8d7cd9d8fab2d5
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/region-config-resolver@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.9"
tslib: "npm:^2.6.2"
checksum: 10/5435ad1d3a54fb2ccb3d7ab221b487a613adcc1a0abb5f97001673e4b7307f78e9a684a576e482bf7e463d635a51dd1112a08fa488decff82a7cf36a5debaba6
languageName: node
linkType: hard
"@aws-sdk/s3-request-presigner@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/s3-request-presigner@npm:3.693.0"
dependencies:
"@aws-sdk/signature-v4-multi-region": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-format-url": "npm:3.693.0"
"@smithy/middleware-endpoint": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/e59dd96396fc7f48f60282c1f31c58b4a48eb7f0b21aca3f2d33a2220f61eafa4e7ee4a2f1dbf6b765305d0edcdb6576bef54ec4f8d3eb3c48b2cbb64d3625a1
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.693.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/898eec3582bf20a0a902a7ca87372da61c0353a734c91ccb9ef40acb6d7f62a25dd9840ed955ecca7a0c97b1b6144045420072887e679eaea2515e10e0af9018
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/token-providers@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.693.0
checksum: 10/155ff53a8ea5aac4da80687fad253ae7d1431cfb3f41aeb5871c25ca0196674a74fd0430b86234bf3fb4f8f6bcf7f53a28888b57a2e4db07bf8b147d51216a7e
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.692.0, @aws-sdk/types@npm:^3.222.0":
version: 3.692.0
resolution: "@aws-sdk/types@npm:3.692.0"
dependencies:
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/876c8b53c8ae7f118abeb2f39069059851bd23c6ce4f552f8d483b1d648edb62e5be684d08d5d3399615a0d07b34c33c1fd579cccfff10d11f7cee96eedb575b
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-arn-parser@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/a8bddf13c04cb73a1f595935eb5cc737eea8f8ab775b3b12abd53238ab006c7fd306dea7e4f6c2958fdf5254ef03082a6f77d1d82c525f41b48d06108c68fefc
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-endpoints@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-endpoints": "npm:^2.1.5"
tslib: "npm:^2.6.2"
checksum: 10/cf13df5ce9cdf39e7cb1fc803f2a72629ba2d3b98b0e0e76f8af7593d34489c4e2e5fbd9b0ff823297fa940bbc8e65dd986f8d6213c0ecc7771fc7e10beba696
languageName: node
linkType: hard
"@aws-sdk/util-format-url@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-format-url@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/querystring-builder": "npm:^3.0.9"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/b7b86ae0524d71e5584cb11e653962fcdcd55e0bdf01acacde0cdd1df546d73801a8f8a2dcdad042e073cdfa85e48c39a49282405f3a3fad2c29f4d6ebd55802
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.693.0
resolution: "@aws-sdk/util-locate-window@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/78fe124a6085550acfd39f9996ee06cd2725727b823db19c82485284a61a98435a24989740f421bcefda8eb09f94f022b646ce3ccdc6723336bf3c251a9b69a8
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/types": "npm:^3.7.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/f9300a3f79f554f70b722f783a519ad815b4bce8bcdacf4df94060aaa33f9046833915f2a8d1e17889937ddd08f2677adbc3bd48542e44fa8baa05eeec98ed00
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.693.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/57406bc3877ddc87808090ea1eaddf21b9e772b7436ed3a00f1429ecb6b1e54ab38e7d4c18044df66f68e83b496e2db025698080d1cf88fd5de65ad0eadc8f2b
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/xml-builder@npm:3.693.0"
dependencies:
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10/fc6260a5b749ada12ac0c36fa056bee42aa4d12387c09416916eb6058b9783c6b29239198fe52753717df13fb9cc7e7672273bce3114083e77a41057c70b4873
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10/db2c2122af79d31ca916755331bb4bac96feb2b334cdaca5097a6b467fdd41963b89b14b6836a14f083de7ff887fc78fa1b3c10b14e743d33e12dbfe5ee3d223
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.25.9":
version: 7.26.2
resolution: "@babel/compat-data@npm:7.26.2"
checksum: 10/ed9eed6b62ce803ef4a320b1dac76b0302abbb29c49dddf96f3e3207d9717eb34e299a8651bb1582e9c3346ead74b6d595ffced5b3dae718afa08b18741f8402
languageName: node
linkType: hard
"@babel/core@npm:^7.23.9":
version: 7.26.0
resolution: "@babel/core@npm:7.26.0"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.26.0"
"@babel/generator": "npm:^7.26.0"
"@babel/helper-compilation-targets": "npm:^7.25.9"
"@babel/helper-module-transforms": "npm:^7.26.0"
"@babel/helpers": "npm:^7.26.0"
"@babel/parser": "npm:^7.26.0"
"@babel/template": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.26.0"
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: 10/65767bfdb1f02e80d3af4f138066670ef8fdd12293de85ef151758a901c191c797e86d2e99b11c4cdfca33c72385ecaf38bbd7fa692791ec44c77763496b9b93
languageName: node
linkType: hard
"@babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0":
version: 7.26.2
resolution: "@babel/generator@npm:7.26.2"
dependencies:
"@babel/parser": "npm:^7.26.2"
"@babel/types": "npm:^7.26.0"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10/71ace82b5b07a554846a003624bfab93275ccf73cdb9f1a37a4c1094bf9dc94bb677c67e8b8c939dbd6c5f0eda2e8f268aa2b0d9c3b9511072565660e717e045
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-compilation-targets@npm:7.25.9"
dependencies:
"@babel/compat-data": "npm:^7.25.9"
"@babel/helper-validator-option": "npm:^7.25.9"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/8053fbfc21e8297ab55c8e7f9f119e4809fa7e505268691e1bedc2cf5e7a5a7de8c60ad13da2515378621b7601c42e101d2d679904da395fa3806a1edef6b92e
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-module-imports@npm:7.25.9"
dependencies:
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10/e090be5dee94dda6cd769972231b21ddfae988acd76b703a480ac0c96f3334557d70a965bf41245d6ee43891e7571a8b400ccf2b2be5803351375d0f4e5bcf08
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helper-module-transforms@npm:7.26.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/9841d2a62f61ad52b66a72d08264f23052d533afc4ce07aec2a6202adac0bfe43014c312f94feacb3291f4c5aafe681955610041ece2c276271adce3f570f2f5
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-string-parser@npm:7.25.9"
checksum: 10/c28656c52bd48e8c1d9f3e8e68ecafd09d949c57755b0d353739eb4eae7ba4f7e67e92e4036f1cd43378cc1397a2c943ed7bcaf5949b04ab48607def0258b775
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10/3f9b649be0c2fd457fa1957b694b4e69532a668866b8a0d81eabfa34ba16dbf3107b39e0e7144c55c3c652bf773ec816af8df4a61273a2bb4eb3145ca9cf478e
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-option@npm:7.25.9"
checksum: 10/9491b2755948ebbdd68f87da907283698e663b5af2d2b1b02a2765761974b1120d5d8d49e9175b167f16f72748ffceec8c9cf62acfbee73f4904507b246e2b3d
languageName: node
linkType: hard
"@babel/helpers@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helpers@npm:7.26.0"
dependencies:
"@babel/template": "npm:^7.25.9"
"@babel/types": "npm:^7.26.0"
checksum: 10/fd4757f65d10b64cfdbf4b3adb7ea6ffff9497c53e0786452f495d1f7794da7e0898261b4db65e1c62bbb9a360d7d78a1085635c23dfc3af2ab6dcba06585f86
languageName: node
linkType: hard
"@babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/parser@npm:7.26.2"
dependencies:
"@babel/types": "npm:^7.26.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10/8baee43752a3678ad9f9e360ec845065eeee806f1fdc8e0f348a8a0e13eef0959dabed4a197c978896c493ea205c804d0a1187cc52e4a1ba017c7935bab4983d
languageName: node
linkType: hard
"@babel/template@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/template@npm:7.25.9"
dependencies:
"@babel/code-frame": "npm:^7.25.9"
"@babel/parser": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10/e861180881507210150c1335ad94aff80fd9e9be6202e1efa752059c93224e2d5310186ddcdd4c0f0b0fc658ce48cb47823f15142b5c00c8456dde54f5de80b2
languageName: node
linkType: hard
"@babel/traverse@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/traverse@npm:7.25.9"
dependencies:
"@babel/code-frame": "npm:^7.25.9"
"@babel/generator": "npm:^7.25.9"
"@babel/parser": "npm:^7.25.9"
"@babel/template": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
debug: "npm:^4.3.1"
globals: "npm:^11.1.0"
checksum: 10/7431614d76d4a053e429208db82f2846a415833f3d9eb2e11ef72eeb3c64dfd71f4a4d983de1a4a047b36165a1f5a64de8ca2a417534cc472005c740ffcb9c6a
languageName: node
linkType: hard
"@babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/types@npm:7.26.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
checksum: 10/40780741ecec886ed9edae234b5eb4976968cc70d72b4e5a40d55f83ff2cc457de20f9b0f4fe9d858350e43dab0ea496e7ef62e2b2f08df699481a76df02cd6e
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10/9d226461c1e91e95f067be2bdc5e6f99cfe55a721f45afb44122e23e4b8602eeac4ff7325af6b5a369f36396ee1514d3809af3f57769066d80d83790d8e53339
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 10/b6e38a1712fab242c86a241c229cf562195aad985d0564bd352ac404be583029e89e93028ffd2c251d2c407ecac5fb0cbdca94a2d5c10f29ac806ede0508b3ff
languageName: node
linkType: hard