forked from graasp/graasp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
12930 lines (11669 loc) · 469 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
"@ampproject/remapping@npm:^2.2.0":
version: 2.3.0
resolution: "@ampproject/remapping@npm:2.3.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 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":
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.669.0":
version: 3.669.0
resolution: "@aws-sdk/client-s3@npm:3.669.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.669.0"
"@aws-sdk/client-sts": "npm:3.669.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.669.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.667.0"
"@aws-sdk/middleware-expect-continue": "npm:3.667.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.669.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-location-constraint": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.669.0"
"@aws-sdk/middleware-ssec": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.669.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.667.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.0"
"@aws-sdk/xml-builder": "npm:3.662.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/eventstream-serde-browser": "npm:^3.0.10"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.7"
"@smithy/eventstream-serde-node": "npm:^3.0.9"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-blob-browser": "npm:^3.1.6"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/hash-stream-node": "npm:^3.1.6"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/md5-js": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-stream": "npm:^3.1.9"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.6"
tslib: "npm:^2.6.2"
checksum: 10/e2794ff2e7f898a00a1d0cac1ae3eb65b8d8ec4d7d3bf342da64b087238a96392acfd0c3edb1ac59ce6b537f041c3211ed179da4fcd0b46bf23703c9d05366ac
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.669.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.669.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.667.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.669.0
checksum: 10/c0b051243f4f6fbc79cf2671c54cf0a3c41694e6cc4de5622394da4fa255670f18962f78287e6bea1001400599cfe66a9ec2a083b34d57b03516b9a92e0ea246
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/client-sso@npm:3.669.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.667.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/a246769219ebc568b8224539f52a98cfdddc9e75a79697d2c580e5210dd8f3834c78e0c294093faa03bb415767b4b272e70152fd7dd46716a1f0c05b28b13721
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/client-sts@npm:3.669.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.669.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-node": "npm:3.669.0"
"@aws-sdk/middleware-host-header": "npm:3.667.0"
"@aws-sdk/middleware-logger": "npm:3.667.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.667.0"
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/region-config-resolver": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@aws-sdk/util-user-agent-browser": "npm:3.667.0"
"@aws-sdk/util-user-agent-node": "npm:3.669.0"
"@smithy/config-resolver": "npm:^3.0.9"
"@smithy/core": "npm:^2.4.8"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/hash-node": "npm:^3.0.7"
"@smithy/invalid-dependency": "npm:^3.0.7"
"@smithy/middleware-content-length": "npm:^3.0.9"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/middleware-retry": "npm:^3.0.23"
"@smithy/middleware-serde": "npm:^3.0.7"
"@smithy/middleware-stack": "npm:^3.0.7"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/url-parser": "npm:^3.0.7"
"@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.23"
"@smithy/util-defaults-mode-node": "npm:^3.0.23"
"@smithy/util-endpoints": "npm:^2.1.3"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-retry": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/e29694f44058ce56bbc63b1c5cbea96fe9e80b2088c9fb12339c4a2648d7b1964498bc837783ea39dd1a4e08ef17b53656922fb35f4298510c8a759c2eb2c00a
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/core@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/core": "npm:^2.4.8"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-middleware": "npm:^3.0.7"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10/9eb6ffe976b2b24f0a5fc665e67b05f010de61ebbfbe3746c207fa12146c21bb34326cb52361d48ad8f8702f2624163b93c64a19e4740d3d04524b1aa4458e12
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-env@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/d2e22f427a58d615adfeaea53c2b02508b339e6080927c55da6d62c1c09f92ab32971dcf96eb012da49468b80661d72d2124879b0d4a6694180868b571055b2b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-http@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/fetch-http-handler": "npm:^3.2.9"
"@smithy/node-http-handler": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-stream": "npm:^3.1.9"
tslib: "npm:^2.6.2"
checksum: 10/f4d8543807e7aa9951ca8ba8e1cdcf0523eaa13c81b7ff0b0212fd32ef6fc7ca54bd3a06117f949f30b99e768ef0d3562ba9ffdbdc469933481833cab0fc239b
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.669.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/credential-provider-env": "npm:3.667.0"
"@aws-sdk/credential-provider-http": "npm:3.667.0"
"@aws-sdk/credential-provider-process": "npm:3.667.0"
"@aws-sdk/credential-provider-sso": "npm:3.669.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.669.0
checksum: 10/f3258c444ce4b23a9458a6a049a57aa7a5fc019c70f56d200217efd431ec5b3d542e8ee75bb3273aa354dbf12406d2f12b39ad929fe021cd0741f8403fcef325
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/credential-provider-node@npm:3.669.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.667.0"
"@aws-sdk/credential-provider-http": "npm:3.667.0"
"@aws-sdk/credential-provider-ini": "npm:3.669.0"
"@aws-sdk/credential-provider-process": "npm:3.667.0"
"@aws-sdk/credential-provider-sso": "npm:3.669.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/credential-provider-imds": "npm:^3.2.4"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/165cb8ea7ca3d50aab2f30836e5424969712a04789ec95e2ff830629eafad7896dc9b2579ae341c0d81e244039368b4148b1c2b6e97240eeb35c06ba888f37e5
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-process@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/321c2b18d923d18a68667a85ba321330f8fe78b3368c7451069841c27b20799559d6a9b8301d39712e00f2dc63ddbc2695b9709d9017229fe62d12216fa286cf
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.669.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.669.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/token-providers": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/76db6b17208acc8c3aac3023af87986b3189e703874e44a7b08ef5b15f2af1dc5252e428d37aee3f030346cc98481b9d0036c8d951723fa8a6c760cd90c937ad
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.667.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.667.0
checksum: 10/a8f50f878119a748a84731e772e958feae281e667071d08acb47632b1572f4f275aa7b3e38efde6cb143817e1d3ed43b8061cb60e2608ea670dbcb0d8865415c
languageName: node
linkType: hard
"@aws-sdk/lib-storage@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/lib-storage@npm:3.669.0"
dependencies:
"@smithy/abort-controller": "npm:^3.1.5"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
buffer: "npm:5.6.0"
events: "npm:3.3.0"
stream-browserify: "npm:3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-s3": ^3.669.0
checksum: 10/68db7ddd91bd0dfaaf51f263fa6f4ce45fa69e61a2930feb55d31b9b557b3756a24bab6e67c3e9bcd47f21b447dce1665eac3f36e572cd7533a79f84cb2fafeb
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/53071b7f25031f6bafb53b905ecbe147f393edc1e5ecb7a78dcee89c764743141fbb0c57289c7b05ee0c337a76d27c0753ebca7ff43f9e0574faa43937b16430
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/9d2e5f386cfe62e99ecbba28bdc5180607d68ca61ce328ff35d5dea2734017069d8cba1bf60d1f0199df2941fbd24461692d008de0a65a7985a4d7eae3394674
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.669.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/bf1565c773909ce19af12db208d371169a3c670c80d5657309c46138a8e565e070c68c577ea66e8a5b29d5d66f7cd7197723b6ceb81eb326cae09e5910224a96
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-host-header@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/85f3588f2028b9974fac2d629ab15b183156963d9b75f469424ecf470a2f8cc43f2c123bf21019e0a3ccbe15e1540d86f0f8938204727c0681269e4c4374b7a5
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/d30b84fbe5323e7d3deb5c9a4cbc119216b19436ea62d290c8c8cfa70a360add6f24356cebda7fc6ea097b7e88c662b47f70cf06c5988879d7b23d9e206bffb1
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-logger@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/954b5324483e9f84f28162c45106ea83bf46f5738555ebfe333398668ed3dd871586d717da533aabf02ed0cd6616a4ee375af90b9ca68101332e0fb6c121e7b7
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/4095a1f04a7dd7a6e639d0e1c01b1542caa99f5b72cf128abdecbe4431a4c13e2969e478ddbdc6d4aa6fd8bd7310d311d27f1d63b89af9b105e1a7d2cdbe8fc1
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.669.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-arn-parser": "npm:3.568.0"
"@smithy/core": "npm:^2.4.8"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.7"
"@smithy/util-stream": "npm:^3.1.9"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10/1a3af524033900b5d3a70d9f84f04fad5c6412752ec8e2466c7443e40b2e90f58c531478c781a29c29bcc15a5d45de4694046d8c3b37bb4d342b3d9b9a92629a
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/middleware-ssec@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/12385431ab3b6f3ac289651d6d59c6c5ca2925df5229a58b4de65e62ce8843e333bb315d183afc5bf1cf6110cf2908a8b4872a5d00aa5a4682bec0eff4c061b0
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.669.0"
dependencies:
"@aws-sdk/core": "npm:3.667.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-endpoints": "npm:3.667.0"
"@smithy/core": "npm:^2.4.8"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/b20db01e559b7dccc8675b36ac4a5df6a0e7e6fbbc3622cfa83f734d909c1e334ba650151ce037b3094add0a5f6086251a9d993fe69fc297b905594383a21a2d
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/region-config-resolver@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.7"
tslib: "npm:^2.6.2"
checksum: 10/1d2f1b5e82f050f44802a33fe2ea452baf51d4c36f6051a1f8e15f425b46c3959b5e2dc9d183140f910e7fdec01b8aec1dc5d3ede12130ab8fbc335998735b38
languageName: node
linkType: hard
"@aws-sdk/s3-request-presigner@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/s3-request-presigner@npm:3.669.0"
dependencies:
"@aws-sdk/signature-v4-multi-region": "npm:3.669.0"
"@aws-sdk/types": "npm:3.667.0"
"@aws-sdk/util-format-url": "npm:3.667.0"
"@smithy/middleware-endpoint": "npm:^3.1.4"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/smithy-client": "npm:^3.4.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/be24a8d6093f8ac3d74910a9f56a746cabf67587f44f2b3ab57002dfcc1019e84b63d36b96a8dda1bfac3864b7e8cd6a1e41b98290568f1da46149b1bc4f21ae
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.669.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.669.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/protocol-http": "npm:^4.1.4"
"@smithy/signature-v4": "npm:^4.2.0"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/3a08852e86e8e040f2745598a46462167ac2e002016f4de647bed353ebd4187d0df09544cd0ca1bbd8adf23a85a8e734c6482a98425763e64ec9a299002daf5e
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/token-providers@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/property-provider": "npm:^3.1.7"
"@smithy/shared-ini-file-loader": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.667.0
checksum: 10/aa1f332c477192cdac982ea99f768fe406d29defcca64a036b812082eb15709e34011b9a085754045e69635c0d04e833b8f77c6c22f5ca293c36d1cc5b1b99f0
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/types@npm:3.667.0"
dependencies:
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/b1c4c58a8d27ba4e809d6ff721ebe5104dd2aac87ca1837319ae2c4d588dcdeb352b3ff65a38353b302569e3568874272df6847792f240b7aa2a692a67e421e3
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.686.0
resolution: "@aws-sdk/types@npm:3.686.0"
dependencies:
"@smithy/types": "npm:^3.6.0"
tslib: "npm:^2.6.2"
checksum: 10/687582a70357f319fb9ad42f4608372754ba9eb9efbe6bbd8c7e3dcdce983b887d8534a567bac8cf0a3f9330bcfe16f1e88e62d20f735d37dbe081fdf7c89691
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.667.0":
version: 3.667.0
resolution: "@aws-sdk/util-endpoints@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
"@smithy/util-endpoints": "npm:^2.1.3"
tslib: "npm:^2.6.2"
checksum: 10/45a92752409cc77a00c217328f6f0b77d497714ff9e8b1eb2225a1706b75dd803f28adf71fe7b81e683923df42f27d49df85160027ca4ff84ccc14a97e6f4605
languageName: node
linkType: hard
"@aws-sdk/util-format-url@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/util-format-url@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/querystring-builder": "npm:^3.0.7"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/56332c1d2cc12d7d89f717a2bf54bb1efe5fe6e5b93bdb4cb916ca91bd27162e27cc47327f1ebbec703e3d6a21e9671d3c90594920f5a73b7ec144ffbff770de
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.679.0
resolution: "@aws-sdk/util-locate-window@npm:3.679.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10/4d9c608a0d1d9c0136a486ae66a1454429d7828569eb14fa5a1e405afc391139e6cd495f1713cf74b483da70aa6620a4adf2de0918f476c6d5ecb5c0c87fbc40
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.667.0":
version: 3.667.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.667.0"
dependencies:
"@aws-sdk/types": "npm:3.667.0"
"@smithy/types": "npm:^3.5.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10/39a4bc512513150f8b1c0f7d61eb66164757171b74f44b51d641c32c0217b490c3ed1be2d29e109f1b298cd8ecd01fa49b1ea4f9fada06e2f409b1759f325850
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.669.0":
version: 3.669.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.669.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.669.0"
"@aws-sdk/types": "npm:3.667.0"
"@smithy/node-config-provider": "npm:^3.1.8"
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10/decd56771f52cdd6d563cd5d796eb04e88c3db56ee95aa4f6461dd3130f80ff14f84a378748d7e9559fdde7feea59b3aacbc0f34b9a9b2364cb6a639f7e988fe
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.662.0":
version: 3.662.0
resolution: "@aws-sdk/xml-builder@npm:3.662.0"
dependencies:
"@smithy/types": "npm:^3.5.0"
tslib: "npm:^2.6.2"
checksum: 10/ca85f37c61196d18d812d08ad931b0b39d82b72c3de327e809f9130f165791eb00e5bbb340fc8fd8c14114fc1050f2225dd9283f1214b15d46d539ce688d9a09
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.25.9, @babel/code-frame@npm:^7.26.0":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10/db2c2122af79d31ca916755331bb4bac96feb2b334cdaca5097a6b467fdd41963b89b14b6836a14f083de7ff887fc78fa1b3c10b14e743d33e12dbfe5ee3d223
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.25.9":
version: 7.26.2
resolution: "@babel/compat-data@npm:7.26.2"
checksum: 10/ed9eed6b62ce803ef4a320b1dac76b0302abbb29c49dddf96f3e3207d9717eb34e299a8651bb1582e9c3346ead74b6d595ffced5b3dae718afa08b18741f8402
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.9":
version: 7.26.0
resolution: "@babel/core@npm:7.26.0"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.26.0"
"@babel/generator": "npm:^7.26.0"
"@babel/helper-compilation-targets": "npm:^7.25.9"
"@babel/helper-module-transforms": "npm:^7.26.0"
"@babel/helpers": "npm:^7.26.0"
"@babel/parser": "npm:^7.26.0"
"@babel/template": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.26.0"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10/65767bfdb1f02e80d3af4f138066670ef8fdd12293de85ef151758a901c191c797e86d2e99b11c4cdfca33c72385ecaf38bbd7fa692791ec44c77763496b9b93
languageName: node
linkType: hard
"@babel/generator@npm:7.17.7":
version: 7.17.7
resolution: "@babel/generator@npm:7.17.7"
dependencies:
"@babel/types": "npm:^7.17.0"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: 10/3303afa2b1310e67071d6c998121b2af1038d6450df266d24fe9a86329fb6288b8ab38bb71787917b3f81a1c4edbc5bc7e6735683fe1d0aa288b33e93daacd60
languageName: node
linkType: hard
"@babel/generator@npm:^7.23.0, @babel/generator@npm:^7.25.9, @babel/generator@npm:^7.26.0, @babel/generator@npm:^7.7.2":
version: 7.26.2
resolution: "@babel/generator@npm:7.26.2"
dependencies:
"@babel/parser": "npm:^7.26.2"
"@babel/types": "npm:^7.26.0"
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.25"
jsesc: "npm:^3.0.2"
checksum: 10/71ace82b5b07a554846a003624bfab93275ccf73cdb9f1a37a4c1094bf9dc94bb677c67e8b8c939dbd6c5f0eda2e8f268aa2b0d9c3b9511072565660e717e045
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-compilation-targets@npm:7.25.9"
dependencies:
"@babel/compat-data": "npm:^7.25.9"
"@babel/helper-validator-option": "npm:^7.25.9"
browserslist: "npm:^4.24.0"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.1"
checksum: 10/8053fbfc21e8297ab55c8e7f9f119e4809fa7e505268691e1bedc2cf5e7a5a7de8c60ad13da2515378621b7601c42e101d2d679904da395fa3806a1edef6b92e
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.20":
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.23.0":
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.22.5":
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.25.9":
version: 7.25.9
resolution: "@babel/helper-module-imports@npm:7.25.9"
dependencies:
"@babel/traverse": "npm:^7.25.9"
"@babel/types": "npm:^7.25.9"
checksum: 10/e090be5dee94dda6cd769972231b21ddfae988acd76b703a480ac0c96f3334557d70a965bf41245d6ee43891e7571a8b400ccf2b2be5803351375d0f4e5bcf08
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helper-module-transforms@npm:7.26.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
"@babel/traverse": "npm:^7.25.9"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10/9841d2a62f61ad52b66a72d08264f23052d533afc4ce07aec2a6202adac0bfe43014c312f94feacb3291f4c5aafe681955610041ece2c276271adce3f570f2f5
languageName: node
linkType: hard
"@babel/helper-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.25.9, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.25.9
resolution: "@babel/helper-plugin-utils@npm:7.25.9"
checksum: 10/e347d87728b1ab10b6976d46403941c8f9008c045ea6d99997a7ffca7b852dc34b6171380f7b17edf94410e0857ff26f3a53d8618f11d73744db86e8ca9b8c64
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.22.6":
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.25.9":
version: 7.25.9
resolution: "@babel/helper-string-parser@npm:7.25.9"
checksum: 10/c28656c52bd48e8c1d9f3e8e68ecafd09d949c57755b0d353739eb4eae7ba4f7e67e92e4036f1cd43378cc1397a2c943ed7bcaf5949b04ab48607def0258b775
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.16.7, @babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10/3f9b649be0c2fd457fa1957b694b4e69532a668866b8a0d81eabfa34ba16dbf3107b39e0e7144c55c3c652bf773ec816af8df4a61273a2bb4eb3145ca9cf478e
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-option@npm:7.25.9"
checksum: 10/9491b2755948ebbdd68f87da907283698e663b5af2d2b1b02a2765761974b1120d5d8d49e9175b167f16f72748ffceec8c9cf62acfbee73f4904507b246e2b3d
languageName: node
linkType: hard
"@babel/helpers@npm:^7.26.0":
version: 7.26.0
resolution: "@babel/helpers@npm:7.26.0"
dependencies:
"@babel/template": "npm:^7.25.9"
"@babel/types": "npm:^7.26.0"
checksum: 10/fd4757f65d10b64cfdbf4b3adb7ea6ffff9497c53e0786452f495d1f7794da7e0898261b4db65e1c62bbb9a360d7d78a1085635c23dfc3af2ab6dcba06585f86
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.5, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/parser@npm:7.26.2"
dependencies:
"@babel/types": "npm:^7.26.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10/8baee43752a3678ad9f9e360ec845065eeee806f1fdc8e0f348a8a0e13eef0959dabed4a197c978896c493ea205c804d0a1187cc52e4a1ba017c7935bab4983d
languageName: node
linkType: hard
"@babel/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.26.0
resolution: "@babel/plugin-syntax-import-attributes@npm:7.26.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.25.9"
peerDependencies: