-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
yarn.lock
22667 lines (20602 loc) · 781 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
"@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: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed
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":
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.600.0":
version: 3.600.0
resolution: "@aws-sdk/client-s3@npm:3.600.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.600.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.598.0"
"@aws-sdk/middleware-expect-continue": "npm:3.598.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.598.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-location-constraint": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.598.0"
"@aws-sdk/middleware-signing": "npm:3.598.0"
"@aws-sdk/middleware-ssec": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@aws-sdk/xml-builder": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/eventstream-serde-browser": "npm:^3.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.1"
"@smithy/eventstream-serde-node": "npm:^3.0.2"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-blob-browser": "npm:^3.1.0"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/hash-stream-node": "npm:^3.1.0"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/md5-js": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-stream": "npm:^3.0.2"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/f174ec661d2cf3de44af2dba79ef7004d4d109cd4a672c702fa9d830af597eb942b6297588abdac5541d3a34d7a77d245c1006561aea1ab2ac9a9e69c8727ccb
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.600.0":
version: 3.600.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.600.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sts": "npm:3.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/36d4ffc27971166a09d5b5e5483807688ff807a54ce66f171ce4b7bf7e61b77b23a3d39c5aa1decbef8781b9c203484b36b01b504ab2a9aa86f8b53033865926
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/client-sso@npm:3.598.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/21fff686f2b24494faee4e0f2d53a4420724ad2d2ff43d0f8f2fd6059a1685c14d0e1be22cbd1e1fbc337e73f2a05a4ee887e902cd901848b5be218c9e990d3d
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.600.0":
version: 3.600.0
resolution: "@aws-sdk/client-sts@npm:3.600.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.600.0"
"@aws-sdk/core": "npm:3.598.0"
"@aws-sdk/credential-provider-node": "npm:3.600.0"
"@aws-sdk/middleware-host-header": "npm:3.598.0"
"@aws-sdk/middleware-logger": "npm:3.598.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.598.0"
"@aws-sdk/middleware-user-agent": "npm:3.598.0"
"@aws-sdk/region-config-resolver": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@aws-sdk/util-user-agent-browser": "npm:3.598.0"
"@aws-sdk/util-user-agent-node": "npm:3.598.0"
"@smithy/config-resolver": "npm:^3.0.2"
"@smithy/core": "npm:^2.2.1"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/hash-node": "npm:^3.0.1"
"@smithy/invalid-dependency": "npm:^3.0.1"
"@smithy/middleware-content-length": "npm:^3.0.1"
"@smithy/middleware-endpoint": "npm:^3.0.2"
"@smithy/middleware-retry": "npm:^3.0.4"
"@smithy/middleware-serde": "npm:^3.0.1"
"@smithy/middleware-stack": "npm:^3.0.1"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/url-parser": "npm:^3.0.1"
"@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.4"
"@smithy/util-defaults-mode-node": "npm:^3.0.4"
"@smithy/util-endpoints": "npm:^2.0.2"
"@smithy/util-middleware": "npm:^3.0.1"
"@smithy/util-retry": "npm:^3.0.1"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8232cf94ff57653cd935f1fb12a4b2e393f827afacbfddac8ae3b9f9c5c170ccbc94c5e452580bf90fb3def364a8b37bc3a943dbdb5753aa1d960bba551bf175
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/core@npm:3.598.0"
dependencies:
"@smithy/core": "npm:^2.2.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/signature-v4": "npm:^3.1.0"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/d11646f013c9e6bc64b59aceb61786d36cba3e12f811a825d40fbe9a7fcd0c396d261c45e53cbe4140cbe907995ee2e64dc0dc3fcc073a66469e8374dea43791
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-env@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/19cf683199b4efc12f76a8213d99ec18cf48b202625545ea3c65da73eada7f8898fbb10726c97afd800fd95d9f759530ae65a42a6ff59e475f2f06301a4fd342
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-http@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/fetch-http-handler": "npm:^3.0.2"
"@smithy/node-http-handler": "npm:^3.0.1"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/util-stream": "npm:^3.0.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c0fb39044370a4752a404b1249ce4dcf7f60a0ee51a56f195de53367faff0e4a8e01fd4a3405c6851adacdc9a6e23441b1d94b7f5d85ddcd620b1fa695a15878
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.598.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.598.0"
"@aws-sdk/credential-provider-http": "npm:3.598.0"
"@aws-sdk/credential-provider-process": "npm:3.598.0"
"@aws-sdk/credential-provider-sso": "npm:3.598.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@smithy/credential-provider-imds": "npm:^3.1.1"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/shared-ini-file-loader": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.598.0
checksum: 10c0/b7e46988fc19b20d28bdf639a413bcc41b828b9e971990fe75ef5c8382032ea4f83a498b312be1eebfc4a61b16fcb2a4bb367708df09a3b6539ac0af42dc2492
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.600.0":
version: 3.600.0
resolution: "@aws-sdk/credential-provider-node@npm:3.600.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.598.0"
"@aws-sdk/credential-provider-http": "npm:3.598.0"
"@aws-sdk/credential-provider-ini": "npm:3.598.0"
"@aws-sdk/credential-provider-process": "npm:3.598.0"
"@aws-sdk/credential-provider-sso": "npm:3.598.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@smithy/credential-provider-imds": "npm:^3.1.1"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/shared-ini-file-loader": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/af19cdba38ebd70087508f676b8a09e31da641aa85bc79aee97244b4cacb469e50e5a6f726ed2cfa99c300ee0b9e6bb26a8375e85de295daebf3826694bf1a3c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-process@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/shared-ini-file-loader": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c427ae58664ded056e1a6e1e2092472c167ce6b68c829eaf4d95bf8935088a5baa32063f848f4abf8d6c62900619de8f7b72ec4ce62e86a64801e17b3cb856fb
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.598.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.598.0"
"@aws-sdk/token-providers": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/shared-ini-file-loader": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5c9d9ddf77f26d1a9c629c1cd79cd68ec164f8b0367058e3d8483fb0e3b070d8d8a89497e60dff0fd1dafafb115a1c0eab245de60cc3ebb9025f394148c0fca4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.598.0
checksum: 10c0/ace816f1a8629bc2946a673e38e19b628d9fe72b5a280a01dc1c4597865caa6c245ccf98bcfaf0273e2eb669cf461c95cbe710407c60fa54b329fc2a67587e33
languageName: node
linkType: hard
"@aws-sdk/lib-storage@npm:3.433.0":
version: 3.433.0
resolution: "@aws-sdk/lib-storage@npm:3.433.0"
dependencies:
"@smithy/abort-controller": "npm:^2.0.1"
"@smithy/middleware-endpoint": "npm:^2.1.3"
"@smithy/smithy-client": "npm:^2.1.12"
buffer: "npm:5.6.0"
events: "npm:3.3.0"
stream-browserify: "npm:3.0.0"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-sdk/client-s3": ^3.0.0
checksum: 10c0/56d8d2f11206b678b0b3e382e1480c9af6fe671f936f5d5231e444da5b96c60b0fcb3575bb927a7f600a39fead618c3fda2f022e5ae353a91c35f56523d5cdf5
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/types": "npm:^3.1.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b2a18e4017c6c98677d9238cf795d9d06d3edd8946a5c9b351193f7de22b8fee8c9f9f4b75666bbf6a2f86b451a70291919a03ef5bae7c05ee4f3f7a55d3028d
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/63f9413a8a7381cd460c8464541d2abef063564e7224d6fde508cb7db5f4a1106eb46caeb6789e3014aa3cbd67b65441df0edc9a7892d689f13ed89168340375
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.598.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-sdk/types": "npm:3.598.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/types": "npm:^3.1.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/813157840256e0fd77f4b26661d57e95d3f47ba0044220aa41062b52a85636ae8e24e8a0e1011e7f9a28bcd9f56fdfeafae87fbcd5c04b55220acbabbb2d9f1e
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-host-header@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/fbaf61b1a17bf3dde238b5ec19461251e1538ef8989efbf84b3b962c47a2895bbb87849d6a15910af274bf6859b8b475a90ced70b461a3fa07d820639a9a7204
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a25e261e80c9471d203477eac1580d62bb84bf610394b3b89e7f6bd76b6c9fd2874453d53d7649ef3e4ef4eaf0363a74d79d7292fee25d7847e0b9c49f7e5118
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-logger@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ace490396f2e33c16a50ef42992d7db7d505a975c799d49b68f6a8116a3625f90304cc3a97d4cdd11842e10c5adfb164c2c85b83db1a98cd7596a83310ff7a88
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ae23b8bc6b3bb8cfb0aa6ab20ae3962500f85dc7156ee77d709b21c7d5c1c1ff902753f3d8936071bd1a0af4905171556ebe81f2f91f602f33c205fac62177dd
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/signature-v4": "npm:^3.1.0"
"@smithy/smithy-client": "npm:^3.1.2"
"@smithy/types": "npm:^3.1.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a3f274316bbaad09726484730ccdac5bf1b03f56d882cc9f4a08896da0fea5294be1b419ec6923d61b02fe9babac5f0e4651150357f19bfa1fe693c53abe4cf8
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-signing@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/signature-v4": "npm:^3.1.0"
"@smithy/types": "npm:^3.1.0"
"@smithy/util-middleware": "npm:^3.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/62c7854a935b2452a6f5a4aa468cc4df41031a3e07e84b07888bbadbd60c803a6b553121a86f89dddb94ad5fa18837d759089916dfe5ebc3a80988904ceaa335
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-ssec@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1768b07dbd113cc6a021ce239bbb0e428b9b32ebbb2399875234d30e8356f1f06f75ca918f2949bd8ba4fc03548be6ef7f2c01e4058cb084afa789ff9d8b97ae
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@aws-sdk/util-endpoints": "npm:3.598.0"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f1657b9b5dda8c838952cc5ed1c5f2640d4438dd8aa45129fe099a8627573367432c5d0f6f5768924abb44d2e3e958697b65bb4ec296ad226086c89149f9409e
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/region-config-resolver@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.1"
tslib: "npm:^2.6.2"
checksum: 10c0/c673c27cad974b41dc1676bdbece43003521f4f3ea4453a52b651f4473d93cbf972011d409578dcaed9055bbba8c1b03b7093ad03403373990798edfce3f90e7
languageName: node
linkType: hard
"@aws-sdk/s3-request-presigner@npm:3.433.0":
version: 3.433.0
resolution: "@aws-sdk/s3-request-presigner@npm:3.433.0"
dependencies:
"@aws-sdk/signature-v4-multi-region": "npm:3.433.0"
"@aws-sdk/types": "npm:3.433.0"
"@aws-sdk/util-format-url": "npm:3.433.0"
"@smithy/middleware-endpoint": "npm:^2.1.3"
"@smithy/protocol-http": "npm:^3.0.8"
"@smithy/smithy-client": "npm:^2.1.12"
"@smithy/types": "npm:^2.4.0"
tslib: "npm:^2.5.0"
checksum: 10c0/c40223565fb0150fd7ff58a038781b054e6dd93ea43783a7adbea4ce85d2ffdf03cceda0333fabf77ada6beabf4d2723118562ceaeabef67b07546a3486a9543
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.433.0":
version: 3.433.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.433.0"
dependencies:
"@aws-sdk/types": "npm:3.433.0"
"@smithy/protocol-http": "npm:^3.0.8"
"@smithy/signature-v4": "npm:^2.0.0"
"@smithy/types": "npm:^2.4.0"
tslib: "npm:^2.5.0"
checksum: 10c0/24c258c13d6eab16bca8301c2584979e009ecd2a9467eda4cd0d3e2ddc2b11b78d4fc58ffd2d28b32c39563d91f61d4d663b51762f9d53d46e15c562accbc30c
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.598.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.598.0"
"@aws-sdk/types": "npm:3.598.0"
"@smithy/protocol-http": "npm:^4.0.1"
"@smithy/signature-v4": "npm:^3.1.0"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ce1cb1b6b40259eab943440f9e5ca178814f3b88ed5cf962857a0bd53f4862d38408aabfe30813d1c4fcbe2bedec6e92e42f61b995fd558e1fd66c51a26fb043
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/token-providers@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/property-provider": "npm:^3.1.1"
"@smithy/shared-ini-file-loader": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.598.0
checksum: 10c0/b878fa7786d0e9a968094027b5b605654484db028fe03597d5c0a7b7fd6099b71c7325f6fb34626a83f54846eb18e2b76cc2bedf2705bc6d8f40bf9f28193a2e
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.433.0":
version: 3.433.0
resolution: "@aws-sdk/types@npm:3.433.0"
dependencies:
"@smithy/types": "npm:^2.4.0"
tslib: "npm:^2.5.0"
checksum: 10c0/4431d7a6722f64efce765c3f737450f22d47d03e52dfa137bab33e054ea5c11d0c359e8c57b8bba2cbf576d59d229b9f3fc1909936eb016d1ef94b1a7d47008a
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/types@npm:3.598.0"
dependencies:
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/83abd25e07ffc071e24f36b4fb4dae6e552d662ab55f832f9918ccff251ae80155e30a86d2bd0b98bb8b94adaa2a13f05e1bb071edf491e4f36755084ac63d4f
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.609.0
resolution: "@aws-sdk/types@npm:3.609.0"
dependencies:
"@smithy/types": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/293249118c2fc3cdc79ff9712e3a9f757a2f38e7d5d770507b3bb31d22b8c67ed6f9bdd83c1b6319236b8257d5cc7e2882c15e076200021e8bbf41e4780d430c
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.568.0":
version: 3.568.0
resolution: "@aws-sdk/util-arn-parser@npm:3.568.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4e6168b86a1ff4509f25b56e473c95bdcc0ecbaedcded29cbbd500eb7c156de63f2426282cd50489ac7f321a990056349974730f9e27ac3fe872ba3573b09fb6
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/util-endpoints@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/types": "npm:^3.1.0"
"@smithy/util-endpoints": "npm:^2.0.2"
tslib: "npm:^2.6.2"
checksum: 10c0/2d9b30e59a4970f7796fc859915980a840f3bfe61a4f807b4dcc758ac582837199560dea94a83f818d4a45e3efb8973498a61a6baa5adeb4b88bfc4b862c1fc7
languageName: node
linkType: hard
"@aws-sdk/util-format-url@npm:3.433.0":
version: 3.433.0
resolution: "@aws-sdk/util-format-url@npm:3.433.0"
dependencies:
"@aws-sdk/types": "npm:3.433.0"
"@smithy/querystring-builder": "npm:^2.0.12"
"@smithy/types": "npm:^2.4.0"
tslib: "npm:^2.5.0"
checksum: 10c0/f8350fd16ed1dff2bba243876a487a79fdb2b13590b9fc9f9eccf9736edd79f6645689cc0d14faa163c095ab85497b5e2e5330ce6359b8f6e59e858c3b2a7bac
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.568.0
resolution: "@aws-sdk/util-locate-window@npm:3.568.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/cb1d0919498206fe266542a635cd05909456a06f007a6a550ff897a01390b239e51c2a50e47509e23c179f8df8001bd5fecd900045da5ec989c3f934c3fd3d56
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/types": "npm:^3.1.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/871388e0a32a303005b645cf4592da04a7e75c678aad37b6144d51ca9e7fce16b0ae8b64d8d65c2d32d1f4fbe4f66f433913839031183c7b7ce6e7ebff82dfd2
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.598.0"
dependencies:
"@aws-sdk/types": "npm:3.598.0"
"@smithy/node-config-provider": "npm:^3.1.1"
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/aee77a56a6f9fad67ba2ce48f16fe5b595c4facca61f2ed0d8befd18aa3f3f8f0ad106dd4bc28cb06b121c15073b7a3b07a605919a6b3b3beb1bd2679c2bd88b
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.598.0":
version: 3.598.0
resolution: "@aws-sdk/xml-builder@npm:3.598.0"
dependencies:
"@smithy/types": "npm:^3.1.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eda10933b190a3e9309c74e967d75a13fb1c0de56b5f23fe083f5c9697176e3713d66f98898d31e50740cad06c3b07cbebca0753e49a4d7e87d21215f6baf156
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.16.7, @babel/code-frame@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/code-frame@npm:7.24.7"
dependencies:
"@babel/highlight": "npm:^7.24.7"
picocolors: "npm:^1.0.0"
checksum: 10c0/ab0af539473a9f5aeaac7047e377cb4f4edd255a81d84a76058595f8540784cc3fbe8acf73f1e073981104562490aabfb23008cd66dc677a456a4ed5390fdde6
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.25.2":
version: 7.25.2
resolution: "@babel/compat-data@npm:7.25.2"
checksum: 10c0/5bf1f14d6e5f0d37c19543e99209ff4a94bb97915e1ce01e5334a144aa08cd56b6e62ece8135dac77e126723d63d4d4b96fc603a12c43b88c28f4b5e070270c5
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.9":
version: 7.25.2
resolution: "@babel/core@npm:7.25.2"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.24.7"
"@babel/generator": "npm:^7.25.0"
"@babel/helper-compilation-targets": "npm:^7.25.2"
"@babel/helper-module-transforms": "npm:^7.25.2"
"@babel/helpers": "npm:^7.25.0"
"@babel/parser": "npm:^7.25.0"
"@babel/template": "npm:^7.25.0"
"@babel/traverse": "npm:^7.25.2"
"@babel/types": "npm:^7.25.2"
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/a425fa40e73cb72b6464063a57c478bc2de9dbcc19c280f1b55a3d88b35d572e87e8594e7d7b4880331addb6faef641bbeb701b91b41b8806cd4deae5d74f401
languageName: node
linkType: hard
"@babel/generator@npm:^7.25.0, @babel/generator@npm:^7.7.2":
version: 7.25.0
resolution: "@babel/generator@npm:7.25.0"
dependencies:
"@babel/types": "npm:^7.25.0"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^2.5.1"
checksum: 10c0/d0e2dfcdc8bdbb5dded34b705ceebf2e0bc1b06795a1530e64fb6a3ccf313c189db7f60c1616effae48114e1a25adc75855bc4496f3779a396b3377bae718ce7
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.25.2":
version: 7.25.2
resolution: "@babel/helper-compilation-targets@npm:7.25.2"
dependencies:
"@babel/compat-data": "npm:^7.25.2"
"@babel/helper-validator-option": "npm:^7.24.8"
browserslist: "npm:^4.23.1"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10c0/de10e986b5322c9f807350467dc845ec59df9e596a5926a3b5edbb4710d8e3b8009d4396690e70b88c3844fe8ec4042d61436dd4b92d1f5f75655cf43ab07e99
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-module-imports@npm:7.24.7"
dependencies:
"@babel/traverse": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 10c0/97c57db6c3eeaea31564286e328a9fb52b0313c5cfcc7eee4bc226aebcf0418ea5b6fe78673c0e4a774512ec6c86e309d0f326e99d2b37bfc16a25a032498af0
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.25.2":
version: 7.25.2
resolution: "@babel/helper-module-transforms@npm:7.25.2"
dependencies:
"@babel/helper-module-imports": "npm:^7.24.7"
"@babel/helper-simple-access": "npm:^7.24.7"
"@babel/helper-validator-identifier": "npm:^7.24.7"
"@babel/traverse": "npm:^7.25.2"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/adaa15970ace0aee5934b5a633789b5795b6229c6a9cf3e09a7e80aa33e478675eee807006a862aa9aa517935d81f88a6db8a9f5936e3a2a40ec75f8062bc329
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.24.7, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.24.8
resolution: "@babel/helper-plugin-utils@npm:7.24.8"
checksum: 10c0/0376037f94a3bfe6b820a39f81220ac04f243eaee7193774b983e956c1750883ff236b30785795abbcda43fac3ece74750566830c2daa4d6e3870bb0dff34c2d
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-simple-access@npm:7.24.7"
dependencies:
"@babel/traverse": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 10c0/7230e419d59a85f93153415100a5faff23c133d7442c19e0cd070da1784d13cd29096ee6c5a5761065c44e8164f9f80e3a518c41a0256df39e38f7ad6744fed7
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.24.8":
version: 7.24.8
resolution: "@babel/helper-string-parser@npm:7.24.8"
checksum: 10c0/6361f72076c17fabf305e252bf6d580106429014b3ab3c1f5c4eb3e6d465536ea6b670cc0e9a637a77a9ad40454d3e41361a2909e70e305116a23d68ce094c08
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-identifier@npm:7.24.7"
checksum: 10c0/87ad608694c9477814093ed5b5c080c2e06d44cb1924ae8320474a74415241223cc2a725eea2640dd783ff1e3390e5f95eede978bc540e870053152e58f1d651
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.24.8":
version: 7.24.8
resolution: "@babel/helper-validator-option@npm:7.24.8"
checksum: 10c0/73db93a34ae89201351288bee7623eed81a54000779462a986105b54ffe82069e764afd15171a428b82e7c7a9b5fec10b5d5603b216317a414062edf5c67a21f
languageName: node
linkType: hard
"@babel/helpers@npm:^7.25.0":
version: 7.25.0
resolution: "@babel/helpers@npm:7.25.0"
dependencies:
"@babel/template": "npm:^7.25.0"
"@babel/types": "npm:^7.25.0"
checksum: 10c0/b7fe007fc4194268abf70aa3810365085e290e6528dcb9fbbf7a765d43c74b6369ce0f99c5ccd2d44c413853099daa449c9a0123f0b212ac8d18643f2e8174b8
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/highlight@npm:7.24.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.24.7"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10c0/674334c571d2bb9d1c89bdd87566383f59231e16bcdcf5bb7835babdf03c9ae585ca0887a7b25bdf78f303984af028df52831c7989fecebb5101cc132da9393a
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.0, @babel/parser@npm:^7.25.3":
version: 7.25.3
resolution: "@babel/parser@npm:7.25.3"
dependencies:
"@babel/types": "npm:^7.25.2"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/874b01349aedb805d6694f867a752fdc7469778fad76aca4548d2cc6ce96087c3ba5fb917a6f8d05d2d1a74aae309b5f50f1a4dba035f5a2c9fcfe6e106d2c4e
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.24.7
resolution: "@babel/plugin-syntax-import-attributes@npm:7.24.7"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.24.7"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/eccc54d0f03c96d0eec7a6e2fa124dadbc7298345b62ffc4238f173308c4325b5598f139695ff05a95cf78412ef6903599e4b814496612bf39aad4715a16375b
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: