This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
4024 lines (3644 loc) · 143 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
"@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-cognito-identity@npm:3.509.0":
version: 3.509.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.509.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.507.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/credential-provider-node": "npm:3.509.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-signing": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.1.1"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/09cce3bacfb1cf83454af17fd724139e2d6780412f1d18cb14082d130d391939ada669aab16a9bb0c8f9576d93a2597b79f3cc04adb578000379e70015789356
languageName: node
linkType: hard
"@aws-sdk/client-ecr@npm:3.509.0":
version: 3.509.0
resolution: "@aws-sdk/client-ecr@npm:3.509.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.507.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/credential-provider-node": "npm:3.509.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-signing": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.1.1"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
"@smithy/util-waiter": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/79965026052cd175c34fb7a4ef610715b6333eb6b4c91730cf4721a43ef02915dd371f77004acf686644fd5df1786194bf4c08384b85919ca7697f5271b00825
languageName: node
linkType: hard
"@aws-sdk/client-ecs@npm:3.509.0":
version: 3.509.0
resolution: "@aws-sdk/client-ecs@npm:3.509.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.507.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/credential-provider-node": "npm:3.509.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-signing": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.1.1"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
"@smithy/util-waiter": "npm:^2.1.1"
tslib: "npm:^2.5.0"
uuid: "npm:^8.3.2"
checksum: 10c0/07723e77547c75cbf8ba3b5f4447c6971ce660e6cd085391c3cad2fc659ffaff1da38060f52751c5f236fb4ecc466165517e9ee783b40f51b8398599be073e4f
languageName: node
linkType: hard
"@aws-sdk/client-ssm@npm:3.509.0":
version: 3.509.0
resolution: "@aws-sdk/client-ssm@npm:3.509.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.507.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/credential-provider-node": "npm:3.509.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-signing": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.1.1"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
"@smithy/util-waiter": "npm:^2.1.1"
tslib: "npm:^2.5.0"
uuid: "npm:^8.3.2"
checksum: 10c0/27fdb825f6739d26417a41df5d1e0e2471809aef9a85b702b507ef1f59ddc66871aa8335e8e8ba53fef9f44668b6179b7642b32ae48939f3ed60aeb028ae8064
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.507.0":
version: 3.507.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.507.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/client-sts": "npm:3.507.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-signing": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.1.1"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.507.0
checksum: 10c0/53e7cd5197700e7a2b949bb541082db21f0517c2e36b65a0a565e34759d589ea55b59c937eabe808b262eef3c323e70d98a0ae10e3947f2cc19ea1f06fc16bad
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.507.0":
version: 3.507.0
resolution: "@aws-sdk/client-sso@npm:3.507.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.1.1"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/196435a1c07c8eee3d975b03c8343a3d6027efd154e056ebb2021859d273213d363e1468798a6af49240387c535e75b26d2c55dd1c5ce4d6d34b13da2fd36cef
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.507.0":
version: 3.507.0
resolution: "@aws-sdk/client-sts@npm:3.507.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:3.0.0"
"@aws-crypto/sha256-js": "npm:3.0.0"
"@aws-sdk/core": "npm:3.496.0"
"@aws-sdk/middleware-host-header": "npm:3.502.0"
"@aws-sdk/middleware-logger": "npm:3.502.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.502.0"
"@aws-sdk/middleware-user-agent": "npm:3.502.0"
"@aws-sdk/region-config-resolver": "npm:3.502.0"
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@aws-sdk/util-user-agent-browser": "npm:3.502.0"
"@aws-sdk/util-user-agent-node": "npm:3.502.0"
"@smithy/config-resolver": "npm:^2.1.1"
"@smithy/core": "npm:^1.3.1"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/hash-node": "npm:^2.1.1"
"@smithy/invalid-dependency": "npm:^2.1.1"
"@smithy/middleware-content-length": "npm:^2.1.1"
"@smithy/middleware-endpoint": "npm:^2.4.1"
"@smithy/middleware-retry": "npm:^2.1.1"
"@smithy/middleware-serde": "npm:^2.1.1"
"@smithy/middleware-stack": "npm:^2.1.1"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/url-parser": "npm:^2.1.1"
"@smithy/util-base64": "npm:^2.1.1"
"@smithy/util-body-length-browser": "npm:^2.1.1"
"@smithy/util-body-length-node": "npm:^2.2.1"
"@smithy/util-defaults-mode-browser": "npm:^2.1.1"
"@smithy/util-defaults-mode-node": "npm:^2.1.1"
"@smithy/util-endpoints": "npm:^1.1.1"
"@smithy/util-middleware": "npm:^2.1.1"
"@smithy/util-retry": "npm:^2.1.1"
"@smithy/util-utf8": "npm:^2.1.1"
fast-xml-parser: "npm:4.2.5"
tslib: "npm:^2.5.0"
peerDependencies:
"@aws-sdk/credential-provider-node": ^3.507.0
checksum: 10c0/ffb9cec001663312ea9b7218af0ffe6634259d985dbb80127433ff7057070ab0e9eb5e666578266146e2654da4137f9bebc9e429c03f76af827442c41972f587
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.496.0":
version: 3.496.0
resolution: "@aws-sdk/core@npm:3.496.0"
dependencies:
"@smithy/core": "npm:^1.3.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/signature-v4": "npm:^2.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/3064367fb4fe7812c2cf33f356ff74caaa9ead7ca04df17bfb57605715f176fc2071a86b818574373244c4a168826d579d1ba281de2e4e5329954051734a3d4e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:3.509.0":
version: 3.509.0
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.509.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.509.0"
"@aws-sdk/types": "npm:3.502.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/8eb0a01f29852ab5f24fe17ab0fd15b36faa2fb6661aea497e533ea0ab4c7cf768063d3d3352efc399a267c356bc7b1e97863cf294c226ef11b79bdd6d5a91e4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/credential-provider-env@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/f6f3daac0c9d3db078070e204e0d139933c7a7cfdefecbf0432d80dc4e987e24847ebaf30993eab9f4c90ab1aa69c145ed805e9b1342093608befcbec7c0510c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.503.1":
version: 3.503.1
resolution: "@aws-sdk/credential-provider-http@npm:3.503.1"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/fetch-http-handler": "npm:^2.4.1"
"@smithy/node-http-handler": "npm:^2.3.1"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/smithy-client": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-stream": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/b439793a23c9b4d5ac13a5b40e389cc0b53067b3f05c1c9afa9ec13ecffa90757c9faa12eef1ba90482bb8a8188fddd154fcfe747fe44bc71f91e7c793c115f9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.507.0":
version: 3.507.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.507.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.507.0"
"@aws-sdk/credential-provider-env": "npm:3.502.0"
"@aws-sdk/credential-provider-process": "npm:3.502.0"
"@aws-sdk/credential-provider-sso": "npm:3.507.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.507.0"
"@aws-sdk/types": "npm:3.502.0"
"@smithy/credential-provider-imds": "npm:^2.2.1"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/9aa494c5195fbfe48a5ca89e436ce4f715067a5ae9ff10992f320eadde0569608c5f569dc3263ae7cd4f89e656e2775a352234ac071d1c943d424ac243fa1633
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.509.0, @aws-sdk/credential-provider-node@npm:^3.509.0":
version: 3.509.0
resolution: "@aws-sdk/credential-provider-node@npm:3.509.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.502.0"
"@aws-sdk/credential-provider-http": "npm:3.503.1"
"@aws-sdk/credential-provider-ini": "npm:3.507.0"
"@aws-sdk/credential-provider-process": "npm:3.502.0"
"@aws-sdk/credential-provider-sso": "npm:3.507.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.507.0"
"@aws-sdk/types": "npm:3.502.0"
"@smithy/credential-provider-imds": "npm:^2.2.1"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/2c103c055f14876f3ae387cc659efe057e4524aa979c361d2bb57b8521ac758b4758d6d4570b13fcd249670b5904e1b53cd43df79d247ce202189a55cfea9743
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/credential-provider-process@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/da8f3f3d7bb05b1c00e612ff7075ea659ab1c1977b13db0f822e50d6593e3c6a83117e54082c2e4d28015b164142285d88f3c056cfcd64b4fa52e55b61333362
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.507.0":
version: 3.507.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.507.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.507.0"
"@aws-sdk/token-providers": "npm:3.507.0"
"@aws-sdk/types": "npm:3.502.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/e766382d0dc3e263ed2ece5f07c2e611a780f83166c8a99bd30fdd3b8fdedda6f69bf7e124f213ca5f4a63982423ba09631bc59a94e87f46f28ac84223ad2356
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.507.0":
version: 3.507.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.507.0"
dependencies:
"@aws-sdk/client-sts": "npm:3.507.0"
"@aws-sdk/types": "npm:3.502.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/9ebd83a850615241ab62bf1960d341b3722b9b01d8a2a038396be73de75039f378ee9798406e5e9e9127b91e2aec8348d9d6f063d0c18dcb5858e12ba0b98cd0
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.509.0":
version: 3.509.0
resolution: "@aws-sdk/credential-providers@npm:3.509.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.509.0"
"@aws-sdk/client-sso": "npm:3.507.0"
"@aws-sdk/client-sts": "npm:3.507.0"
"@aws-sdk/credential-provider-cognito-identity": "npm:3.509.0"
"@aws-sdk/credential-provider-env": "npm:3.502.0"
"@aws-sdk/credential-provider-http": "npm:3.503.1"
"@aws-sdk/credential-provider-ini": "npm:3.507.0"
"@aws-sdk/credential-provider-node": "npm:3.509.0"
"@aws-sdk/credential-provider-process": "npm:3.502.0"
"@aws-sdk/credential-provider-sso": "npm:3.507.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.507.0"
"@aws-sdk/types": "npm:3.502.0"
"@smithy/credential-provider-imds": "npm:^2.2.1"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/f62569446e035b1f68ca376df2274963474529eba0f73ec28e082eeb75aca3bde16451c507db5dd26ee4d4c0a6d7fb359d33f69280919241b1366654adafbfd2
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-host-header@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/67039ade0cdc97ba158c49b8c406c039eceda712ba6041915e7fbac105578aa6a88264e8c4f2b1a1856b36892d5f004a08bfff1ae5be5f2e5e77893afc12170f
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-logger@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/d4ca7d89d7a1e6603c9585a7a704fde7cf7e9786ffea8225d5fa74bf132cc89e2b91287b3f9783f63bd839f8162a26bcb0366de4c625537ed63fae2dd9955892
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/7e6f41a7d5d427aed023ce68a1bd1cfde81dc32b5cb444da77929ae28c8ae8c95cd05c42b5a1f6abea9cf7a81168de22426de93336d19d7365d79217d3a4063c
languageName: node
linkType: hard
"@aws-sdk/middleware-signing@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-signing@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/signature-v4": "npm:^2.1.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-middleware": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/a07147565ea8946b765916e02d06b0fb251dfe4d3b36f9299420e0cafc041145501764a08d1c24ed656ee32953ce602a47abc3684efe7be595f2b30bfb1bd093
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@aws-sdk/util-endpoints": "npm:3.502.0"
"@smithy/protocol-http": "npm:^3.1.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/91663d161a8e64a1fa3ec31c13d89c2d7c849df35c4e7e928b3f087fd289b75469e497c13889ed2854d5f6c9f12e37cf7f7ec68aca6361f911d452be901272c4
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/region-config-resolver@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-config-provider": "npm:^2.2.1"
"@smithy/util-middleware": "npm:^2.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/f5df58df7cbf6731a64faa32c26d1b9a6baca4bc005fb99412069452ca8ae791b91e284f41b21321687f8e436134392024512be3e7c640543c1644355393d894
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.507.0":
version: 3.507.0
resolution: "@aws-sdk/token-providers@npm:3.507.0"
dependencies:
"@aws-sdk/client-sso-oidc": "npm:3.507.0"
"@aws-sdk/types": "npm:3.502.0"
"@smithy/property-provider": "npm:^2.1.1"
"@smithy/shared-ini-file-loader": "npm:^2.3.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/477d66fd0621185e2ee4dce5316ea496b186c94d1d631b54bf89829f7db205fac5964373c284ad0bfcbadcc2317d1cf70a869dc8a9526a85a1fcda81ba7d38a1
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/types@npm:3.502.0"
dependencies:
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
checksum: 10c0/8db784c1eee0f788f6650390b28f83fe38d85890441db1bbace865d412b372b4a3011f1d6a4919ff306a23813d17bd7307448eb35aae51783b839e6af3b64d74
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.408.0
resolution: "@aws-sdk/types@npm:3.408.0"
dependencies:
"@smithy/types": "npm:^2.2.2"
tslib: "npm:^2.5.0"
checksum: 10c0/215c27d5a91785a13049b0f4aa75c95d68817b782498565dde83c5e57ff5b28266f21e528aca84a532c510074f1622f93633f602ccfd9c03f55eb1c0ce18be2b
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/util-endpoints@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/types": "npm:^2.9.1"
"@smithy/util-endpoints": "npm:^1.1.1"
tslib: "npm:^2.5.0"
checksum: 10c0/cbbdce293bec546b62f691aec7c92cbf0c310c64ee6aa48c4c52b902092ef786e193445d43bed3c200167dc772b5eda8f5a12a82b516f94cfb151936a341ae81
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.55.0
resolution: "@aws-sdk/util-locate-window@npm:3.55.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 10c0/892974d979489e81dd155df217a56bd3a9f7c7dab617c56599a32e0d1ff7cbc8c0b4b45feac61b2a1957a98c03c7cabdda4ea9133475df8fcd5a0e40247c2ad6
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/types": "npm:^2.9.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.5.0"
checksum: 10c0/6000f261706e414e0168d0f41f7c2217ac4778cf9c5a8d9179ebebed8376b638ec8d49c98c215b3b17b7ca5c1e8791541578b7c3600910df831d2efa47190eac
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.502.0":
version: 3.502.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.502.0"
dependencies:
"@aws-sdk/types": "npm:3.502.0"
"@smithy/node-config-provider": "npm:^2.2.1"
"@smithy/types": "npm:^2.9.1"
tslib: "npm:^2.5.0"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/706cae9cd8867a3365a0c86c2c8a8a174d3cbd931be85315b4172fe4647c7e5c9d598b19c04ffec6da6c12dd3d514c1698bbb3767ea144dde406c1333e6ef23d
languageName: node
linkType: hard
"@aws-sdk/util-utf8-browser@npm:^3.0.0":
version: 3.109.0
resolution: "@aws-sdk/util-utf8-browser@npm:3.109.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: 10c0/ef8c565cb7a9d2451c13939c301c53f313fc92ff5b2b010b3c60ecfa6a5a6936f03fcc41a93ba06de5ca8c8bd03ba78dd6e1027b2e14b58e5218e405a6cd609d
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: 10c0/f4cc8ae1000265677daf4845083b72f88d00d311adb1a93c94eb4b07bf0ed6828a81ae4ac43ee7d476775000b93a28a9cddec18fbdc5796212d8dcccd5de72bd
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.15
resolution: "@babel/helper-validator-identifier@npm:7.22.15"
checksum: 10c0/0473ccfd123cf872206eb916ec506f8963f75db50413560d4d1674aed4cd5d9354826c2514474d6cd40637d3bdc515ba87e8035b4bed683ba62cb607e0081aaf
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/highlight@npm:7.22.13"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 10c0/65f20132c7ada5d82d343dc23ca61bcd040980f7bd59e480532bcd7f7895aa7abe58470ae8a4f851fd244b71b42a7ad915f7c515fef8f1c2e003777721ebdbe6
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/aix-ppc64@npm:0.19.12"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-arm64@npm:0.19.12"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-arm@npm:0.19.12"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/android-x64@npm:0.19.12"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/darwin-arm64@npm:0.19.12"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/darwin-x64@npm:0.19.12"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/freebsd-arm64@npm:0.19.12"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/freebsd-x64@npm:0.19.12"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-arm64@npm:0.19.12"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-arm@npm:0.19.12"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-ia32@npm:0.19.12"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-loong64@npm:0.19.12"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-mips64el@npm:0.19.12"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-ppc64@npm:0.19.12"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-riscv64@npm:0.19.12"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-s390x@npm:0.19.12"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/linux-x64@npm:0.19.12"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/netbsd-x64@npm:0.19.12"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/openbsd-x64@npm:0.19.12"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/sunos-x64@npm:0.19.12"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/win32-arm64@npm:0.19.12"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/win32-ia32@npm:0.19.12"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.19.12":
version: 0.19.12
resolution: "@esbuild/win32-x64@npm:0.19.12"
conditions: os=win32 & cpu=x64
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.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.8.0
resolution: "@eslint-community/regexpp@npm:4.8.0"
checksum: 10c0/77252aecfea8a2eb02bb076803f78c1529963e9a7f1cb1be5305126f5582a0cbd1cb6ab38a8ac952633cfd5659c101e8b8b494c69376a2481ddd9bd156419fdd
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.56.0, @eslint/js@npm:^8.56.0":
version: 8.56.0
resolution: "@eslint/js@npm:8.56.0"
checksum: 10c0/60b3a1cf240e2479cec9742424224465dc50e46d781da1b7f5ef240501b2d1202c225bd456207faac4b34a64f4765833345bc4ddffd00395e1db40fa8c426f5a
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 10c0/0b3c9958d3cd17f4add3574975e3115ae05dc7f1298a60810414b16f6f558c137b5fb3cd3905df380bacfd955ec13f67c1e6710cbb5c246a7e8d65a8289b2bff
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.13":
version: 0.11.13
resolution: "@humanwhocodes/config-array@npm:0.11.13"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/d76ca802d853366094d0e98ff0d0994117fc8eff96649cd357b15e469e428228f597cd2e929d54ab089051684949955f16ee905bb19f7b2f0446fb377157be7a
languageName: node
linkType: hard