-
Notifications
You must be signed in to change notification settings - Fork 5
/
yarn.lock
14315 lines (12934 loc) · 505 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: 10c0
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10c0/53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10c0/92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43
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":
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-ec2@npm:3.712.0":
version: 3.712.0
resolution: "@aws-sdk/client-ec2@npm:3.712.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.712.0"
"@aws-sdk/client-sts": "npm:3.712.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-node": "npm:3.712.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-sdk-ec2": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "npm:3.712.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.2.0"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/97de0ec0e576783200ead07434faf841a49516d20d9275d3a1036adc420d431244ef02edc2f015b7a497d7138e974fc055c01907f67c6a41e3452cda88b7bd7e
languageName: node
linkType: hard
"@aws-sdk/client-ssm@npm:3.712.0":
version: 3.712.0
resolution: "@aws-sdk/client-ssm@npm:3.712.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.712.0"
"@aws-sdk/client-sts": "npm:3.712.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-node": "npm:3.712.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "npm:3.712.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.2.0"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/b7e160922e42da9d9e38c799d3a65e4363dc1fc61e6830e186ce2528bf061ebd2cc8242a10bd38446442aea75bf87596c78c6c70840c413895fda13bb88c2649
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.712.0":
version: 3.712.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.712.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-node": "npm:3.712.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "npm:3.712.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.712.0
checksum: 10c0/10eebcf2943f230703e08c54c2b57c09863ee69200faeeb05e62e55a7cf6fbb911932f07b5fb97ea024ed9ff559580909a612445bc5f59963e233798a0ab16c6
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.712.0":
version: 3.712.0
resolution: "@aws-sdk/client-sso@npm:3.712.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "npm:3.712.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9de61923becc98a61943e2fbf10382727c32508e9a824b4925306fc337260d6620a9f637ad6563eecf55835635dc7b2b284c10aef2bd5643ce4ea75944e3be12
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.712.0":
version: 3.712.0
resolution: "@aws-sdk/client-sts@npm:3.712.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.712.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-node": "npm:3.712.0"
"@aws-sdk/middleware-host-header": "npm:3.709.0"
"@aws-sdk/middleware-logger": "npm:3.709.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.709.0"
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/region-config-resolver": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@aws-sdk/util-user-agent-browser": "npm:3.709.0"
"@aws-sdk/util-user-agent-node": "npm:3.712.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@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.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/21d06234556a98194b07cfeb133b9b89e43021fbcf9bb6b06b87a38d8523fb4ee43a01f4a58a8176bb84fc7fad3131ac780850a80c0685a675f006bdb4db9276
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/core@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/signature-v4": "npm:^4.2.4"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-middleware": "npm:^3.0.11"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/9ae5b510c2376f6fc79a70bb6773408cbcb24e9b686d6efc55b75e791c1fe03079fee18399a006be0441381c67d051d06db758a76c0e7fceb7f65c41dc91154d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/credential-provider-env@npm:3.709.0"
dependencies:
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/e68fc5ba198255754e4e2605bf305790cf82183139971ab152b03f30a2d6316ce64007473639566a14c335f0ca9afca1e0c1dd4df3b88b511ff6fe1745397233
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/credential-provider-http@npm:3.709.0"
dependencies:
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-stream": "npm:^3.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/f899cc2810802d3df3efad8a355426cee8313e9391055b1c420223852c6574630036dff0aaae4a2c98963451be77803f4d409174d833d68bb4907390af9ad0cd
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.712.0":
version: 3.712.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.712.0"
dependencies:
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/credential-provider-env": "npm:3.709.0"
"@aws-sdk/credential-provider-http": "npm:3.709.0"
"@aws-sdk/credential-provider-process": "npm:3.709.0"
"@aws-sdk/credential-provider-sso": "npm:3.712.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@smithy/credential-provider-imds": "npm:^3.2.8"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.712.0
checksum: 10c0/6dad19252c269425a5beeadf34a0eed0c0ef1e4d47f933707be6fcbd2e8d1a0bdbfec9b0f774a2439c64aa32bb4b0188c865af0916e249635da9870c469ea00c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.712.0":
version: 3.712.0
resolution: "@aws-sdk/credential-provider-node@npm:3.712.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.709.0"
"@aws-sdk/credential-provider-http": "npm:3.709.0"
"@aws-sdk/credential-provider-ini": "npm:3.712.0"
"@aws-sdk/credential-provider-process": "npm:3.709.0"
"@aws-sdk/credential-provider-sso": "npm:3.712.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@smithy/credential-provider-imds": "npm:^3.2.8"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/d0c08460c1b7e7bf7f3fd0a41d13ce7a2ad9a35e962721e6a4abdbf5b81b361becaf8549f0d7173d07e146a00c5642819775f53d026a120bf6b630001d0eeecb
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/credential-provider-process@npm:3.709.0"
dependencies:
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/34db091e276fb4f9cde7dd4bb11d3fd6937a7bd30452b6db0b6e6a95a7180a60e3aefd41f5ec0461ee9e2aa6db040e251ec4c4158b30ad6d68da381cef97a487
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.712.0":
version: 3.712.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.712.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.712.0"
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/token-providers": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/270500bc4a0dd072cc3dbfc49a4f78b1a9b3805a6f50ce21f27363f2c4d4c7c4e9748403c5cdc5739fd56550f6923bb27f665fbe0f400d5107121b3d4a862168
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.709.0"
dependencies:
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.709.0
checksum: 10c0/9b81d6f600b01d5c9123d41ae732a1b4667bf70eddf18dbdcc724304f8a66b0a9cd1d87f7e07ccdd6f2172e46c03fd810d518827149bb1605d400ca69ea04993
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/middleware-host-header@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/0b5b7da73f936946cf6f073ce5635cfaf35e11c58980ef59360c9cdf64a8f6932016db67b2683d64a8be984c19f5aadeb4e9808df7b5c008616c3401b4edc652
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/middleware-logger@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.0"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/324f5d9252d8880aa4cd069a92a2d68cd8ba72d00aeea8628a3071214ea43de3180b5091fc06bd79fe24221bde3e0bec348e9b4978a8a3eaf43b09e159bfb513
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/aa1b049fed68e676905a97b2cdfe7e1faf1839c0296a42ebfce7cb93a9c5d1a63bd96cc1e56fb0339de4d4ab969c1d5e2a1012b6a2ba90b697b1b08e138ede62
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-ec2@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-format-url": "npm:3.709.0"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/signature-v4": "npm:^4.2.4"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c9d75e38d3d27a9198d3fdff3503e54f83e4516a027250457846136dc79ca338c8f9e7358409a56576b661aa2f609c0d586e3689648b927fda924f99948ed60f
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.709.0"
dependencies:
"@aws-sdk/core": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@aws-sdk/util-endpoints": "npm:3.709.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/cb788870ae6cced748f931e05021cb03f14d16f1d843beb47ea3e52f93e14a1d2c5aef2d177d8bbc6fc1a63754b1de3fb713931a0f996b7626ab796fa9ad8eba
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/region-config-resolver@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.11"
tslib: "npm:^2.6.2"
checksum: 10c0/f42e2cb8c23f6600b06a4bbba128c2ffd3bc764b8e942ef2cc607cef55e679ab6a2ab9d2655eb72cf08749982992a7a1a3957a034d8f38ddad1da5e39b6cb8b4
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/token-providers@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.709.0
checksum: 10c0/17fb682004a1b90f4190b8c09372ce565f390118c03afdde8ed5ffd6f25354a7d9c18d3970eaa1e6a25992dbfef128cee5b4b040c8d4d281d22e507c0582c502
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/types@npm:3.709.0"
dependencies:
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/332884276344189e53d7044e27b9d6ec89fe1f06cdbd24afafcfc08c817a54ccf8b74312aa866895caae18a8f3a8d985a5afdf8553d90843998866b86acebacf
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/util-endpoints@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-endpoints": "npm:^2.1.7"
tslib: "npm:^2.6.2"
checksum: 10c0/946449c2ebb209cd9fb784e5a1dcb005f4249b41c9f6025cb6f5677bf0e884b6a791976926fa768b529376dabbde807eed4161573d06dea4dff125549052bdcc
languageName: node
linkType: hard
"@aws-sdk/util-format-url@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/util-format-url@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.0"
"@smithy/querystring-builder": "npm:^3.0.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/a3164289780bb147583ff1f755c0d60b9401e680ff2790c1661be88f40fe94ee7975b5d82c496d6a41e560e3f14ec5e319d44971f3adfaba431d734c55528d98
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.310.0
resolution: "@aws-sdk/util-locate-window@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/9f040d9cb01687317ac9f61d5c9e349aeb506deb114f6259d48949428695e5c4e40b36920091451f74e037b016a6534e43d5a5eb225e18fa45eedb998c87bd6f
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.709.0"
dependencies:
"@aws-sdk/types": "npm:3.709.0"
"@smithy/types": "npm:^3.7.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/28b12c8f5dab6d3f78f7108aeffd8173d2e3ff7738f20ce9ab8e4c2d0e628bdf15cff31466a58bbe0904dd04008e4f4def9db7bf67c59e9cfd6c06d30e9000a7
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.712.0":
version: 3.712.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.712.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.709.0"
"@aws-sdk/types": "npm:3.709.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/3ab1b713e3a25b1673b263ba163369457a7520f0d133e8e614006f44634f58e0823331d4f672bb177f2c797c630d91b70cc3044a03b8ed141b9cdb84704fb48b
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/code-frame@npm:7.12.13"
dependencies:
"@babel/highlight": "npm:^7.12.13"
checksum: 10c0/bc966d2d7900c54009c6abb472548390d405601c09ec91ee7a0fd0e503e51c407e5bb5adbc656c3052b7944631c4f599908e6efbc8e59ce62166e285a15f97be
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/code-frame@npm:7.14.5"
dependencies:
"@babel/highlight": "npm:^7.14.5"
checksum: 10c0/6dd398ce8d7981f78236c1d02878b32f9d4ab953bcc6bae3fa472370f61c4f45a2db188ea5560e3615d8bdd44c1c69bb3c21997a19d57607183f864e73539946
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: 10c0/f4cc8ae1000265677daf4845083b72f88d00d311adb1a93c94eb4b07bf0ed6828a81ae4ac43ee7d476775000b93a28a9cddec18fbdc5796212d8dcccd5de72bd
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/code-frame@npm:7.26.0"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c0/46f7e367714be736b52ea3c01b24f47e2102e210fb83021d1c8237d8fc511b9538909e16e2fcdbb5cb6173e0794e28624309a59014e52fcfb7bde908f5284388
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.25.9":
version: 7.26.0
resolution: "@babel/compat-data@npm:7.26.0"
checksum: 10c0/6325c9151a3c9b0a3a807e854a26255ef66d989bff331475a935af9bb18f160e0fffe6aed550e4e96b63f91efcd874bfbaab2a1f4a2f8d25645d712a0de590fb
languageName: node
linkType: hard
"@babel/core@npm:7.26.0":
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: 10c0/91de73a7ff5c4049fbc747930aa039300e4d2670c2a91f5aa622f1b4868600fc89b01b6278385fbcd46f9574186fa3d9b376a9e7538e50f8d118ec13cfbcb63e
languageName: node
linkType: hard
"@babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/generator@npm:7.26.0"
dependencies:
"@babel/parser": "npm:^7.26.0"
"@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: 10c0/b6bb9185f19a97eaf58e04a6d39a13237076678e7ed16b6321dea914535d4bf6a8d7727c9dcb65539845aa0096b326eb67be4bab764bd74bcfd848e2eda68609
languageName: node
linkType: hard
"@babel/generator@npm:^7.7.2":
version: 7.14.5
resolution: "@babel/generator@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: 10c0/43ffd18dfda15e225c1661bfeea1ce0b771e29f35da703afe5ec100f707b1e91ba0e72b1f154d1f8edb53eba1ae2bf49fd051daf0cb0e3284dc14980fba6f17a
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: 10c0/a6b26a1e4222e69ef8e62ee19374308f060b007828bc11c65025ecc9e814aba21ff2175d6d3f8bf53c863edd728ee8f94ba7870f8f90a37d39552ad9933a8aaa
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: 10c0/078d3c2b45d1f97ffe6bb47f61961be4785d2342a4156d8b42c92ee4e1b7b9e365655dd6cb25329e8fe1a675c91eeac7e3d04f0c518b67e417e29d6e27b6aa70
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: 10c0/ee111b68a5933481d76633dad9cdab30c41df4479f0e5e1cc4756dc9447c1afd2c9473b5ba006362e35b17f4ebddd5fca090233bef8dfc84dca9d9127e56ec3a
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.8.0":
version: 7.14.5
resolution: "@babel/helper-plugin-utils@npm:7.14.5"
checksum: 10c0/de33dc7c7b4b334f87a78c6ad2cbab3e25eaef07edcc7941bc03907eed12833fa222890bb3fe83968b108d90898946756caec42d8a51ac3783c77299736de977
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.18.6":
version: 7.18.9
resolution: "@babel/helper-plugin-utils@npm:7.18.9"
checksum: 10c0/cefb9032c901abc536a34a4b741ea440e46b3251ddc1abf3ef8b3a673ef1b343f856b1faa5c78ad73fc44c97b143d6531a63c0420e4c3c8959571ea2eabeba62
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: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.12.11":
version: 7.12.11
resolution: "@babel/helper-validator-identifier@npm:7.12.11"
checksum: 10c0/b88e813b950bcd935edb5a59cab948c39d94fe108477ede3ff7eb38098e25f093793aa4d7f5a0012deff1f6c448f5a33fda0cbb4b662cee3ef33151c18d4d748
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-validator-identifier@npm:7.14.5"
checksum: 10c0/b80e89eb3609f2b6fb8f7baaf988a1840d317e84e479c64d5e903eb9cf3d4fd1ee7f98bbaa8b0402cbc34cc2ec443fbdbce7022e07db26ed3a81ab542b552f3f
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 10c0/2ff1d3833154d17ccf773b8a71fdc0cd0e7356aa8033179d0e3133787dfb33d97796cbff8b92a97c56268205337dfc720227aeddc677c1bc08ae1b67a95252d7
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: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
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: 10c0/27fb195d14c7dcb07f14e58fe77c44eea19a6a40a74472ec05c441478fa0bb49fa1c32b2d64be7a38870ee48ef6601bdebe98d512f0253aea0b39756c4014f3e
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: 10c0/343333cced6946fe46617690a1d0789346960910225ce359021a88a60a65bc0d791f0c5d240c0ed46cf8cc63b5fd7df52734ff14e43b9c32feae2b61b1647097
languageName: node
linkType: hard
"@babel/highlight@npm:^7.12.13":
version: 7.13.8
resolution: "@babel/highlight@npm:7.13.8"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.12.11"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/47622abc0c15f3119f8861c39e79da46c1514e2e6a5e8f8f33a6b50bb77e4209115018f13cc8a8b619a9e6974a13c0e0182de9e16f8c7904f58d6382b917f24d
languageName: node
linkType: hard
"@babel/highlight@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/highlight@npm:7.14.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.14.5"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/b9d16895e4bf780d69504c7cc8a9871dc668bcd1851c4a7a7f039f34ba5bb1f04efc4ad6b79112496c7896d541a4d38efa02e7d8be8fb0a1f352097cff8ba79d
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/highlight@npm:7.22.13"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 10c0/65f20132c7ada5d82d343dc23ca61bcd040980f7bd59e480532bcd7f7895aa7abe58470ae8a4f851fd244b71b42a7ad915f7c515fef8f1c2e003777721ebdbe6
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.5, @babel/parser@npm:^7.14.7":
version: 7.14.7
resolution: "@babel/parser@npm:7.14.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/f0a6c8f259c99587dc75e72f75dcd94ceea7af414c1a858dac57d7db3dc0b5af49966de2d205fabbb120245b0a89cd9a76fb7d1c78ad474b72e44ada8d41f3e6
languageName: node
linkType: hard
"@babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/parser@npm:7.26.0"
dependencies:
"@babel/types": "npm:^7.26.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/05619e239be811f4d8a9f471534c0d7dbc44faf38f6a6445663710982d2f9b057be43b4d18906d4e28830958752bdadbf88903abf687304a2bda86c4b3489455
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.8.3":
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-import-meta@npm:^7.8.3":
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.7.2":
version: 7.18.6
resolution: "@babel/plugin-syntax-jsx@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/d6d88b16e727bfe75c6ad6674bf7171bd5b2007ebab3f785eff96a98889cc2dd9d9b05a9ad8a265e04e67eddee81d63fcade27db033bb5aa5cc73f45cc450d6d
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/ee1eab52ea6437e3101a0a7018b0da698545230015fc8ab129d292980ec6dff94d265e9e90070e8ae5fed42f08f1622c14c94552c77bcac784b37f503a82ff26
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81