-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
18009 lines (16302 loc) Β· 656 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.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10c0/92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43
languageName: node
linkType: hard
"@antfu/install-pkg@npm:^0.1.1":
version: 0.1.1
resolution: "@antfu/install-pkg@npm:0.1.1"
dependencies:
execa: "npm:^5.1.1"
find-up: "npm:^5.0.0"
checksum: 10c0/ae3116cc0918765ad356901b9c8825340be27deac03eb4c8969377eab9731a3b41d96e920fa0b08adf91fba27a808d08c68852b110775ff79ba40481422cc8ba
languageName: node
linkType: hard
"@antfu/utils@npm:^0.7.5":
version: 0.7.7
resolution: "@antfu/utils@npm:0.7.7"
checksum: 10c0/7ca5db419f3cb6ceabf3ea254ce00ff0eab307585838c074eef40b0f948a8eade0cbad21622a62f3dea83e1cf88accf561be82bc2895e47c62cef01537b92be9
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/09189ada61a4ffe6b3bd363b0535438470a8cc1a83c89a2591ef2a0b91acb9c4ba95626557cddf856abb9df0d2bfdb0969512f1949b6db7bff5d17109d8beb3f
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/crc32c@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/a5c7ec12ec23fd44c93971234176e0f3bda33d1d5ff3abe25a538f46d8a0baa312eefd179ac3f9bcca1c2d31886e3a36d1e2349b6989c59c3ea6853161095229
languageName: node
linkType: hard
"@aws-crypto/ie11-detection@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/ie11-detection@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/388891b86d816adb658175afeedaa6c4b4c70e83a7e94050d0425788da7fd5c1d675c5bd1588700e5168325bb342cc1063aa1ee4e519bc7f9b028b3998b69c53
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha1-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/26b51cba7f4f0412531205661d21e4a4f56cd87dbcfeb9844c4758b23029b83ff9815bd5207abbe98b62803948625d559cf177f6f6bce3af6654a6e05e0e1e31
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-browser@npm:3.0.0"
dependencies:
"@aws-crypto/ie11-detection": "npm:^3.0.0"
"@aws-crypto/sha256-js": "npm:^3.0.0"
"@aws-crypto/supports-web-crypto": "npm:^3.0.0"
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/c6a2d6b8176f6ab34b86f7b8c81e2beeae9d41bd4f5f375b332fbe9cbb916b94adcd70676fc7a505ba5abd4232dec1ddfcfa55877f91696d4c65f166648f3026
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:3.0.0, @aws-crypto/sha256-js@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/sha256-js@npm:3.0.0"
dependencies:
"@aws-crypto/util": "npm:^3.0.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^1.11.1"
checksum: 10c0/fc013b25a5813c425d4fb77c9ffbc8b5f73d2c78b423df98a1b2575a26de5ff3775c8f62fcf8ef2cc39c8af1cc651013e2c670c1a605a2e16749e06920a2d68f
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/supports-web-crypto@npm:3.0.0"
dependencies:
tslib: "npm:^1.11.1"
checksum: 10c0/67e5cbdebd9560244658ba4dd8610c8dc51022497780961fb5061c09618d4337e18b1ee6c71ac24b4aca175f2aa34d1390b95f8759dc293f197f2339dd5dd8c9
languageName: node
linkType: hard
"@aws-crypto/util@npm:^3.0.0":
version: 3.0.0
resolution: "@aws-crypto/util@npm:3.0.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-utf8-browser": "npm:^3.0.0"
tslib: "npm:^1.11.1"
checksum: 10c0/71ab6963daabbf080b274e24d160e4af6c8bbb6832bb885644018849ff53356bf82bb8000b8596cf296e7d6b14ad6201872b6b902f944e97e121eb2b2f692667
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-s3@npm:3.540.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:3.0.0"
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/credential-provider-node": "npm:3.540.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.535.0"
"@aws-sdk/middleware-expect-continue": "npm:3.535.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-location-constraint": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.535.0"
"@aws-sdk/middleware-signing": "npm:3.535.0"
"@aws-sdk/middleware-ssec": "npm:3.537.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@aws-sdk/xml-builder": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/eventstream-serde-browser": "npm:^2.2.0"
"@smithy/eventstream-serde-config-resolver": "npm:^2.2.0"
"@smithy/eventstream-serde-node": "npm:^2.2.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-blob-browser": "npm:^2.2.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/hash-stream-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/md5-js": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-stream": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
"@smithy/util-waiter": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b2cdf8f2d9ac14c0cbb407d4ad234038effa2fb90987bdad6f38be16534916965c33352dbd7247c0d5c5dc52f306b8f933a11a78668ef8ebf1321c3c82c90342
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.540.0
checksum: 10c0/62f0158d099675a898eb7d278a7446e02c6a505cf34d16c0967df9ae411698ecde927bc76af2896e8da3769defd51eaac3a0e6d246d66512032fe308faf1f858
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-sso@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8fda90b1e5a8ca9ef0bc89e5555b313a26b683d7fa91b6224d215ba618e0b8aae193f12886029124f20fc3b2f1a7fca8b4633a751832f9eca129817affe2c42c
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/client-sts@npm:3.540.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.535.0"
"@aws-sdk/middleware-host-header": "npm:3.535.0"
"@aws-sdk/middleware-logger": "npm:3.535.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.535.0"
"@aws-sdk/middleware-user-agent": "npm:3.540.0"
"@aws-sdk/region-config-resolver": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@aws-sdk/util-user-agent-browser": "npm:3.535.0"
"@aws-sdk/util-user-agent-node": "npm:3.535.0"
"@smithy/config-resolver": "npm:^2.2.0"
"@smithy/core": "npm:^1.4.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/hash-node": "npm:^2.2.0"
"@smithy/invalid-dependency": "npm:^2.2.0"
"@smithy/middleware-content-length": "npm:^2.2.0"
"@smithy/middleware-endpoint": "npm:^2.5.0"
"@smithy/middleware-retry": "npm:^2.2.0"
"@smithy/middleware-serde": "npm:^2.3.0"
"@smithy/middleware-stack": "npm:^2.2.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/url-parser": "npm:^2.2.0"
"@smithy/util-base64": "npm:^2.3.0"
"@smithy/util-body-length-browser": "npm:^2.2.0"
"@smithy/util-body-length-node": "npm:^2.3.0"
"@smithy/util-defaults-mode-browser": "npm:^2.2.0"
"@smithy/util-defaults-mode-node": "npm:^2.3.0"
"@smithy/util-endpoints": "npm:^1.2.0"
"@smithy/util-middleware": "npm:^2.2.0"
"@smithy/util-retry": "npm:^2.2.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.540.0
checksum: 10c0/62ddd29b8f73ccf7d726c6aa8c84869c9c463b8719813ccbf13cc26e1f9d8f61622089d6f6e973e322625c16143410578cf4c7b951edf0eb3d831f4bca77c6f2
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/core@npm:3.535.0"
dependencies:
"@smithy/core": "npm:^1.4.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.6.2"
checksum: 10c0/025b73303d29d414441a460078d5bd975dcdf817a4d2c5858b9172a0992f0605da4d65a60283c309df442707bc1b7429d392e67e4164e76b220f48580d467846
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-env@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/2d245d723fd3be302a173ac8e93948b7edc9af0f0698b95d8a205dfaa6446cb0fdfcfa1c16ca66f89baf289ba4a77b3bbdc05537d93ee3451715e47ab33b5031
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-http@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/fetch-http-handler": "npm:^2.5.0"
"@smithy/node-http-handler": "npm:^2.5.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-stream": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cd51b5a8df548c7c3176acc6eb78113e0c51a1780f8463daa3a0fbd84a7ce2703660dd5fc941433b66e6f3f7e702f7f71eda8ed9b1c41f74ae131ece8d671ab9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.540.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/credential-provider-env": "npm:3.535.0"
"@aws-sdk/credential-provider-process": "npm:3.535.0"
"@aws-sdk/credential-provider-sso": "npm:3.540.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/credential-provider-imds": "npm:^2.3.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/003ec47e5923bf60588c1f9017e0f9039fd02e665203c22a7bd7442905d23e501a313c532e051946b363a5dd59d1596bf8342370cf6daa4f0063b919ed760d9c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-node@npm:3.540.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.535.0"
"@aws-sdk/credential-provider-http": "npm:3.535.0"
"@aws-sdk/credential-provider-ini": "npm:3.540.0"
"@aws-sdk/credential-provider-process": "npm:3.535.0"
"@aws-sdk/credential-provider-sso": "npm:3.540.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/credential-provider-imds": "npm:^2.3.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f4ac717ff47acf2e2a12047ee8a40abeb25bacba71c8605eaa2d46b0d5dffe6ec47874df9f3471be4090aa10f3b5ab3e296e50569cceb954e1fe741e35bf6df1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/credential-provider-process@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/096a78241c0e76c614ee69d2f7e0169d4314e4dd0a43805164faa6d3381d5112587e26066c55e1b7aee763520b04cfaea83ae674eb76580c4fff0f45912de02f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.540.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.540.0"
"@aws-sdk/token-providers": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c2ae6ff85fc6d3c66a72096522e94ab823a820321a0b15e05eb501479a1f83204a515603d60283361e45039913ca833bfa2ef0576ea806b21f37a22e49c48157
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.540.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/443ee3782dd1f7ec64a982fcf7c53584cf59d3872e3fe2fe52615e1bf7f4cb85b1343c67ec8997f7fbe303c83d1c32178103b89e1ade544a9bda46ee1c16d7a0
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-arn-parser": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f19ef992d64642ea9cad78906dd58b5ca354f80003ae04c21d1b1357db7e16b05d04c0ac821ac5d0ed09ff80f42acb9165b5a8cd09e43bb99f1c5720de3c30b5
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a2236c5cfa69e557bdcb0eb56282921d9cde8e50f5c3896cc97a15f150565920d88b8be6d16dae8b563001bc4b8afea1e435f71c1b181fe3abda9bba04cfb30f
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.535.0"
dependencies:
"@aws-crypto/crc32": "npm:3.0.0"
"@aws-crypto/crc32c": "npm:3.0.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/is-array-buffer": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-utf8": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5e07de340bffc50fb5450f700664d8b3abd6bb399395de962a353734a68a2f88420b9b2a8ebb9286016e71978f0c653ed93875eeb7898f477737f471fc002b3f
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-host-header@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8b26adc069da04c3e6d1f66cb5ebe505373657ba5b85578fc09bd607fb6b25ef4168478f8acacaa69ec3f045ef619f522fafba9844c11835d5933a3f95ade4ea
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/de9536d0d4e787f2eb04c2f693c1ac1860a3d519b009bbc73f7dc81c431a5abcde0d5cbdd139ec1969a05fe690ebaf1c2271953f3e8985114b469ef5ee6890e2
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-logger@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f0e01443203c30d8064d5a16968de20060cd4c0742a4eb2537443fe767135c08cda1a2d5a75db33c319b639d31c9340de9f128eefdf73bb50283e40569f68471
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3bbb86ba971d2b034b7dea415fc6c3fb0c1a879c8153841849e9b2bfd9edd5a78e29a299ceaf74829007d96550420246b795721ac7d8cfb244e59e5f9dee54b3
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-arn-parser": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/smithy-client": "npm:^2.5.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/baa0c7686e55be4fe7ff10d6c743d24b1b41609a5120807655b505636d5e57c338bd34326e5bfa951dfc2730cfc4e70cb0fa0cd11df3408d169112cd309aa023
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/middleware-signing@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-middleware": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/95d6c97b8479815c1400555949732706e6fee66d2ccec57e56eed538008cddcd1382824a84c1ea662a4323727895b3f887723a36801f4068b3aad3dfe1a37343
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.537.0":
version: 3.537.0
resolution: "@aws-sdk/middleware-ssec@npm:3.537.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4c4ed67709d97fd3d614fb00052082ac4697e0c2ad9aafb6794a3bd04ca3a373b0fd06f950be0f4831787410823ea7daca206e631469c819a2e5eae54c268b5a
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.540.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@aws-sdk/util-endpoints": "npm:3.540.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/10a98b243c32db59beb794df62ff9468b1e83d277412698d7a9351fcb8abf5f62630648ee0aaa02eaec9d32f565c78e3c91d4e79836ef9177e7219f623180dd2
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/region-config-resolver@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-config-provider": "npm:^2.3.0"
"@smithy/util-middleware": "npm:^2.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/08d76cfc54f2d9fffb8a2fd873e19b95564842b78a2a923260b3100117100054bb95f15f723c1f7268d10ffc61150109dca6b512ac629d125a000550ecfd0146
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.535.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.535.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/protocol-http": "npm:^3.3.0"
"@smithy/signature-v4": "npm:^2.2.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4d7095e5adb118eeb7ad95c1cd9d62db5c3ef41e5d5d46d5775f94591333fb8982430a61ec92c1242b59cdaa422a66f111dab01e7309b049b97cf173ad4cd7e3
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/token-providers@npm:3.540.0"
dependencies:
"@aws-sdk/client-sso-oidc": "npm:3.540.0"
"@aws-sdk/types": "npm:3.535.0"
"@smithy/property-provider": "npm:^2.2.0"
"@smithy/shared-ini-file-loader": "npm:^2.4.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/2ec3d7ecc2e3a0ff93805681b7337915b4797b104e7808b2b7cbe70470ace2f316951662ab65dfb0dfe6ceacd9990190560cd1f9426fa9c8fc216a22220e18cd
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.535.0, @aws-sdk/types@npm:^3.222.0":
version: 3.535.0
resolution: "@aws-sdk/types@npm:3.535.0"
dependencies:
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1c8ed3a76b508287ee840a9c37f9df7a382459dfe4d46aa0cf90eddacdf32eae9c0e0d274a18956095e567234d0b07c81ff7d4fbeed3ca3c9caf52ccadcea409
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/util-arn-parser@npm:3.535.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/0061dd01d95187826912903f7a08e5a6d377ce82fcfa91a5a6d1f4343bd51fb32d2cb942612e555f6b85a92e95d55873fce99daef43b2558243efdfe2b27d88a
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.540.0":
version: 3.540.0
resolution: "@aws-sdk/util-endpoints@npm:3.540.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
"@smithy/util-endpoints": "npm:^1.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/9e08e764c22d81af819bb8c1ae975d724debbe4911a69acec34cb10fcc7e5d923eb430d3de0b50ad2f160f75a9839cb39320077f93964c9bd2cf13d2d92f0fc4
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.495.0
resolution: "@aws-sdk/util-locate-window@npm:3.495.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/e1d33f519016dd3bb92ebdc192a49863c8a4bf5f8c5972c2518a600ecf8b3fc62c2271d79b6e91a42000c59fc9eee74aa2cf184268cd52048ce0a31af5e7117b
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/types": "npm:^2.12.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/347f92df14527a6a30baca22cec326ecae8109cdaa7c011b193275acd4a19e3dfe90194aa91629bb82aa62cf690b2bc2742117f78a8d0fb01570b6eac6cb87a7
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.535.0"
dependencies:
"@aws-sdk/types": "npm:3.535.0"
"@smithy/node-config-provider": "npm:^2.3.0"
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/144a92ca5745ed78159d05466698472d10e0529946bcba67cc350be03c2272be7a58c76caa5f8831bbc66438f635a5a10167182aab02be601648843c9c0347f9
languageName: node
linkType: hard
"@aws-sdk/util-utf8-browser@npm:^3.0.0":
version: 3.259.0
resolution: "@aws-sdk/util-utf8-browser@npm:3.259.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 10c0/ff56ff252c0ea22b760b909ba5bbe9ca59a447066097e73b1e2ae50a6d366631ba560c373ec4e83b3e225d16238eeaf8def210fdbf135070b3dd3ceb1cc2ef9a
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.535.0":
version: 3.535.0
resolution: "@aws-sdk/xml-builder@npm:3.535.0"
dependencies:
"@smithy/types": "npm:^2.12.0"
tslib: "npm:^2.6.2"
checksum: 10c0/8e45d10ef3e19c09c2f19aef1a4d8e6194b257a3a9a6b773e36899e85910006a62d3550fdd658be64df713f49b12402765e5afd4d601bacce11a944ec67f6b65
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.23.5, @babel/code-frame@npm:^7.24.1, @babel/code-frame@npm:^7.24.2":
version: 7.24.2
resolution: "@babel/code-frame@npm:7.24.2"
dependencies:
"@babel/highlight": "npm:^7.24.2"
picocolors: "npm:^1.0.0"
checksum: 10c0/d1d4cba89475ab6aab7a88242e1fd73b15ecb9f30c109b69752956434d10a26a52cbd37727c4eca104b6d45227bd1dfce39a6a6f4a14c9b2f07f871e968cf406
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.23.5, @babel/compat-data@npm:^7.24.1":
version: 7.24.1
resolution: "@babel/compat-data@npm:7.24.1"
checksum: 10c0/8a1935450345c326b14ea632174696566ef9b353bd0d6fb682456c0774342eeee7654877ced410f24a731d386fdcbf980b75083fc764964d6f816b65792af2f5
languageName: node
linkType: hard
"@babel/core@npm:7.24.3, @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.13.16, @babel/core@npm:^7.20.0, @babel/core@npm:^7.21.3":
version: 7.24.3
resolution: "@babel/core@npm:7.24.3"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.24.2"
"@babel/generator": "npm:^7.24.1"
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.24.1"
"@babel/parser": "npm:^7.24.1"
"@babel/template": "npm:^7.24.0"
"@babel/traverse": "npm:^7.24.1"
"@babel/types": "npm:^7.24.0"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10c0/e6e756b6de27d0312514a005688fa1915c521ad4269a388913eff2120a546538078f8488d6d16e86f851872f263cb45a6bbae08738297afb9382600d2ac342a9
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.20.0":
version: 7.23.10
resolution: "@babel/eslint-parser@npm:7.23.10"
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals": "npm:5.1.1-v1"
eslint-visitor-keys: "npm:^2.1.0"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.11.0
eslint: ^7.5.0 || ^8.0.0
checksum: 10c0/dfc091d44c86c72658d53abe66c778f7aa436672d66ae99a0b72857c968defed4749c18d2d3a35b1f61c77a193761ae7a71997dbe43c4c7cffcf945bd106bd67
languageName: node
linkType: hard
"@babel/generator@npm:^7.20.0, @babel/generator@npm:^7.24.1, @babel/generator@npm:^7.7.2":
version: 7.24.1
resolution: "@babel/generator@npm:7.24.1"
dependencies:
"@babel/types": "npm:^7.24.0"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^2.5.1"
checksum: 10c0/f0eea7497657cdf68cfb4b7d181588e1498eefd1f303d73b0d8ca9b21a6db27136a6f5beb8f988b6bdcd4249870826080950450fd310951de42ecf36df274881
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-annotate-as-pure@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10c0/5a80dc364ddda26b334bbbc0f6426cab647381555ef7d0cd32eb284e35b867c012ce6ce7d52a64672ed71383099c99d32765b3d260626527bb0e3470b0f58e45
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.15":
version: 7.22.15
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15"
dependencies:
"@babel/types": "npm:^7.22.15"
checksum: 10c0/2535e3824ca6337f65786bbac98e562f71699f25532cecd196f027d7698b4967a96953d64e36567956658ad1a05ccbdc62d1ba79ee751c79f4f1d2d3ecc2e01c
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/helper-compilation-targets@npm:7.23.6"
dependencies:
"@babel/compat-data": "npm:^7.23.5"
"@babel/helper-validator-option": "npm:^7.23.5"
browserslist: "npm:^4.22.2"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10c0/ba38506d11185f48b79abf439462ece271d3eead1673dd8814519c8c903c708523428806f05f2ec5efd0c56e4e278698fac967e5a4b5ee842c32415da54bc6fa
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.23.6, @babel/helper-create-class-features-plugin@npm:^7.24.1":
version: 7.24.1
resolution: "@babel/helper-create-class-features-plugin@npm:7.24.1"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-function-name": "npm:^7.23.0"
"@babel/helper-member-expression-to-functions": "npm:^7.23.0"
"@babel/helper-optimise-call-expression": "npm:^7.22.5"
"@babel/helper-replace-supers": "npm:^7.24.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/45372890634c37deefc81f44b7d958fe210f7da7d8a2239c9849c6041a56536f74bf3aa2d115bc06d5680d0dc49c1303f74a045d76ae0dd1592c7d5c0c268ebc
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.15, @babel/helper-create-regexp-features-plugin@npm:^7.22.5":
version: 7.22.15
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
regexpu-core: "npm:^5.3.1"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/8eba4c1b7b94a83e7a82df5c3e504584ff0ba6ab8710a67ecc2c434a7fb841a29c2f5c94d2de51f25446119a1df538fa90b37bd570db22ddd5e7147fe98277c6
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.5.0":
version: 0.5.0
resolution: "@babel/helper-define-polyfill-provider@npm:0.5.0"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.22.6"
"@babel/helper-plugin-utils": "npm:^7.22.5"
debug: "npm:^4.1.1"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.14.2"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 10c0/2b053b96a0c604a7e0f5c7d13a8a55f4451d938f7af42bd40f62a87df15e6c87a0b1dbd893a0f0bb51077b54dc3ba00a58b166531a5940ad286ab685dd8979ec
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.6.1":
version: 0.6.1
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.1"
dependencies:
"@babel/helper-compilation-targets": "npm:^7.22.6"
"@babel/helper-plugin-utils": "npm:^7.22.5"
debug: "npm:^4.1.1"
lodash.debounce: "npm:^4.0.8"
resolve: "npm:^1.14.2"
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
checksum: 10c0/210e1c8ac118f7c5a0ef5b42c4267c3db2f59b1ebc666a275d442b86896de4a66ef93539d702870f172f9749cd44c89f53056a5b17e619c3142b12ed4e4e6aae
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.18.9, @babel/helper-environment-visitor@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-environment-visitor@npm:7.22.20"
checksum: 10c0/e762c2d8f5d423af89bd7ae9abe35bd4836d2eb401af868a63bbb63220c513c783e25ef001019418560b3fdc6d9a6fb67e6c0b650bcdeb3a2ac44b5c3d2bdd94
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.22.5, @babel/helper-function-name@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-function-name@npm:7.23.0"
dependencies:
"@babel/template": "npm:^7.22.15"
"@babel/types": "npm:^7.23.0"
checksum: 10c0/d771dd1f3222b120518176733c52b7cadac1c256ff49b1889dbbe5e3fed81db855b8cc4e40d949c9d3eae0e795e8229c1c8c24c0e83f27cfa6ee3766696c6428
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-hoist-variables@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10c0/60a3077f756a1cd9f14eb89f0037f487d81ede2b7cfe652ea6869cd4ec4c782b0fb1de01b8494b9a2d2050e3d154d7d5ad3be24806790acfb8cbe2073bf1e208
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.23.0":
version: 7.23.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0"
dependencies:
"@babel/types": "npm:^7.23.0"
checksum: 10c0/b810daddf093ffd0802f1429052349ed9ea08ef7d0c56da34ffbcdecbdafac86f95bdea2fe30e0e0e629febc7dd41b56cb5eacc10d1a44336d37b755dac31fa4
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.22.15, @babel/helper-module-imports@npm:^7.24.1":
version: 7.24.3
resolution: "@babel/helper-module-imports@npm:7.24.3"
dependencies:
"@babel/types": "npm:^7.24.0"
checksum: 10c0/052c188adcd100f5e8b6ff0c9643ddaabc58b6700d3bbbc26804141ad68375a9f97d9d173658d373d31853019e65f62610239e3295cdd58e573bdcb2fded188d
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/helper-module-transforms@npm:7.23.3"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-module-imports": "npm:^7.22.15"
"@babel/helper-simple-access": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.6"
"@babel/helper-validator-identifier": "npm:^7.22.20"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/211e1399d0c4993671e8e5c2b25383f08bee40004ace5404ed4065f0e9258cc85d99c1b82fd456c030ce5cfd4d8f310355b54ef35de9924eabfc3dff1331d946
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-optimise-call-expression@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10c0/31b41a764fc3c585196cf5b776b70cf4705c132e4ce9723f39871f215f2ddbfb2e28a62f9917610f67c8216c1080482b9b05f65dd195dae2a52cef461f2ac7b8
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.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.0, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.24.0
resolution: "@babel/helper-plugin-utils@npm:7.24.0"
checksum: 10c0/90f41bd1b4dfe7226b1d33a4bb745844c5c63e400f9e4e8bf9103a7ceddd7d425d65333b564d9daba3cebd105985764d51b4bd4c95822b97c2e3ac1201a8a5da
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.18.9, @babel/helper-remap-async-to-generator@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-wrap-function": "npm:^7.22.20"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/aa93aa74250b636d477e8d863fbe59d4071f8c2654841b7ac608909e480c1cf3ff7d7af5a4038568829ad09d810bb681668cbe497d9c89ba5c352793dc9edf1e
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.24.1":
version: 7.24.1
resolution: "@babel/helper-replace-supers@npm:7.24.1"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.20"
"@babel/helper-member-expression-to-functions": "npm:^7.23.0"
"@babel/helper-optimise-call-expression": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/d39a3df7892b7c3c0e307fb229646168a9bd35e26a72080c2530729322600e8cff5f738f44a14860a2358faffa741b6a6a0d6749f113387b03ddbfa0ec10e1a0
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-simple-access@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10c0/f0cf81a30ba3d09a625fd50e5a9069e575c5b6719234e04ee74247057f8104beca89ed03e9217b6e9b0493434cedc18c5ecca4cea6244990836f1f893e140369