-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathyarn.lock
More file actions
12461 lines (11253 loc) · 436 KB
/
yarn.lock
File metadata and controls
12461 lines (11253 loc) · 436 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@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, @ampproject/remapping@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
languageName: node
linkType: hard
"@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.231.0":
version: 3.824.0
resolution: "@aws-sdk/client-s3@npm:3.824.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/credential-provider-node": "npm:3.823.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.821.0"
"@aws-sdk/middleware-expect-continue": "npm:3.821.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.823.0"
"@aws-sdk/middleware-host-header": "npm:3.821.0"
"@aws-sdk/middleware-location-constraint": "npm:3.821.0"
"@aws-sdk/middleware-logger": "npm:3.821.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.821.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.823.0"
"@aws-sdk/middleware-ssec": "npm:3.821.0"
"@aws-sdk/middleware-user-agent": "npm:3.823.0"
"@aws-sdk/region-config-resolver": "npm:3.821.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.824.0"
"@aws-sdk/types": "npm:3.821.0"
"@aws-sdk/util-endpoints": "npm:3.821.0"
"@aws-sdk/util-user-agent-browser": "npm:3.821.0"
"@aws-sdk/util-user-agent-node": "npm:3.823.0"
"@aws-sdk/xml-builder": "npm:3.821.0"
"@smithy/config-resolver": "npm:^4.1.4"
"@smithy/core": "npm:^3.5.1"
"@smithy/eventstream-serde-browser": "npm:^4.0.4"
"@smithy/eventstream-serde-config-resolver": "npm:^4.1.2"
"@smithy/eventstream-serde-node": "npm:^4.0.4"
"@smithy/fetch-http-handler": "npm:^5.0.4"
"@smithy/hash-blob-browser": "npm:^4.0.4"
"@smithy/hash-node": "npm:^4.0.4"
"@smithy/hash-stream-node": "npm:^4.0.4"
"@smithy/invalid-dependency": "npm:^4.0.4"
"@smithy/md5-js": "npm:^4.0.4"
"@smithy/middleware-content-length": "npm:^4.0.4"
"@smithy/middleware-endpoint": "npm:^4.1.9"
"@smithy/middleware-retry": "npm:^4.1.10"
"@smithy/middleware-serde": "npm:^4.0.8"
"@smithy/middleware-stack": "npm:^4.0.4"
"@smithy/node-config-provider": "npm:^4.1.3"
"@smithy/node-http-handler": "npm:^4.0.6"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/smithy-client": "npm:^4.4.1"
"@smithy/types": "npm:^4.3.1"
"@smithy/url-parser": "npm:^4.0.4"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.17"
"@smithy/util-defaults-mode-node": "npm:^4.0.17"
"@smithy/util-endpoints": "npm:^3.0.6"
"@smithy/util-middleware": "npm:^4.0.4"
"@smithy/util-retry": "npm:^4.0.5"
"@smithy/util-stream": "npm:^4.2.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.5"
tslib: "npm:^2.6.2"
checksum: 10/47bc02455833f96a662255de7243f7ea1893a86e968d5070c90aea52c8976d4eff8dfb5bd70345a82d1a0e6938568a742a20c41210f3e16b8e2244268f41f6bd
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/client-sso@npm:3.823.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/middleware-host-header": "npm:3.821.0"
"@aws-sdk/middleware-logger": "npm:3.821.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.821.0"
"@aws-sdk/middleware-user-agent": "npm:3.823.0"
"@aws-sdk/region-config-resolver": "npm:3.821.0"
"@aws-sdk/types": "npm:3.821.0"
"@aws-sdk/util-endpoints": "npm:3.821.0"
"@aws-sdk/util-user-agent-browser": "npm:3.821.0"
"@aws-sdk/util-user-agent-node": "npm:3.823.0"
"@smithy/config-resolver": "npm:^4.1.4"
"@smithy/core": "npm:^3.5.1"
"@smithy/fetch-http-handler": "npm:^5.0.4"
"@smithy/hash-node": "npm:^4.0.4"
"@smithy/invalid-dependency": "npm:^4.0.4"
"@smithy/middleware-content-length": "npm:^4.0.4"
"@smithy/middleware-endpoint": "npm:^4.1.9"
"@smithy/middleware-retry": "npm:^4.1.10"
"@smithy/middleware-serde": "npm:^4.0.8"
"@smithy/middleware-stack": "npm:^4.0.4"
"@smithy/node-config-provider": "npm:^4.1.3"
"@smithy/node-http-handler": "npm:^4.0.6"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/smithy-client": "npm:^4.4.1"
"@smithy/types": "npm:^4.3.1"
"@smithy/url-parser": "npm:^4.0.4"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.17"
"@smithy/util-defaults-mode-node": "npm:^4.0.17"
"@smithy/util-endpoints": "npm:^3.0.6"
"@smithy/util-middleware": "npm:^4.0.4"
"@smithy/util-retry": "npm:^4.0.5"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/2fe5a853ffc72e4973584c1573869795a66880f8eaec167344ecb3d51cc65097daa9688d9c4575aa424edf983c32fd047eef2fdfb6651c04a92ae66f34c3530a
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/core@npm:3.823.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@aws-sdk/xml-builder": "npm:3.821.0"
"@smithy/core": "npm:^3.5.1"
"@smithy/node-config-provider": "npm:^4.1.3"
"@smithy/property-provider": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/signature-v4": "npm:^5.1.2"
"@smithy/smithy-client": "npm:^4.4.1"
"@smithy/types": "npm:^4.3.1"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.4"
"@smithy/util-utf8": "npm:^4.0.0"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/0ce60eb58681e0fdeb928863238f7d3e41ababe2ae8b77a8084d55397fc00225eab3314082947b4d8089a9c1379114478719fdc499c1dca1c60fa0f45b791e33
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/credential-provider-env@npm:3.823.0"
dependencies:
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/property-provider": "npm:^4.0.4"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/ec90fd9c14dce5bd6b0749eab46560697f16ca7ab7a979643acff03bc621c38c32f7c0b07c9d9fee49e8d2169f2647cafe26f6014de972307f7ca379f4fa07ab
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/credential-provider-http@npm:3.823.0"
dependencies:
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/fetch-http-handler": "npm:^5.0.4"
"@smithy/node-http-handler": "npm:^4.0.6"
"@smithy/property-provider": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/smithy-client": "npm:^4.4.1"
"@smithy/types": "npm:^4.3.1"
"@smithy/util-stream": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10/67bc9c8061cf83ad41ce2e0bae4aeab4a47cf686039a7eb4d54cec67077dc9a3fcdfc4121025df584fdb1fb9067b950781b1778d3098c8c2b1f847136f98b24a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.823.0"
dependencies:
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/credential-provider-env": "npm:3.823.0"
"@aws-sdk/credential-provider-http": "npm:3.823.0"
"@aws-sdk/credential-provider-process": "npm:3.823.0"
"@aws-sdk/credential-provider-sso": "npm:3.823.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.823.0"
"@aws-sdk/nested-clients": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/credential-provider-imds": "npm:^4.0.6"
"@smithy/property-provider": "npm:^4.0.4"
"@smithy/shared-ini-file-loader": "npm:^4.0.4"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/fc173a0f4b26fd00c5d6f77bdc997ddb26354094bed0d3b010c86d25143cc8f82b0ef637092d5f3ce83ddae58a3cafdb36c7fb32881c34f80d2dacac999a3ea4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/credential-provider-node@npm:3.823.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.823.0"
"@aws-sdk/credential-provider-http": "npm:3.823.0"
"@aws-sdk/credential-provider-ini": "npm:3.823.0"
"@aws-sdk/credential-provider-process": "npm:3.823.0"
"@aws-sdk/credential-provider-sso": "npm:3.823.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/credential-provider-imds": "npm:^4.0.6"
"@smithy/property-provider": "npm:^4.0.4"
"@smithy/shared-ini-file-loader": "npm:^4.0.4"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/b2e1069d7be69b75bc1123219f26d11096dd665cee608d86fd1a795a6fe68a37a44c6ce5cd3c6e3b17f19bf5d8237382dabce2be1b7938d303698cc899d3db29
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/credential-provider-process@npm:3.823.0"
dependencies:
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/property-provider": "npm:^4.0.4"
"@smithy/shared-ini-file-loader": "npm:^4.0.4"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/6d6f1a38f534c682dd8c6a6e79941497df2a10ed286b699c831f98c86dae7a3bfd9ee8c93fe87b806f8e260b34256476b2d92b88a139becfb3fabc2462954db3
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.823.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.823.0"
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/token-providers": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/property-provider": "npm:^4.0.4"
"@smithy/shared-ini-file-loader": "npm:^4.0.4"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/b58fb4663c7251801282717667d5c055fd970170bb291e90930adaf570620ae85de5cd8d48a3de963b2af6122072cf9471ce6021f8a8b2d92cc249f151250a4d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.823.0"
dependencies:
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/nested-clients": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/property-provider": "npm:^4.0.4"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/254c61c0b5533a5ceb4b353e41fd61fc48f7ae2920daf06ebe0a5821690fb3247afdde0a96b87a528b0d9da50bd31afa32161d0bd17aaffbe8172a4d16f0cd97
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@aws-sdk/util-arn-parser": "npm:3.804.0"
"@smithy/node-config-provider": "npm:^4.1.3"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/types": "npm:^4.3.1"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/0ae05fbcbd52978f6e46a4035f56b2bfd8d3a72853f23581e2f56a518f2e4b357762b609e5cfbb52fcb7561d1e02de660133d9d976ac9526a19e574821400156
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/629659ffa5d388b0963ad32b5d3788e526ceb01e28d562cb018c748736178ea2019a6a6e7eeaf7149e273772fee925c2aeafd6328b3f55bf81909cf9acd05d9d
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.823.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.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.1.3"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/types": "npm:^4.3.1"
"@smithy/util-middleware": "npm:^4.0.4"
"@smithy/util-stream": "npm:^4.2.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/6e23a9e5859d99ce97b0b771389bad0896081030fcd39e4d71ac277fab8b7da287a8c75f1404a0aa1776ed9107d2079beb002e6d6342a39a7ae3fc9d7b958dc8
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/middleware-host-header@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/20d9e7c1b0f3215de8ad6a85b2ad99a67674100e54fa6c207f1145b96a927282278ba1ca3f900c9d4c528d6925e4a4187d9daac9cf2c1359c5d4bb7c9469b5ce
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/e4b75a4967111fac393a4211e4f86928a4e2c580b91e513a556a01e0a05a325e2ad30cafe0343a82a50aa790d7d0af36a5fcdc626f65619102ee3be829359914
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/middleware-logger@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/803616fb81eb0d3694baf982ab9133011fc941f2571fdb47123cef5bbd7b9f427f813f2c84f1c71d46f4c60730f1c7ed1c3a23bac30f6736f9222f41b8d0efcf
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/7d88950db384a197b5b6da0472a184fa08242a813ab033db8dc538310486c9d8fb40f6b7884bd9654d16309676ded50bb56b1061b0b9820413f70e3dae7250de
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.823.0"
dependencies:
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@aws-sdk/util-arn-parser": "npm:3.804.0"
"@smithy/core": "npm:^3.5.1"
"@smithy/node-config-provider": "npm:^4.1.3"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/signature-v4": "npm:^5.1.2"
"@smithy/smithy-client": "npm:^4.4.1"
"@smithy/types": "npm:^4.3.1"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.4"
"@smithy/util-stream": "npm:^4.2.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/35f2db32a89a7f2e6640c2db30fd59e6fddcd4c74c0db4c0b877398fc489c7362d5a3681c41ca070039a9bf2a45de2c9684e480d956763b451228be3f6fb6e1c
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/middleware-ssec@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/1f700e22e2b8d6af8f85d09d93fe2cd7be197d6b79a22550c7df575522cf29bd4ae4f17d00d37539205b33089c703efd2c5fdb65b702e24422fc15976a9dfcd1
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.823.0"
dependencies:
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@aws-sdk/util-endpoints": "npm:3.821.0"
"@smithy/core": "npm:^3.5.1"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/32eaaa2d91c9af12256107a285810f46166b006cb00d7aa803e667b3a058be3906b90be47c41e0168206a5f7c0eca41f25ed1ad2227f9d70ea735ffaede34d51
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/nested-clients@npm:3.823.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/middleware-host-header": "npm:3.821.0"
"@aws-sdk/middleware-logger": "npm:3.821.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.821.0"
"@aws-sdk/middleware-user-agent": "npm:3.823.0"
"@aws-sdk/region-config-resolver": "npm:3.821.0"
"@aws-sdk/types": "npm:3.821.0"
"@aws-sdk/util-endpoints": "npm:3.821.0"
"@aws-sdk/util-user-agent-browser": "npm:3.821.0"
"@aws-sdk/util-user-agent-node": "npm:3.823.0"
"@smithy/config-resolver": "npm:^4.1.4"
"@smithy/core": "npm:^3.5.1"
"@smithy/fetch-http-handler": "npm:^5.0.4"
"@smithy/hash-node": "npm:^4.0.4"
"@smithy/invalid-dependency": "npm:^4.0.4"
"@smithy/middleware-content-length": "npm:^4.0.4"
"@smithy/middleware-endpoint": "npm:^4.1.9"
"@smithy/middleware-retry": "npm:^4.1.10"
"@smithy/middleware-serde": "npm:^4.0.8"
"@smithy/middleware-stack": "npm:^4.0.4"
"@smithy/node-config-provider": "npm:^4.1.3"
"@smithy/node-http-handler": "npm:^4.0.6"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/smithy-client": "npm:^4.4.1"
"@smithy/types": "npm:^4.3.1"
"@smithy/url-parser": "npm:^4.0.4"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.17"
"@smithy/util-defaults-mode-node": "npm:^4.0.17"
"@smithy/util-endpoints": "npm:^3.0.6"
"@smithy/util-middleware": "npm:^4.0.4"
"@smithy/util-retry": "npm:^4.0.5"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10/ede39e04ace80e3bb296ece9d096ccef9567db41afed2f7e03fb715dfc44e56cf95f8ea618e009076c1af0864a1dd052dcd14a6ea90984696a64413cbca7d155
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/region-config-resolver@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@smithy/node-config-provider": "npm:^4.1.3"
"@smithy/types": "npm:^4.3.1"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.4"
tslib: "npm:^2.6.2"
checksum: 10/399e0ff3e478879bc9250125f59666a7bb9ca75146f109e17455094f65bef45e1ff18d41fd132ec9de79fc3940b3b6da6b9aa8776140dee2facd6e68449dc3f8
languageName: node
linkType: hard
"@aws-sdk/s3-request-presigner@npm:^3.231.0":
version: 3.824.0
resolution: "@aws-sdk/s3-request-presigner@npm:3.824.0"
dependencies:
"@aws-sdk/signature-v4-multi-region": "npm:3.824.0"
"@aws-sdk/types": "npm:3.821.0"
"@aws-sdk/util-format-url": "npm:3.821.0"
"@smithy/middleware-endpoint": "npm:^4.1.9"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/smithy-client": "npm:^4.4.1"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/c62075e2d85ffda832af9a7914e90b3fd7c0cccbd8cbd18236edf81dfc5b61532fe9b8a86283843061d99227d28c18e382e10afe015758e68aee80ad0aaef2df
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.824.0":
version: 3.824.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.824.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/protocol-http": "npm:^5.1.2"
"@smithy/signature-v4": "npm:^5.1.2"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/2dde316aeb2113bff3813119c137f44b136109708c3a872b298e128e90d47cefe08da05f387b03a0fb9394bb6bca32fbf70c2caa8c3ab44a7ebc977a807693e9
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/token-providers@npm:3.823.0"
dependencies:
"@aws-sdk/core": "npm:3.823.0"
"@aws-sdk/nested-clients": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/property-provider": "npm:^4.0.4"
"@smithy/shared-ini-file-loader": "npm:^4.0.4"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/a9c3fb772adf4571fca3b2d7a84c1b4aaf2f745555f32c01fec3f67ed69e99e7a24b113b83c057440ff2c3dd19db2a395e1f4abaf0f699b2662d1fa42e1cb539
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.821.0, @aws-sdk/types@npm:^3.222.0":
version: 3.821.0
resolution: "@aws-sdk/types@npm:3.821.0"
dependencies:
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/43642a3c702ef85028d11094c68d9083afdb7f925286ed44325a269fae630c46307c193418591ddc88e0616e59f56f09ce94e29316ae2a6634d9c574bf64335d
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.804.0":
version: 3.804.0
resolution: "@aws-sdk/util-arn-parser@npm:3.804.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/3a66cee522fd1de7693eaf9dd8c4bad9efdf0d42f1af86797c138af3f84d38e9e6e38f0dffd963a372a95c5e0de07c570f613c49bbf85f7e03cea6d985fdbe01
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/util-endpoints@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@smithy/types": "npm:^4.3.1"
"@smithy/util-endpoints": "npm:^3.0.6"
tslib: "npm:^2.6.2"
checksum: 10/0a8a4ad434c1ce752bcb4543d645ee072d8f6cd0002e4f09a7d5bf2123c0acbdfb35e13e98ddef0cfe4a7e43f72612955bfd61d59ed6dbe3c313701b4616a4cd
languageName: node
linkType: hard
"@aws-sdk/util-format-url@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/util-format-url@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@smithy/querystring-builder": "npm:^4.0.4"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/6eabfb6877aa0d9a0daffb8c02127e43236b1c6f375567cee9c60aaaded20302f4a2f157a4d6e272603f5639a3ec05993a38311f24beb1d4434b4320b45270be
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.804.0
resolution: "@aws-sdk/util-locate-window@npm:3.804.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/4f1ad094cf9f23a6f09dbad8823d3c58d628412352a045e2fb3bea66281aa59a944545ffd8ed09b096b60b44671fb3fd3f3bfb5b924f3326ee82fb68c2c7b785
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.821.0"
dependencies:
"@aws-sdk/types": "npm:3.821.0"
"@smithy/types": "npm:^4.3.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/e1b844dcd472c7e431448b8b5d72954e45d528e3bf5d26060b885565767cc89c1fb630545a8653e815891014f94d73dd46201460a6ee900cad87ad8c7d0597c0
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.823.0":
version: 3.823.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.823.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.823.0"
"@aws-sdk/types": "npm:3.821.0"
"@smithy/node-config-provider": "npm:^4.1.3"
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/a93b754018ebdc4e55e2f534c71e0832d95e665acea90671905e8b9ee623422793355dac4b1a93574ba171f837ffed3694d596a1ac0f2515e37467903e184d82
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.821.0":
version: 3.821.0
resolution: "@aws-sdk/xml-builder@npm:3.821.0"
dependencies:
"@smithy/types": "npm:^4.3.1"
tslib: "npm:^2.6.2"
checksum: 10/03e646487bfc59e445670e00ac53fb50060f27821b0c67e9dacaf7ffc8adecd56a54a19267fa66f328e14ba87c77989be8b19c622a21fe22a246433753505a65
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/code-frame@npm:7.27.1"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.27.1"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10/721b8a6e360a1fa0f1c9fe7351ae6c874828e119183688b533c477aa378f1010f37cc9afbfc4722c686d1f5cdd00da02eab4ba7278a0c504fa0d7a321dcd4fdf
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.27.2":
version: 7.27.5
resolution: "@babel/compat-data@npm:7.27.5"
checksum: 10/04c343b8a25955bbbe1569564c63ac481a74710eb2e7989b97bd10baf2f0f3b1aa1b6c6122749806e92d70cfc22c10c757ff62336eb10a28ea98ab2b82bc0c2c
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.20.12, @babel/core@npm:^7.23.9":
version: 7.27.4
resolution: "@babel/core@npm:7.27.4"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.27.1"
"@babel/generator": "npm:^7.27.3"
"@babel/helper-compilation-targets": "npm:^7.27.2"
"@babel/helper-module-transforms": "npm:^7.27.3"
"@babel/helpers": "npm:^7.27.4"
"@babel/parser": "npm:^7.27.4"
"@babel/template": "npm:^7.27.2"
"@babel/traverse": "npm:^7.27.4"
"@babel/types": "npm:^7.27.3"
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/28c01186d5f2599e41f92c94fd14a02cfdcf4b74429b4028a8d16e45c1b08d3924c4275e56412f30fcd2664e5ddc2200f1c06cee8bffff4bba628ff1f20c6e70
languageName: node
linkType: hard
"@babel/generator@npm:^7.27.3, @babel/generator@npm:^7.7.2":
version: 7.27.5
resolution: "@babel/generator@npm:7.27.5"
dependencies:
"@babel/parser": "npm:^7.27.5"
"@babel/types": "npm:^7.27.3"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10/f5e6942670cb32156b3ac2d75ce09b373558823387f15dd1413c27fe9eb5756a7c6011fc7f956c7acc53efb530bfb28afffa24364d46c4e9ffccc4e5c8b3b094
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.27.2":
version: 7.27.2
resolution: "@babel/helper-compilation-targets@npm:7.27.2"
dependencies:
"@babel/compat-data": "npm:^7.27.2"
"@babel/helper-validator-option": "npm:^7.27.1"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/bd53c30a7477049db04b655d11f4c3500aea3bcbc2497cf02161de2ecf994fec7c098aabbcebe210ffabc2ecbdb1e3ffad23fb4d3f18723b814f423ea1749fe8
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-module-imports@npm:7.27.1"
dependencies:
"@babel/traverse": "npm:^7.27.1"
"@babel/types": "npm:^7.27.1"
checksum: 10/58e792ea5d4ae71676e0d03d9fef33e886a09602addc3bd01388a98d87df9fcfd192968feb40ac4aedb7e287ec3d0c17b33e3ecefe002592041a91d8a1998a8d
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.27.3":
version: 7.27.3
resolution: "@babel/helper-module-transforms@npm:7.27.3"
dependencies:
"@babel/helper-module-imports": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.27.1"
"@babel/traverse": "npm:^7.27.3"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/47abc90ceb181b4bdea9bf1717adf536d1b5e5acb6f6d8a7a4524080318b5ca8a99e6d58677268c596bad71077d1d98834d2c3815f2443e6d3f287962300f15d
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.27.1, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.27.1
resolution: "@babel/helper-plugin-utils@npm:7.27.1"
checksum: 10/96136c2428888e620e2ec493c25888f9ceb4a21099dcf3dd4508ea64b58cdedbd5a9fb6c7b352546de84d6c24edafe482318646932a22c449ebd16d16c22d864
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10/0ae29cc2005084abdae2966afdb86ed14d41c9c37db02c3693d5022fba9f5d59b011d039380b8e537c34daf117c549f52b452398f576e908fb9db3c7abbb3a00
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-identifier@npm:7.27.1"
checksum: 10/75041904d21bdc0cd3b07a8ac90b11d64cd3c881e89cb936fa80edd734bf23c35e6bd1312611e8574c4eab1f3af0f63e8a5894f4699e9cfdf70c06fcf4252320
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-validator-option@npm:7.27.1"
checksum: 10/db73e6a308092531c629ee5de7f0d04390835b21a263be2644276cb27da2384b64676cab9f22cd8d8dbd854c92b1d7d56fc8517cf0070c35d1c14a8c828b0903
languageName: node
linkType: hard
"@babel/helpers@npm:^7.27.4":
version: 7.27.6
resolution: "@babel/helpers@npm:7.27.6"
dependencies:
"@babel/template": "npm:^7.27.2"
"@babel/types": "npm:^7.27.6"
checksum: 10/33c1ab2b42f05317776a4d67c5b00d916dbecfbde38a9406a1300ad3ad6e0380a2f6fcd3361369119a82a7d3c20de6e66552d147297f17f656cf17912605aa97
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.27.2, @babel/parser@npm:^7.27.4, @babel/parser@npm:^7.27.5":
version: 7.27.5
resolution: "@babel/parser@npm:7.27.5"
dependencies:
"@babel/types": "npm:^7.27.3"
bin:
parser: ./bin/babel-parser.js
checksum: 10/0ad671be7994dba7d31ec771bd70ea5090aa34faf73e93b1b072e3c0a704ab69f4a7a68ebfb9d6a7fa455e0aa03dfa65619c4df6bae1cf327cba925b1d233fc4
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: 10/7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
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: 10/3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648
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: 10/24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc
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: 10/3e80814b5b6d4fe17826093918680a351c2d34398a914ce6e55d8083d72a9bdde4fbaf6a2dcea0e23a03de26dc2917ae3efd603d27099e2b98380345703bf948
languageName: node
linkType: hard
"@babel/plugin-syntax-import-attributes@npm:^7.24.7":
version: 7.27.1
resolution: "@babel/plugin-syntax-import-attributes@npm:7.27.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/97973982fff1bbf86b3d1df13380567042887c50e2ae13a400d02a8ff2c9742a60a75e279bfb73019e1cd9710f04be5e6ab81f896e6678dcfcec8b135e8896cf
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b
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: 10/bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.7.2":
version: 7.27.1
resolution: "@babel/plugin-syntax-jsx@npm:7.27.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/c6d1324cff286a369aa95d99b8abd21dd07821b5d3affd5fe7d6058c84cff9190743287826463ee57a7beecd10fa1e4bc99061df532ee14e188c1c8937b13e3a
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4":
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: 10/aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886
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: 10/87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4":
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: 10/01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1
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: 10/fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf
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: 10/910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9
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: 10/eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30
languageName: node
linkType: hard
"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/b317174783e6e96029b743ccff2a67d63d38756876e7e5d0ba53a322e38d9ca452c13354a57de1ad476b4c066dbae699e0ca157441da611117a47af88985ecda
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.14.5":
version: 7.14.5