-
Notifications
You must be signed in to change notification settings - Fork 2
/
yarn.lock
23562 lines (21403 loc) · 845 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
"@adraffy/ens-normalize@npm:1.11.0":
version: 1.11.0
resolution: "@adraffy/ens-normalize@npm:1.11.0"
checksum: 10/abef75f21470ea43dd6071168e092d2d13e38067e349e76186c78838ae174a46c3e18ca50921d05bea6ec3203074147c9e271f8cb6531d1c2c0e146f3199ddcb
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10/bdc35758b552bcf045733ac047fb7f9a07c4678b944c641adfbd41f798b4b91fffd0fdc0df2578d9b0afc7b4d636aa6e110ead5d6281a2adc1ab90efd7f057f8
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: 10/e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@apocentre/alias-sampling@npm:^0.5.3":
version: 0.5.3
resolution: "@apocentre/alias-sampling@npm:0.5.3"
checksum: 10/b1050c19a4391875d042d573eb24d2a885612b98e903b47f0a90e18c98c2b8c82b796f1e622bd9fe61a01ed2a420a47a8acf8af578654634776cefd9b7a32dcd
languageName: node
linkType: hard
"@arbitrum/nitro-contracts@npm:^1.2.1":
version: 1.3.0
resolution: "@arbitrum/nitro-contracts@npm:1.3.0"
dependencies:
"@offchainlabs/upgrade-executor": "npm:1.1.0-beta.0"
"@openzeppelin/contracts": "npm:4.5.0"
"@openzeppelin/contracts-upgradeable": "npm:4.5.2"
patch-package: "npm:^6.4.7"
checksum: 10/cc931bf6d65f8249cfe0527b5e7be2bfb30c40ea8408320949db76e20076b91dcbb384f5b5fb997f303f1b4b83310a0f98a5382d4ec1a58be8cf92267d615121
languageName: node
linkType: hard
"@arbitrum/sdk@npm:^4.0.0":
version: 4.0.1
resolution: "@arbitrum/sdk@npm:4.0.1"
dependencies:
"@ethersproject/address": "npm:^5.0.8"
"@ethersproject/bignumber": "npm:^5.1.1"
"@ethersproject/bytes": "npm:^5.0.8"
async-mutex: "npm:^0.4.0"
ethers: "npm:^5.1.0"
checksum: 10/3d81f8645022f723f36dd8711493f8bddd5f4306e7ed2d1a31b34091492f0be972bae03d3abef5dbf6b230e01e1693c826e6e624ae831f3bfe6cf42166f14350
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.577.0":
version: 3.717.0
resolution: "@aws-sdk/client-s3@npm:3.717.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.716.0"
"@aws-sdk/client-sts": "npm:3.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.714.0"
"@aws-sdk/middleware-expect-continue": "npm:3.714.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.717.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-location-constraint": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.716.0"
"@aws-sdk/middleware-ssec": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.0"
"@aws-sdk/xml-builder": "npm:3.709.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/eventstream-serde-browser": "npm:^3.0.14"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.11"
"@smithy/eventstream-serde-node": "npm:^3.0.13"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-blob-browser": "npm:^3.1.10"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/hash-stream-node": "npm:^3.1.10"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/md5-js": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@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.1"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-stream": "npm:^3.3.2"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.2.0"
tslib: "npm:^2.6.2"
checksum: 10/d2c71b30e49698d3d1f43d76344f986805c0b17b26381c096b608090ccfe03917faf2f0aff5da302c7df5d8e09085579fdf4255be995d634ac32218470874f0f
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.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.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@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.1"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@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.716.0
checksum: 10/c10a280fda8ce9bcd22542f57fe193ca8e991dd86e0eadfc7996dc4992af2e94e51efc2373f9af76cfd3f57ff3e53d65cda93d0939ef5433059c8f157c6429c3
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-sso@npm:3.716.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.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.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@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.1"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@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: 10/99a9e370d962f4006dbbdfe92cce8a50f86d8ffe8a4d0b3f5c2b3b5b1aa3c47bb35cc7b031a74b9de7e37c73149e97ca638c834662f9988db0172438dfb78220
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/client-sts@npm:3.716.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.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-node": "npm:3.716.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.716.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.6"
"@smithy/middleware-retry": "npm:^3.0.31"
"@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.1"
"@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.31"
"@smithy/util-defaults-mode-node": "npm:^3.0.31"
"@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: 10/d67f4122f6f6fb97380f86911c2f2e64584f8aff94d65032fcbe32ab89771655d245f593f10479beb51af23e136d5cae44de0a71462c0327dddf35642b102e27
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/core@npm:3.716.0"
dependencies:
"@aws-sdk/types": "npm:3.714.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.1"
"@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: 10/13b7905f3a9c997137cc9cf1d8ad900d49f531437c9176394a1ca76ccd2220c058e303e361d43fd928bbd2281e911046436ec81175ee577f6cb752a261a3068a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-env@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10/17507c5652d9f10472d5393863662582e02cdde5a506dc402fd214f16adb509d44a5c571d497f21710f74973ae962390fc2f8d3ebdcf882ba6556b6123df1dce
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-http@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.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.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-stream": "npm:^3.3.2"
tslib: "npm:^2.6.2"
checksum: 10/2a8a50c5b7cca0bf04a4f9bf49472f62203397f513ce8d59d53b3cfdd1f79ad4a20952de19f994ae83a3b4d0b703bca5d066110a0ad742329b1c531efac1f316
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/credential-provider-env": "npm:3.716.0"
"@aws-sdk/credential-provider-http": "npm:3.716.0"
"@aws-sdk/credential-provider-process": "npm:3.716.0"
"@aws-sdk/credential-provider-sso": "npm:3.716.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.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.716.0
checksum: 10/a256a7e606d63811f1921823472c9e4edc90384684c47b288419f40603a4bdd46273910a7b2bb3675bb88946df0514835d60c551485d49497615498c05cd06ca
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-node@npm:3.716.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.716.0"
"@aws-sdk/credential-provider-http": "npm:3.716.0"
"@aws-sdk/credential-provider-ini": "npm:3.716.0"
"@aws-sdk/credential-provider-process": "npm:3.716.0"
"@aws-sdk/credential-provider-sso": "npm:3.716.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.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: 10/2763b518fdf6ce80ad02b0fa8185eedcdf8ed113f6a9184684ed5431a9c3794be53c82ad8e1b143aa8463f27d76d2696711dbdbfb6d228efebc5a16cbb5abf80
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-process@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.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: 10/61c765a3289ae2cac3573b97a5df308eba8daa5250a1621ff139261a898a55eda9447c7a71199bb4d6f0a592e0bd3cda5dd1c211f863d51f6dd4de834922d8b4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.716.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.716.0"
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/token-providers": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.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: 10/141e11fdc34abfddec57d76cf905ca0deb180c37f4a0b45e9eaa3d6a1f0c90ec697f003dd9a5f8cff1452cda6271280aa7c567d71d857c52eb34c0c3354b21ed
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.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.716.0
checksum: 10/f5cdc876e05fe503048913bbec7b4688725bd10bf0cd92eab3a5fe9687ecd082aee7ecf52dd4e5fcd105c84e70fe768ae85e95b397d4f7b9f69310f819d38e91
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/b3f816754d22243e8f7cd9a04a34a2e83ff9d5eead9c2f7df7d09e6372e8b4ee63f16e837e65e983b4b4104b93481a5db22394b37427b91e88706bc8024466f7
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10/1f2089b61a3eceb078f317021da5e8a470d5504f7f7192efe0b052b8b8aac160c274afa380720620f3cc8f0dd3ef9e1d2946b0d6ea72eeff479fa90a7ce36e42
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.717.0":
version: 3.717.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.717.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.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-stream": "npm:^3.3.2"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/fc2e32aa7597f1a0c34d8d229c3070c203c098069226ee1650124b54b0774ba5b3b614a29b8a9f0a7dfcb8da4ea135d93b40cc53d90c883dd374d9cc5fd5813d
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-host-header@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10/197c7e99123f68a3e160121e50c05548c6c17edbab1f5ef50b76b819eec431a56b41f5beb340670da028d1dad432efef540c6e25c52c96393d83cb392d10d799
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10/d05d93ab432e291cbcacfa9f2fb7e2c9448be68f36d4ab89d36f0e4bd25784d4e32cbcf177af645f8669f398b8d4cdea0c25985ea33f0c2a8aa22b5be7c3bf75
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-logger@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10/652d894e2b0a65f7c1fa727fde83f2f7fc7e6ef48f334e356d31ea8ca2cb6c19623f18118aa9f1f08b431e2d626763ace1bbe656f65405de34e8c8b8d243a57d
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10/091b3db8f0e0e4d15b5aca7f4073a4ab70e08281030a877d2f7f4e3d02f3b9c61f27d8c405695b3e324eb1d7425a6dd07ef1975b1a1e15002c07cd80aa14b46c
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/signature-v4": "npm:^4.2.4"
"@smithy/smithy-client": "npm:^3.5.1"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-stream": "npm:^3.3.2"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/a4dc06bb2477ac46814ff9e11ef8ffc72d001ee4172ad8f00d0a2c76587f66ffdf173b41172c4b201459dd71c9f1f3d8c0ce9ae4fe025b198734ec8c50d62938
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-ssec@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10/b2455187bb5eec1aff6dcd7cdb22600014a439400b893d9f2d9445f12ecfdc23fffbd0b46b6fb907c6f92e10a3edf1a59b6f76e0b0220009e8dfcaa07391abac
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.716.0"
dependencies:
"@aws-sdk/core": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.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: 10/589e252007115d0f9036cb006e027aa30a2f085b170366e152e7c8622abd0f66ab3540183e8f74b581637c788cf6dc41f8c4ee9b8d2a0f37a2a7d5a919da1645
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/region-config-resolver@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.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: 10/47288fb535dd2351fed3b3e1b4a5da0f8465736cf954c6a22e3ebcdbf6ad762fb23e8dbc596f3531de4ae7a32ee302c0e14c5212894770cd856747a268b5009b
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.716.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/signature-v4": "npm:^4.2.4"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10/5090a824cbb11596aecf484da2a2e7281d06bc4ed27f397e373215afdc8e3c4a8fe1d8c32be4345002fd588354e166d93c103f788b7e5f176692a5955881e4e6
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/token-providers@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.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.714.0
checksum: 10/ed89afc1429b2b3a4171bcdc5299d4a9d634bdb13bc015c3282826c8108e271377354932216338143b998defc5dce6da02fbd7aeb96bafeb888ab3d242a22a9c
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/types@npm:3.714.0"
dependencies:
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10/e06001800ded7e3b2258985e188c12aa9b6a649717d7d7d9446741b814de306f9462d64e812bb51d57903755ef002aa2cba795556feb0eb056f2909f9e09a867
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.577.0
resolution: "@aws-sdk/types@npm:3.577.0"
dependencies:
"@smithy/types": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/a384ea32fcd0ae02a8058aa1f0d370de4c54f38a5e88bf649090e85bde09ef36efca49351f88669152626826441a7de8a3b1dfd0d6886553eeb2234d5205a196
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.714.0":
version: 3.714.0
resolution: "@aws-sdk/util-endpoints@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-endpoints": "npm:^2.1.7"
tslib: "npm:^2.6.2"
checksum: 10/05beed12f55ba401ed290b2ba891bdd630d2c2f470eaac46b849bebd0d8f39e83951082c7dc352f0e473255eb4cd40453d2a8d085ed7978348bb359b81c7fd32
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: 10/372acb9c6df3861afae4ced5d8d3aad40d8dc633684e765b6ed74baff7f4f30a778f96829ee81d56639c14cb4346043069a2b911c58387dd20591c0f6e3a524d
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/28aadd11c4b650c583db99b6cb8b150e788cc0aad3d2ccdab1f7a0c1b4d200b2dcc22d9a2eab7b9919f2b82cb162f6f23c46e06254dd1686441ecc4ce07682e9
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.716.0":
version: 3.716.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.716.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.716.0"
"@aws-sdk/types": "npm:3.714.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: 10/f8f114a0c764653470735839dfc9065863cd9d059998563d6db27c804d05ebd830f772cfd55934567e7738e4d9a5d7b68efbfc29533de54507bc526db4127b15
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.709.0":
version: 3.709.0
resolution: "@aws-sdk/xml-builder@npm:3.709.0"
dependencies:
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10/301ff9ca2ff7afb399eb0d422fb8ebab8ae45830221d1b5f3087b1a71d000381f8f71749ab951501ebb71fea10dbc3504f03fa1e6d87f24caa5a2a098dae87e1
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.10
resolution: "@babel/code-frame@npm:7.22.10"
dependencies:
"@babel/highlight": "npm:^7.22.10"
chalk: "npm:^2.4.2"
checksum: 10/53620d831c8f2230a7d2fbe833c01c071740a642317c960d45cda9b0b2d0492e152e00ab45aad8b55329ba5de647354b95f42b546fb905c0b7acf78d3f2d3ecd
languageName: node
linkType: hard
"@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.18.5":
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.16.7":
version: 7.22.15
resolution: "@babel/helper-module-imports@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 10/5ecf9345a73b80c28677cfbe674b9f567bb0d079e37dcba9055e36cb337db24ae71992a58e1affa9d14a60d3c69907d30fe1f80aea105184501750a58d15c81c
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.22.5":
version: 7.22.5
resolution: "@babel/helper-string-parser@npm:7.22.5"
checksum: 10/7f275a7f1a9504da06afc33441e219796352a4a3d0288a961bc14d1e30e06833a71621b33c3e60ee3ac1ff3c502d55e392bcbc0665f6f9d2629809696fab7cdd
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.22.20, @babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10/df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b
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/highlight@npm:^7.22.10":
version: 7.22.10
resolution: "@babel/highlight@npm:7.22.10"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 10/faea6aa09ea7bc02d4d51aabdd1303b00aa2587933a08310d7502f29140bc8bcb32a74387d81dc08e97edd04f891e266623b90043ea4502e052dcbfd7e423a3c
languageName: node
linkType: hard
"@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/runtime@npm:^7.0.0, @babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.21.0":
version: 7.23.2
resolution: "@babel/runtime@npm:7.23.2"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10/abdcbdd590c7e31762e1bdab94dd466823c8bcedd3ff2fde85eeb94dac7cccaef151ac37c428bda7018ededd27c9a82b4dfeb621f978ad934232475a902f8e3a
languageName: node
linkType: hard
"@babel/runtime@npm:^7.19.4, @babel/runtime@npm:^7.23.2":
version: 7.26.0
resolution: "@babel/runtime@npm:7.26.0"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10/9f4ea1c1d566c497c052d505587554e782e021e6ccd302c2ad7ae8291c8e16e3f19d4a7726fb64469e057779ea2081c28b7dbefec6d813a22f08a35712c0f699
languageName: node
linkType: hard
"@babel/runtime@npm:^7.25.0":
version: 7.25.6
resolution: "@babel/runtime@npm:7.25.6"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10/0c4134734deb20e1005ffb9165bf342e1074576621b246d8e5e41cc7cb315a885b7d98950fbf5c63619a2990a56ae82f444d35fe8c4691a0b70c2fe5673667dc
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.22.15":
version: 7.23.0
resolution: "@babel/types@npm:7.23.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.22.5"