-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
6906 lines (6242 loc) · 247 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
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10c0/53c2b231a61a46792b39a0d43bc4f4f776bb4542aa57ee04930676802e5501282c2fc8aac14e4cd1f1120ff8b52616b6ff5ab539ad30aa2277d726444b71619f
languageName: node
linkType: hard
"@actions/core@npm:1.10.1":
version: 1.10.1
resolution: "@actions/core@npm:1.10.1"
dependencies:
"@actions/http-client": "npm:^2.0.1"
uuid: "npm:^8.3.2"
checksum: 10c0/7a61446697a23dcad3545cf0634dedbdedf20ae9a0ee6ee977554589a15deb4a93593ee48a41258933d58ce0778f446b0d2c162b60750956fb75e0b9560fb832
languageName: node
linkType: hard
"@actions/http-client@npm:^2.0.1":
version: 2.1.0
resolution: "@actions/http-client@npm:2.1.0"
dependencies:
tunnel: "npm:^0.0.6"
checksum: 10c0/3936947d05c394ec3365a8757e13bd8cd0fb124cc1503254e46a95b2b8342fbf3f2a3c13d56d37e1d6705939cf2808dc64b4a38b75f83995fdc2e878e3aef89c
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: 10c0/92ce5915f8901d8c7cd4f4e6e2fe7b9fd335a29955b400caa52e0e5b12ca3796ada7c2f10e78c9c5b0f9c2539dff0ffea7b19850a56e1487aa083531e1e46d43
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/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/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-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-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-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-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/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-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.310.0
resolution: "@aws-sdk/util-locate-window@npm:3.310.0"
dependencies:
tslib: "npm:^2.5.0"
checksum: 10c0/9f040d9cb01687317ac9f61d5c9e349aeb506deb114f6259d48949428695e5c4e40b36920091451f74e037b016a6534e43d5a5eb225e18fa45eedb998c87bd6f
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
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/code-frame@npm:7.22.5"
dependencies:
"@babel/highlight": "npm:^7.22.5"
checksum: 10c0/0b6c5eaf9e58be7140ac790b7bdf8148e8a24e26502dcaa50f157259c083b0584285748fd90d342ae311a5bb1eaad7835aec625296d2b46853464f9bd8991e28
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/compat-data@npm:7.22.5"
checksum: 10c0/97f3c24a71b4e7d5f91c5807f6206a9cdb4123e595c51b34a19e9ea22b837003f969f732fde8819928d66e7b64047fd736c6717c8a1b96bf27fbfc30f6834aff
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3":
version: 7.22.5
resolution: "@babel/core@npm:7.22.5"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.22.5"
"@babel/generator": "npm:^7.22.5"
"@babel/helper-compilation-targets": "npm:^7.22.5"
"@babel/helper-module-transforms": "npm:^7.22.5"
"@babel/helpers": "npm:^7.22.5"
"@babel/parser": "npm:^7.22.5"
"@babel/template": "npm:^7.22.5"
"@babel/traverse": "npm:^7.22.5"
"@babel/types": "npm:^7.22.5"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.2"
semver: "npm:^6.3.0"
checksum: 10c0/c00e1474a41c18b669511dd1a1bd757d854cc8128218421a73c3b1c76b44fb22a57bbbd29a73b7a156cb1460af7a94602f81bed76b8d78c6ffae4de954b32a50
languageName: node
linkType: hard
"@babel/generator@npm:^7.22.5, @babel/generator@npm:^7.7.2":
version: 7.22.5
resolution: "@babel/generator@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 10c0/0613eddb4d1f7d82d88ad304e1acf48fddc3cdfb4c94bc3d2a9128cf0cdeedc0aa8d60301715c3b67537c00d9c9c9d50aad4339e7af1295c90def21893b17f7f
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-compilation-targets@npm:7.22.5"
dependencies:
"@babel/compat-data": "npm:^7.22.5"
"@babel/helper-validator-option": "npm:^7.22.5"
browserslist: "npm:^4.21.3"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/f36a2f27d970fa61b32090840ec847f73c6ada50becf7222c8778dd7ae07661c56f83d57e4c18437160e221512f91c442e3b86703741b45fc1277a548a6fd819
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-environment-visitor@npm:7.22.5"
checksum: 10c0/c9377464c1839741a0a77bbad56de94c896f4313eb034c988fc2ab01293e7c4027244c93b4256606c5f4e34c68cf599a7d31a548d537577c7da836bbca40551b
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-function-name@npm:7.22.5"
dependencies:
"@babel/template": "npm:^7.22.5"
"@babel/types": "npm:^7.22.5"
checksum: 10c0/3ce2e87967fe54aa463d279150ddda0dae3b5bc3f8c2773b90670b553b61e8fe62da7edcd7b1e1891c5b25af4924a6700dad2e9d8249b910a5bf7caa2eaf4c13
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-module-imports@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-module-imports@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10c0/04f8c0586c485c33017c63e0fc5fc16bd33b883cef3c88e4b3a8bf7bc807b3f9a7bcb9372fbcc01c0a539a5d1cdb477e7bdec77e250669edab00f796683b6b07
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-module-transforms@npm:7.22.5"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.22.5"
"@babel/helper-module-imports": "npm:^7.22.5"
"@babel/helper-simple-access": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.5"
"@babel/helper-validator-identifier": "npm:^7.22.5"
"@babel/template": "npm:^7.22.5"
"@babel/traverse": "npm:^7.22.5"
"@babel/types": "npm:^7.22.5"
checksum: 10c0/a28cf9a91ed657392f75ada08d96a46e8d0df420b7d5d1ac0bb1633d1404807d0cb6e6a3b0666c747d30f378fbb34985d30c6f25e2fcdd69dc58656e47aafe92
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.22.5, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.22.5
resolution: "@babel/helper-plugin-utils@npm:7.22.5"
checksum: 10c0/d2c4bfe2fa91058bcdee4f4e57a3f4933aed7af843acfd169cd6179fab8d13c1d636474ecabb2af107dc77462c7e893199aa26632bac1c6d7e025a17cbb9d20d
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
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-split-export-declaration@npm:7.22.5"
dependencies:
"@babel/types": "npm:^7.22.5"
checksum: 10c0/a1e463086f97778584c44129c5c37282d033bf97867b300ff42e64279df18d41fe0e56ebe6a1b27f907afa66ad2a313558db8d2e83e73384c5b22ac726c9c52a
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.23.4":
version: 7.24.1
resolution: "@babel/helper-string-parser@npm:7.24.1"
checksum: 10c0/2f9bfcf8d2f9f083785df0501dbab92770111ece2f90d120352fda6dd2a7d47db11b807d111e6f32aa1ba6d763fe2dc6603d153068d672a5d0ad33ca802632b2
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10c0/dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-option@npm:7.22.5"
checksum: 10c0/23e310bf1b90d085b1ae250f31d423fb6cc004da882f0d3409266e5e4c7fd41ed0a172283a6a9a16083c5f2e11f987b32c815c80c60d9a948e23dd6dcf2e0437
languageName: node
linkType: hard
"@babel/helpers@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helpers@npm:7.22.5"
dependencies:
"@babel/template": "npm:^7.22.5"
"@babel/traverse": "npm:^7.22.5"
"@babel/types": "npm:^7.22.5"
checksum: 10c0/efa2d0fc2107e270782a784af3a52e5e0b97187b7b34feeeeb00454bc322e802ff4007b22410c387c05580c793f517c4bafc8a6a3acfdb0e3a1b349728f270c4
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/highlight@npm:7.22.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/e8cc07b5de76a9bf779982096ccbbe5a867c36d3786b26151eb570d9344a68af8aa065ed97d431e0d18ba55fe792c7c4301e0d62afff7a52ee0d20678443be54
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/parser@npm:7.22.5"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/d6a1b1e1f375cf7f81263c57f0b6d41d67e9f498d75960ec7ab62a194d7c232a125a951009edc0c991cb7d6cc6b78b006b15e1e8fb83e0de3fe0ceb6bf3d95ef
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: 10c0/d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8
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: 10c0/686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.8.3":
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: 10c0/95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.7.2":
version: 7.22.5
resolution: "@babel/plugin-syntax-jsx@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/b56ceaa9c6adc17fadfb48e1c801d07797195df2a581489e33c8034950e12e7778de6e1e70d6bcf7c5c7ada6222fe6bad5746187ab280df435f5a2799c8dd0d8
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/ee1eab52ea6437e3101a0a7018b0da698545230015fc8ab129d292980ec6dff94d265e9e90070e8ae5fed42f08f1622c14c94552c77bcac784b37f503a82ff26
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/14bf6e65d5bc1231ffa9def5f0ef30b19b51c218fcecaa78cd1bdf7939dfdf23f90336080b7f5196916368e399934ce5d581492d8292b46a2fb569d8b2da106f
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.7.2":
version: 7.22.5
resolution: "@babel/plugin-syntax-typescript@npm:7.22.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.22.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/523a76627f17e67dc1999f4d7c7a71ed79e9f77f55a61cf05051101967ac23ec378ff0c93787b2cbd5d53720ad799658d796a649fa351682b2bf636f63b665a1
languageName: node
linkType: hard
"@babel/runtime@npm:^7.20.7":
version: 7.22.5
resolution: "@babel/runtime@npm:7.22.5"
dependencies:
regenerator-runtime: "npm:^0.13.11"
checksum: 10c0/11dcaeecd2246857ccf22f939fcae28a58d29e410607bfa28b95d9b03e298a3e3df8a530e22637d5bfccfc1661fb39cc50c06b404b5d53454bd93889c7dd3eb8
languageName: node
linkType: hard
"@babel/template@npm:^7.22.5, @babel/template@npm:^7.3.3":
version: 7.22.5
resolution: "@babel/template@npm:7.22.5"
dependencies:
"@babel/code-frame": "npm:^7.22.5"
"@babel/parser": "npm:^7.22.5"
"@babel/types": "npm:^7.22.5"
checksum: 10c0/dd8fc1b0bfe0128bace25da0e0a708e26320e8030322d3a53bb6366f199b46a277bfa4281dd370d73ab19087c7e27d166070a0659783b4715f7470448c7342b1
languageName: node
linkType: hard
"@babel/traverse@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/traverse@npm:7.22.5"
dependencies:
"@babel/code-frame": "npm:^7.22.5"
"@babel/generator": "npm:^7.22.5"
"@babel/helper-environment-visitor": "npm:^7.22.5"
"@babel/helper-function-name": "npm:^7.22.5"
"@babel/helper-hoist-variables": "npm:^7.22.5"
"@babel/helper-split-export-declaration": "npm:^7.22.5"
"@babel/parser": "npm:^7.22.5"
"@babel/types": "npm:^7.22.5"
debug: "npm:^4.1.0"
globals: "npm:^11.1.0"
checksum: 10c0/0217ec5ece6e4e3b6fd39dc4a23903d2d8ec76a7163731ae51a8cca03a450fb592782d620b8525219a5df9268b22901f3328a23440646d5ec2db4e3952817121
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.5, @babel/types@npm:^7.3.3, @babel/types@npm:^7.8.3":
version: 7.24.0
resolution: "@babel/types@npm:7.24.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.23.4"
"@babel/helper-validator-identifier": "npm:^7.22.20"
to-fast-properties: "npm:^2.0.0"
checksum: 10c0/777a0bb5dbe038ca4c905fdafb1cdb6bdd10fe9d63ce13eca0bd91909363cbad554a53dc1f902004b78c1dcbc742056f877f2c99eeedff647333b1fadf51235d
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 10c0/6b80ae4cb3db53f486da2dc63b6e190a74c8c3cca16bb2733f234a0b6a9382b09b146488ae08e2b22cf00f6c83e20f3e040a2f7894f05c045c946d6a090b1d52
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.11.0
resolution: "@eslint-community/regexpp@npm:4.11.0"
checksum: 10c0/0f6328869b2741e2794da4ad80beac55cba7de2d3b44f796a60955b0586212ec75e6b0253291fd4aad2100ad471d1480d8895f2b54f1605439ba4c875e05e523
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.57.0":
version: 8.57.0
resolution: "@eslint/js@npm:8.57.0"
checksum: 10c0/9a518bb8625ba3350613903a6d8c622352ab0c6557a59fe6ff6178bf882bf57123f9d92aa826ee8ac3ee74b9c6203fe630e9ee00efb03d753962dcf65ee4bd94
languageName: node
linkType: hard
"@github/browserslist-config@npm:^1.0.0":
version: 1.0.0
resolution: "@github/browserslist-config@npm:1.0.0"
checksum: 10c0/79767cbee7190a7ec9a9397c787f146776edb963f8e9b1be23ad3976b4c4d47978db94dd1ea555a5091efa9162bff40bcd1856b9e7aa10708d4aa3234132248d
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.14":
version: 0.11.14
resolution: "@humanwhocodes/config-array@npm:0.11.14"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.2"
debug: "npm:^4.3.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/66f725b4ee5fdd8322c737cb5013e19fac72d4d69c8bf4b7feb192fcb83442b035b92186f8e9497c220e58b2d51a080f28a73f7899bc1ab288c3be172c467541
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node