-
Notifications
You must be signed in to change notification settings - Fork 90
/
yarn.lock
18302 lines (16544 loc) · 648 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
"@adobe/css-tools@npm:^4.4.0":
version: 4.4.0
resolution: "@adobe/css-tools@npm:4.4.0"
checksum: 10/9c6315fe9efa5075d6ddb6ded7a1424bc9c41a01f2314b6bdcc368723985fe161008d03ddcc2b27b2da50cb9c14190fbce965d15cefe5f9a31bdd43f35b52115
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
"@apidevtools/json-schema-ref-parser@npm:^10.1.0":
version: 10.1.0
resolution: "@apidevtools/json-schema-ref-parser@npm:10.1.0"
dependencies:
"@jsdevtools/ono": "npm:^7.1.3"
"@types/json-schema": "npm:^7.0.11"
"@types/lodash.clonedeep": "npm:^4.5.7"
js-yaml: "npm:^4.1.0"
lodash.clonedeep: "npm:^4.5.0"
checksum: 10/b527c568487ee636e11ed68d2df10dc4a18fd10454dd9f57ba4ab940a3978c05e536f698108a19c727ad4e683f7c903dc7533b6aa49d3e555f15d02c62633882
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":
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.645.0":
version: 3.654.0
resolution: "@aws-sdk/client-s3@npm:3.654.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.654.0"
"@aws-sdk/client-sts": "npm:3.654.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.654.0"
"@aws-sdk/middleware-expect-continue": "npm:3.654.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-location-constraint": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.654.0"
"@aws-sdk/middleware-ssec": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@aws-sdk/xml-builder": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/eventstream-serde-browser": "npm:^3.0.9"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.6"
"@smithy/eventstream-serde-node": "npm:^3.0.8"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-blob-browser": "npm:^3.1.5"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/hash-stream-node": "npm:^3.1.5"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/md5-js": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-stream": "npm:^3.1.6"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.5"
tslib: "npm:^2.6.2"
checksum: 10/85a8f2df67167aba1ee1b664c624d6ba871897d4d9b959761b02dba2ada6d349b1812d9e4460a12e7306dd523bde5542b513f3a56ee3e2c99ea47c3d1231a08b
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.654.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.654.0
checksum: 10/d8a61b1ae7b2bd00bd65e022b43c4da0aab8d874fe85818f0e009d9ae6a53b3cd17d7c9ddbae7807df650d2ecd741aad0d5c5fada4f615a87e8e6da850710ba4
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/client-sso@npm:3.654.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/bcc0465840eebd1d8c822a8ea6497aa0ff7b559ff10b1c993fc6af3e0d2560bca4fae18dbea88ad98e97b14452b4048d9df71e07c5e5922917440440737e0141
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/client-sts@npm:3.654.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.654.0"
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/credential-provider-node": "npm:3.654.0"
"@aws-sdk/middleware-host-header": "npm:3.654.0"
"@aws-sdk/middleware-logger": "npm:3.654.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.654.0"
"@aws-sdk/middleware-user-agent": "npm:3.654.0"
"@aws-sdk/region-config-resolver": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@aws-sdk/util-user-agent-browser": "npm:3.654.0"
"@aws-sdk/util-user-agent-node": "npm:3.654.0"
"@smithy/config-resolver": "npm:^3.0.8"
"@smithy/core": "npm:^2.4.3"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/hash-node": "npm:^3.0.6"
"@smithy/invalid-dependency": "npm:^3.0.6"
"@smithy/middleware-content-length": "npm:^3.0.8"
"@smithy/middleware-endpoint": "npm:^3.1.3"
"@smithy/middleware-retry": "npm:^3.0.18"
"@smithy/middleware-serde": "npm:^3.0.6"
"@smithy/middleware-stack": "npm:^3.0.6"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/url-parser": "npm:^3.0.6"
"@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.18"
"@smithy/util-defaults-mode-node": "npm:^3.0.18"
"@smithy/util-endpoints": "npm:^2.1.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-retry": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/e991fe2f83dbdee90924b8e2aaa047c86d77a441c3489a62ce5107706cc1770364bc8a372688b1ee68ac08847a503690621b94420d9e49f6c6bab8793eb7ae49
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/core@npm:3.654.0"
dependencies:
"@smithy/core": "npm:^2.4.3"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/signature-v4": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^3.0.6"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/743a9360796ad14ce5fc0ba083108a6f8d04fd309c0e741bf6a2ef22a6a4e2a4167d449c1777c53f166a7f3e3b12b7c6b57936871ff60f760095fc0fa5a1baca
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-env@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/ceef4f105d35ccef6da2f5244e215fcd84dd45626c79c1058173d7a374e7401667f75ca36ca2048a5bc2c5301b30ca4a23f90601dc031f5f127b307523947d3f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-http@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/fetch-http-handler": "npm:^3.2.7"
"@smithy/node-http-handler": "npm:^3.2.2"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-stream": "npm:^3.1.6"
tslib: "npm:^2.6.2"
checksum: 10/98b10af490dc1324739f261d2bc3c666b374eb41d10a4a0929941bb866b29f2edd7866380ab3a545919af8299956ce344e40a4339d7dd66c5e43761bd0fa6da5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.654.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.654.0"
"@aws-sdk/credential-provider-http": "npm:3.654.0"
"@aws-sdk/credential-provider-process": "npm:3.654.0"
"@aws-sdk/credential-provider-sso": "npm:3.654.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/credential-provider-imds": "npm:^3.2.3"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.654.0
checksum: 10/a44c9ebf5c6d467b1f6b9cded3f5027850ccf6bfbe2c208eaea6eb8a750da76ff193b17e3d7fc4112f7f664fa64b11c3bbabbfc7e4217000bb0ada6a50d7708b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-node@npm:3.654.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.654.0"
"@aws-sdk/credential-provider-http": "npm:3.654.0"
"@aws-sdk/credential-provider-ini": "npm:3.654.0"
"@aws-sdk/credential-provider-process": "npm:3.654.0"
"@aws-sdk/credential-provider-sso": "npm:3.654.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/credential-provider-imds": "npm:^3.2.3"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/ad510e65c3afa6ce33085f1ba4ef8e0b505bbb52e88eefc2bcea0fea77696b491ff148f715d1ed605bb848250e8e68fd1e75c174f3a6d7d74df8f28cd6e4e238
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-process@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/a3d00901e3dd9d917ec2932483bcd44d5ac6c399f92faa704a1b7368a597e4ed486e592f3f39a734b0330f0496cd02a8281e3150a563cae2a499a35bca4510d8
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.654.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.654.0"
"@aws-sdk/token-providers": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/668ec89a72a736caefa6ea4c0e8c9983ce09bdb1f08ba2e773d7e3f012f45bb881f28c8d6a93dfd6db344f408b0cf29835a20f03b79bf858f4f5cd77a650b14e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.654.0
checksum: 10/831fb7092d635c7a7286201b6a2e17eedb3aa91fc28a697759dbc6d5a3c32802fdb8191abe370525bc71516757f2a9df518684decaebbd16be72c8da5b76e593
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/bdf0ecfcb0685fe7d5c8e0a46b9aca97ad653416824063e38d5c717650f4dec186f2eeecbfed03b89a3e8b904126ed164884e94053cc714168b59093125a8a8a
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/783687d73de67abe4f92091eefd00937986b983abe797f9f80a325b77ac6ab8abc5f57cc251c494611b79c23f2aa452c3e41a425a71981423eb63453d3624a08
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.654.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/73d02e06d48064cee68769f8802ee5e4211f1573479e890e51a9ff8f19a6b8f2fe140d073b80f3ec1841fc49ce49bc0f6c8d4c0588a44f07de113bb5dcd437f5
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-host-header@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/13fa78f2591f763e36a3becdd9ba5e01c53715f91aa00afd5e69ab3bf05dbc6fb6db5daf487e5ab68bdc4fe94760ef2eeb20467fa09d811eee3e9d32ac22e698
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/25608bd0cafa75caa0f67b8bb8f494325470fd8a3bba51bb04ef2441a0fedb85b77eeb1165bc8a63c6101a768ff80f21576a3571e6eee37e8d9b405e1db1c1bd
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-logger@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/adcfee5b50384e12faad10c2af58b34cf5fac396cbf9f8d843fcc2b9bf57142e535a973b52bac590c97464d4fbfa4901bfe5e6043952e0d941aa7f43c5ec919a
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/eabf3838674758e30713934e3a9ebe765c5aa944e08a86765c2c679c6b235639b97529c1906d21de15dcdc2f53b4828464eea7787dfdda06c76c594274ffd5eb
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.654.0"
dependencies:
"@aws-sdk/core": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/core": "npm:^2.4.3"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/signature-v4": "npm:^4.1.3"
"@smithy/smithy-client": "npm:^3.3.2"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.6"
"@smithy/util-stream": "npm:^3.1.6"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/68a0aa2fad2fd57fcfb66df675eeb857e6a6d4a242eb18c3143f0bd28a147d7528c75db3001ce51f8bf5c22dc77fa9aef03e6e7fce2922caf2c176c2b5a8ad64
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-ssec@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/934d091f911df76f8fcd6d433ea5abc46f2664bc23e73f68ff13e50a0956d65c77b34074cf9094915331acae76ea87c5faf2f8e8bea63e2964553eacda2eb971
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@aws-sdk/util-endpoints": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/f6f65f262b281440b814401bbf7b68957795d7962a8f77fd4816cb0e1458d318d3a777533ad1432353fbebf62afcf5416d6e02906f80082dbc4c089b10cd60f0
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/region-config-resolver@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.6"
tslib: "npm:^2.6.2"
checksum: 10/fb8d4a776b230ba48e9539f814442a0227f08b59fc7182b429131b1a11b9ca418afda0345ce71bf420d71bc919f50876d602ee0a493217c0e350d3854ac2e8ed
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.654.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.654.0"
"@aws-sdk/types": "npm:3.654.0"
"@smithy/protocol-http": "npm:^4.1.3"
"@smithy/signature-v4": "npm:^4.1.3"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/1ebe5017eb9b361dacfcde4c7e49e5d8f5fa6e61810878a455a0c605125a6d36535123c57931fc207ba1feddc176432f7f745fcaeda96f9b3e161633bb71daee
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/token-providers@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/property-provider": "npm:^3.1.6"
"@smithy/shared-ini-file-loader": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.654.0
checksum: 10/ffb351d1b3e67529fe5845cf829305ae16be337860cb1fa1562565c6e15ef3e769507b467655547939c6080affd70fb33869783c025a561db07d56b290797da1
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.654.0, @aws-sdk/types@npm:^3.222.0":
version: 3.654.0
resolution: "@aws-sdk/types@npm:3.654.0"
dependencies:
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/4ca626a090704fa1af063ae4b4209498dea70d576bd05abd3a904bc375b6880496a716c88b6d5e9085731ba203bd7b6e158d997adc6ce02a83573a48d7683790
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.568.0":
version: 3.568.0
resolution: "@aws-sdk/util-arn-parser@npm:3.568.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/b1a7f93b4f47136ee8d71bcbbd2d5d19581007f0684aff252d3bee6b9ccc7c56e765255bb1bea847171b40cdbd2eca0fb102f24cba857d1c79c54747e8ee0855
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/util-endpoints@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/types": "npm:^3.4.2"
"@smithy/util-endpoints": "npm:^2.1.2"
tslib: "npm:^2.6.2"
checksum: 10/e9ebb709635852cb94b5c276413df2e6e7003b528148c7d604804bab49b0c98ebb391f9b77456fbca7ddc40a3d5aa4a94b684c829fd286d4fd001de4e564206a
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.208.0
resolution: "@aws-sdk/util-locate-window@npm:3.208.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 10/add2bc50d8f9601aac3665238fad85618dcb0a30b37109cf0c0d09aadc274aab61661462fff2eb2503147dbbf2fde5b3ee78c7c995e4c37e6f01c2227a3a7363
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/types": "npm:^3.4.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/f8e36dcb8ab62633dc2d9cd91cc75a157fcb69d6d72181ea41adb2b76746140f76f5661acf90c3264cc442de90d0c7883be727faef87ee1e569964a85c135b7b
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.654.0"
dependencies:
"@aws-sdk/types": "npm:3.654.0"
"@smithy/node-config-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/6735787ce7347b644640e8ef2b54ee6a4ae31d36c0da1aec821b9c908c58ed38bc695242639850b20cdc4b51030ec4be1c393c24330c0fd4146e740c52b8b91c
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.654.0":
version: 3.654.0
resolution: "@aws-sdk/xml-builder@npm:3.654.0"
dependencies:
"@smithy/types": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10/d1af3584b658a3adc77b2465ed36c9cb5f665559b58f33633d2b1b5b66aabca21656877513baa08bfcb09eb161ffa8a288e9fb52ac47446eb1d8676a8a82b640
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.23.5, @babel/code-frame@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/code-frame@npm:7.24.7"
dependencies:
"@babel/highlight": "npm:^7.24.7"
picocolors: "npm:^1.0.0"
checksum: 10/4812e94885ba7e3213d49583a155fdffb05292330f0a9b2c41b49288da70cf3c746a3fda0bf1074041a6d741c33f8d7be24be5e96f41ef77395eeddc5c9ff624
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/compat-data@npm:7.24.7"
checksum: 10/6edc09152ca51a22c33741c441f33f9475598fa59edc53369edb74b49f4ea4bef1281f5b0ed2b9b67fb66faef2da2069e21c4eef83405d8326e524b301f4e7e2
languageName: node
linkType: hard
"@babel/core@npm:^7.18.9, @babel/core@npm:^7.22.20, @babel/core@npm:^7.23.9, @babel/core@npm:^7.7.5":
version: 7.24.7
resolution: "@babel/core@npm:7.24.7"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.24.7"
"@babel/generator": "npm:^7.24.7"
"@babel/helper-compilation-targets": "npm:^7.24.7"
"@babel/helper-module-transforms": "npm:^7.24.7"
"@babel/helpers": "npm:^7.24.7"
"@babel/parser": "npm:^7.24.7"
"@babel/template": "npm:^7.24.7"
"@babel/traverse": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
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/ef8cc1afa3ccecee6d1f5660c487ccc2a3f25106830ea9040e80ef4b2092e053607ee4ddd03493e4f7ef2f9967a956ca53b830d54c5bee738eeb58cce679dd4a
languageName: node
linkType: hard
"@babel/generator@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/generator@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^2.5.1"
checksum: 10/c71d24a4b41b19c10d2f2eb819f27d4cf94220e2322f7c8fed8bfbbb115b2bebbdd6dc1f27dac78a175e90604def58d763af87e0fa81ce4ab1582858162cf768
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-compilation-targets@npm:7.24.7"
dependencies:
"@babel/compat-data": "npm:^7.24.7"
"@babel/helper-validator-option": "npm:^7.24.7"
browserslist: "npm:^4.22.2"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/8f8bc89af70a606ccb208513aa25d83e19b88f91b64a33174f7701a9479e67ddbb0a9c89033265070375cd24e690b93380b3a3ea11e4b3a711d742f0f4699ee7
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-environment-visitor@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
checksum: 10/079d86e65701b29ebc10baf6ed548d17c19b808a07aa6885cc141b690a78581b180ee92b580d755361dc3b16adf975b2d2058b8ce6c86675fcaf43cf22f2f7c6
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-function-name@npm:7.24.7"
dependencies:
"@babel/template": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 10/2ceb3d9b2b35a0fc4100fc06ed7be3bc38f03ff0bf128ff0edbc0cc7dd842967b1496fc70b5c616c747d7711c2b87e7d025c8888f48740631d6148a9d3614f85
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-hoist-variables@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
checksum: 10/6cfdcf2289cd12185dcdbdf2435fa8d3447b797ac75851166de9fc8503e2fd0021db6baf8dfbecad3753e582c08e6a3f805c8d00cbed756060a877d705bd8d8d
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-module-imports@npm:7.24.7"
dependencies:
"@babel/traverse": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 10/df8bfb2bb18413aa151ecd63b7d5deb0eec102f924f9de6bc08022ced7ed8ca7fed914562d2f6fa5b59b74a5d6e255dc35612b2bc3b8abf361e13f61b3704770
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-module-transforms@npm:7.24.7"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.24.7"
"@babel/helper-module-imports": "npm:^7.24.7"
"@babel/helper-simple-access": "npm:^7.24.7"
"@babel/helper-split-export-declaration": "npm:^7.24.7"
"@babel/helper-validator-identifier": "npm:^7.24.7"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/4f2b232bf6d1be8d3a72b084a2a7ac1b0b93ea85717411a11ae1fb6375d4392019e781d8cc155789e649a2caa7eec378dd1404210603d6d4230f042c5feacffb
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.22.5":
version: 7.24.7
resolution: "@babel/helper-plugin-utils@npm:7.24.7"
checksum: 10/dad51622f0123fdba4e2d40a81a6b7d6ef4b1491b2f92fd9749447a36bde809106cf117358705057a2adc8fd73d5dc090222e0561b1213dae8601c8367f5aac8
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-simple-access@npm:7.24.7"
dependencies:
"@babel/traverse": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 10/5083e190186028e48fc358a192e4b93ab320bd016103caffcfda81302a13300ccce46c9cd255ae520c25d2a6a9b47671f93e5fe5678954a2329dc0a685465c49
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-split-export-declaration@npm:7.24.7"
dependencies:
"@babel/types": "npm:^7.24.7"
checksum: 10/ff04a3071603c87de0d6ee2540b7291ab36305b329bd047cdbb6cbd7db335a12f9a77af1cf708779f75f13c4d9af46093c00b34432e50b2411872c658d1a2e5e
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-string-parser@npm:7.24.7"
checksum: 10/603d8d962bbe89907aa99a8f19a006759ab7b2464615f20a6a22e3e2e8375af37ddd0e5175c9e622e1c4b2d83607ffb41055a59d0ce34404502af30fde573a5c
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-identifier@npm:7.24.7"
checksum: 10/86875063f57361471b531dbc2ea10bbf5406e12b06d249b03827d361db4cad2388c6f00936bcd9dc86479f7e2c69ea21412c2228d4b3672588b754b70a449d4b
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helper-validator-option@npm:7.24.7"
checksum: 10/9689166bf3f777dd424c026841c8cd651e41b21242dbfd4569a53086179a3e744c8eddd56e9d10b54142270141c91581b53af0d7c00c82d552d2540e2a919f7e
languageName: node
linkType: hard
"@babel/helpers@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/helpers@npm:7.24.7"
dependencies:
"@babel/template": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 10/f7496f0d7a0b13ea86136ac2053371027125734170328215f8a90eac96fafaaae4e5398c0729bdadf23261c00582a31e14bc70113427653b718220641a917f9d
languageName: node
linkType: hard
"@babel/highlight@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/highlight@npm:7.24.7"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.24.7"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10/69b73f38cdd4f881b09b939a711e76646da34f4834f4ce141d7a49a6bb1926eab1c594148970a8aa9360398dff800f63aade4e81fafdd7c8d8a8489ea93bfec1
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/parser@npm:7.24.7"
bin:
parser: ./bin/babel-parser.js
checksum: 10/ef9ebce60e13db560ccc7af9235d460f6726bb7e23ae2d675098c1fc43d5249067be60d4118889dad33b1d4f85162cf66baf554719e1669f29bb20e71322568e
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-self@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-react-jsx-self@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/671eebfabd14a0c7d6ae805fff7e289dfdb7ba984bb100ea2ef6dad1d6a665ebbb09199ab2e64fca7bc78bd0fdc80ca897b07996cf215fafc32c67bc564309af
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-source@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/plugin-transform-react-jsx-source@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/4ca2bd62ca14f8bbdcda9139f3f799e1c1c1bae504b67c1ca9bca142c53d81926d1a2b811f66a625f20999b2d352131053d886601f1ba3c1e9378c104d884277
languageName: node
linkType: hard
"@babel/runtime-corejs3@npm:^7.20.13, @babel/runtime-corejs3@npm:^7.20.7, @babel/runtime-corejs3@npm:^7.22.6":
version: 7.22.10
resolution: "@babel/runtime-corejs3@npm:7.22.10"
dependencies:
core-js-pure: "npm:^3.30.2"
regenerator-runtime: "npm:^0.14.0"
checksum: 10/78ee6b6952211942001bd9c543a82a939fae8e32ff4de8eebef9255b5e20ae18b53a63d928016c44c32d1359d464958169ad381c968e0a51f05620804fc78bf3
languageName: node
linkType: hard
"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.14.6, @babel/runtime@npm:^7.15.4, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.20.1, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7, @babel/runtime@npm:^7.9.2":
version: 7.24.6
resolution: "@babel/runtime@npm:7.24.6"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10/6c4e12731cd9206a883c19d48fa04f6aaaf7ee83f049b22631e6521b866edc20832b4d5db30aa86d8ae799c4dcf57761fe8a4af2bf7e233245c079c1dafb5668
languageName: node
linkType: hard
"@babel/template@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/template@npm:7.24.7"
dependencies:
"@babel/code-frame": "npm:^7.24.7"
"@babel/parser": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
checksum: 10/5975d404ef51cf379515eb0f80b115981d0b9dff5539e53a47516644abb8c83d7559f5b083eb1d4977b20d8359ebb2f911ccd4f729143f8958fdc465f976d843
languageName: node
linkType: hard
"@babel/traverse@npm:^7.18.9, @babel/traverse@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/traverse@npm:7.24.7"
dependencies:
"@babel/code-frame": "npm:^7.24.7"
"@babel/generator": "npm:^7.24.7"
"@babel/helper-environment-visitor": "npm:^7.24.7"
"@babel/helper-function-name": "npm:^7.24.7"
"@babel/helper-hoist-variables": "npm:^7.24.7"
"@babel/helper-split-export-declaration": "npm:^7.24.7"
"@babel/parser": "npm:^7.24.7"
"@babel/types": "npm:^7.24.7"
debug: "npm:^4.3.1"
globals: "npm:^11.1.0"
checksum: 10/785cf26383a992740e492efba7016de964cd06c05c9d7146fa1b5ead409e054c444f50b36dc37856884a56e32cf9d3105ddf1543486b6df68300bffb117a245a
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.8.3":
version: 7.24.7
resolution: "@babel/types@npm:7.24.7"
dependencies:
"@babel/helper-string-parser": "npm:^7.24.7"
"@babel/helper-validator-identifier": "npm:^7.24.7"
to-fast-properties: "npm:^2.0.0"
checksum: 10/ad3c8c0d6fb4acb0bb74bb5b4bb849b181bf6185677ef9c59c18856c81e43628d0858253cf232f0eca806f02e08eff85a1d3e636a3e94daea737597796b0b430
languageName: node
linkType: hard
"@biomejs/biome@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/biome@npm:1.9.4"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:1.9.4"
"@biomejs/cli-darwin-x64": "npm:1.9.4"