-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathyarn.lock
More file actions
2904 lines (2632 loc) · 106 KB
/
Copy pathyarn.lock
File metadata and controls
2904 lines (2632 loc) · 106 KB
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
"@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: 10c0/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
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: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
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: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
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: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
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: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
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: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:5.2.0, @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: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-cognito-identity@npm:3.1041.0":
version: 3.1041.0
resolution: "@aws-sdk/client-cognito-identity@npm:3.1041.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/credential-provider-node": "npm:^3.972.39"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.38"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.24"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.7"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.6"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/74553a9385307e0b1f59a0ca197000b445a432bc18003d2ec1bdfc01c74363292560f9706c48bbdc0543e0b36c0f5632e18f88046c080ef736add529a4b5d75a
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.1041.0":
version: 3.1041.0
resolution: "@aws-sdk/client-s3@npm:3.1041.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/core": "npm:^3.974.8"
"@aws-sdk/credential-provider-node": "npm:^3.972.39"
"@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.10"
"@aws-sdk/middleware-expect-continue": "npm:^3.972.10"
"@aws-sdk/middleware-flexible-checksums": "npm:^3.974.16"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-location-constraint": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.37"
"@aws-sdk/middleware-ssec": "npm:^3.972.10"
"@aws-sdk/middleware-user-agent": "npm:^3.972.38"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.25"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.24"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/eventstream-serde-browser": "npm:^4.2.14"
"@smithy/eventstream-serde-config-resolver": "npm:^4.3.14"
"@smithy/eventstream-serde-node": "npm:^4.2.14"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-blob-browser": "npm:^4.2.15"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/hash-stream-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/md5-js": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.7"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.6"
"@smithy/util-stream": "npm:^4.5.25"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/util-waiter": "npm:^4.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1b8560bef4e62c50a43929a15bfc572d3dd918fb623d9e4ce7faaf7f4120ff9063bc811f4e09e9ddd7798f5c9c4246a0d8904a67a8d48bd906b531389e7c893b
languageName: node
linkType: hard
"@aws-sdk/core@npm:^3.974.8":
version: 3.974.8
resolution: "@aws-sdk/core@npm:3.974.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/xml-builder": "npm:^3.972.22"
"@smithy/core": "npm:^3.23.17"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/signature-v4": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.6"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/7b7e01e01e8b5f28b5d1b3d6f263bcf1b395600c2401009ad2b398a39b43ade33eacd59371c1e960c969f8164bfa9aff3ce950a5ba527a73c82eedc21456850f
languageName: node
linkType: hard
"@aws-sdk/crc64-nvme@npm:^3.972.7":
version: 3.972.7
resolution: "@aws-sdk/crc64-nvme@npm:3.972.7"
dependencies:
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/c6f23e4e4c06b98009264b511567bb808d4c4f53c1da9b41f5c975f5f9f5e4b11af16e7add850e7bba29731b6efb145eb4dc0538d9639d6a5daaceadb4acf35d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.31":
version: 3.972.31
resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.31"
dependencies:
"@aws-sdk/nested-clients": "npm:^3.997.6"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/92efbcd91559c2ce40fd757156af9b858ef7909f39b7e1f3e26285ec62e56872fe9ba3b8f85895fabc6c9c663e6f932ed3b34ca1f9be500b839c7e8937853bcb
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:^3.972.34":
version: 3.972.34
resolution: "@aws-sdk/credential-provider-env@npm:3.972.34"
dependencies:
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/2f75940784b92ff71292b6dc5e660982f80bcfb4c3fcd0f0a04b0ff7de0a5b91000505b947434813b1104647d05678c3504560a7937aa82639e0042cb4597705
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:^3.972.36":
version: 3.972.36
resolution: "@aws-sdk/credential-provider-http@npm:3.972.36"
dependencies:
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-stream": "npm:^4.5.25"
tslib: "npm:^2.6.2"
checksum: 10c0/b3dd17e4403b3ef026a65da15cc3d08fdfddd42449f6d10edc6a4b016ed05306f7d4fe1fe286abd00bcf6cf3817ed19556fd97db9b2449deb0182569980dcd01
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:^3.972.38":
version: 3.972.38
resolution: "@aws-sdk/credential-provider-ini@npm:3.972.38"
dependencies:
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/credential-provider-env": "npm:^3.972.34"
"@aws-sdk/credential-provider-http": "npm:^3.972.36"
"@aws-sdk/credential-provider-login": "npm:^3.972.38"
"@aws-sdk/credential-provider-process": "npm:^3.972.34"
"@aws-sdk/credential-provider-sso": "npm:^3.972.38"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.38"
"@aws-sdk/nested-clients": "npm:^3.997.6"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/credential-provider-imds": "npm:^4.2.14"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/198c7e3f88f525f814f599f6a1bc3a63c84ed046140017786f23de255adcb5c90f0bbcf9ec167c8c6771d63270f7ed9ac061713884ecddebc01da74be88ee6ea
languageName: node
linkType: hard
"@aws-sdk/credential-provider-login@npm:^3.972.38":
version: 3.972.38
resolution: "@aws-sdk/credential-provider-login@npm:3.972.38"
dependencies:
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/nested-clients": "npm:^3.997.6"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/f84ab04b8fec3355dce3d2a0f9bd63e79ef04915f019f2b6731a267e853f7cfb066baf67a22c955e58aa86f5b6eded6acdfdfd67532cc923edeefb8e88f46d63
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:^3.972.39":
version: 3.972.39
resolution: "@aws-sdk/credential-provider-node@npm:3.972.39"
dependencies:
"@aws-sdk/credential-provider-env": "npm:^3.972.34"
"@aws-sdk/credential-provider-http": "npm:^3.972.36"
"@aws-sdk/credential-provider-ini": "npm:^3.972.38"
"@aws-sdk/credential-provider-process": "npm:^3.972.34"
"@aws-sdk/credential-provider-sso": "npm:^3.972.38"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.38"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/credential-provider-imds": "npm:^4.2.14"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/e21808419372f95c842ed6f893d15599565a1fa9dffed81256a374f98ef3a3c276ab4be30fbaac963e5c4761b676fe10482f5a6b1fb2b03273b18e9ecd30c12d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:^3.972.34":
version: 3.972.34
resolution: "@aws-sdk/credential-provider-process@npm:3.972.34"
dependencies:
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/f65dbaaa40a81ba8e84d314e8ac0528f6d807b63b98820102ffccb38f47b1aa52f0c6dd4d7e4e8df186cef9cd57041e1d2d929c0e692804a8af0d06497f38a6a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:^3.972.38":
version: 3.972.38
resolution: "@aws-sdk/credential-provider-sso@npm:3.972.38"
dependencies:
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/nested-clients": "npm:^3.997.6"
"@aws-sdk/token-providers": "npm:3.1041.0"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/4919362e1b8f6b73b8ec8ed0e0cc8f7a33db9b0d3ef63346a03047a024910d1acc6d80428a51444f6f15d58534dd535bc461b8505dd8f1cd6dc4fd8f863f956d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:^3.972.38":
version: 3.972.38
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.38"
dependencies:
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/nested-clients": "npm:^3.997.6"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/7a235d693dae5578c15448c8484d68ca7749ffd327b4e3784e3a1c6784a14535b398cc09c6be26e97042779acc261adedc7064681b930d93ebcda26da17c1f72
languageName: node
linkType: hard
"@aws-sdk/credential-providers@npm:^3.1041.0":
version: 3.1041.0
resolution: "@aws-sdk/credential-providers@npm:3.1041.0"
dependencies:
"@aws-sdk/client-cognito-identity": "npm:3.1041.0"
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.31"
"@aws-sdk/credential-provider-env": "npm:^3.972.34"
"@aws-sdk/credential-provider-http": "npm:^3.972.36"
"@aws-sdk/credential-provider-ini": "npm:^3.972.38"
"@aws-sdk/credential-provider-login": "npm:^3.972.38"
"@aws-sdk/credential-provider-node": "npm:^3.972.39"
"@aws-sdk/credential-provider-process": "npm:^3.972.34"
"@aws-sdk/credential-provider-sso": "npm:^3.972.38"
"@aws-sdk/credential-provider-web-identity": "npm:^3.972.38"
"@aws-sdk/nested-clients": "npm:^3.997.6"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/credential-provider-imds": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/da1bae71757373450d22e3a920b14a901b4846f5f44501246f15764503b3e6332d3b3fb05b6bef64e5150d96886f63aadff1bc6402ef7186096ead9f905b9f38
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-arn-parser": "npm:^3.972.3"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-config-provider": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/5529288142e0ebfbd985a257dbbb0f3510981a6ef56ce449465458ca12f7bcbbb9bfba9e1788c925329443604d4a438275f30254ef1d47e7931da798fb6e6765
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/c91588169621597bed09aa53f9bf858b83a0c8b8b84d6838ed3729c8222a7b7d5819595fd2617ca8f859e8471ca7e7132bb7d1694d5ada17039dea53cc707e4b
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:^3.974.16":
version: 3.974.16
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.974.16"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/crc64-nvme": "npm:^3.972.7"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/is-array-buffer": "npm:^4.2.2"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-stream": "npm:^4.5.25"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/0725e497e2ebd4201682a786b28da90acc9c86459bfd6a3a29591021b7be4e5e17aee2628b71921eba003740d49b88d48eab8bd80220dfc5aa16dc7c50488775
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/middleware-host-header@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/e631b48f8d8fd40f8977da8d1fc012208f953000dd5645dc0a700c7283af8fafb996c9c1c50e40b8392c402ad98d11e0ddddb949896db5163a7f06e2385e619a
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/ef8ef1f3cf7d28e5b02edcc2b62cab07a380f7a02983bdfcaf24fbea35129c53ac5a1f5846ab28212b649d6c81f437e2a846f1f954fb374509ea174201bf09d4
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/middleware-logger@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/a24e0c98b3cf6c9b7960bf8979d2ab8f839fb89294ba8943136d99dbe7370cc45b010460ed7f5bf14ab6ad8e113ccec6387cf1bda655bcbdb58722df21d9b713
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:^3.972.11":
version: 3.972.11
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.11"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@aws/lambda-invoke-store": "npm:^0.2.2"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/e52501b00e79e714218897ddec9edd40ecf33fdb43c19b00195c8ed71c8295d0d148f07465465d464f103a23aa535dc1daf60bbb5b95303e330767a5eba78f54
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:^3.972.37":
version: 3.972.37
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.37"
dependencies:
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-arn-parser": "npm:^3.972.3"
"@smithy/core": "npm:^3.23.17"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/signature-v4": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-config-provider": "npm:^4.2.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-stream": "npm:^4.5.25"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c8d4ad6aa908eca70ef085ac2c55362229071caa9518ed538574cc4d317d9f1f4e2173d6b01259dd83f77356ad4b68656b5720a31b3effe01f7fe10aec265aed
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/middleware-ssec@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/13e11c485e63d6b3d8a5f14888c6b8aea1c0a96a99826e840840b6974b9605b5f528f8869b021036e8615995d9e5ecd33d6e67af1561ed673d37292d356ca441
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:^3.972.38":
version: 3.972.38
resolution: "@aws-sdk/middleware-user-agent@npm:3.972.38"
dependencies:
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@smithy/core": "npm:^3.23.17"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-retry": "npm:^4.3.6"
tslib: "npm:^2.6.2"
checksum: 10c0/b9cf9416bc276b4abf42513515de5ee45ee419255b5953c9e53b44010500fcc486de988351683ecae52bf00c6bb5819c67375261afe1375b8a2a44196a8b9884
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:^3.997.6":
version: 3.997.6
resolution: "@aws-sdk/nested-clients@npm:3.997.6"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/middleware-host-header": "npm:^3.972.10"
"@aws-sdk/middleware-logger": "npm:^3.972.10"
"@aws-sdk/middleware-recursion-detection": "npm:^3.972.11"
"@aws-sdk/middleware-user-agent": "npm:^3.972.38"
"@aws-sdk/region-config-resolver": "npm:^3.972.13"
"@aws-sdk/signature-v4-multi-region": "npm:^3.996.25"
"@aws-sdk/types": "npm:^3.973.8"
"@aws-sdk/util-endpoints": "npm:^3.996.8"
"@aws-sdk/util-user-agent-browser": "npm:^3.972.10"
"@aws-sdk/util-user-agent-node": "npm:^3.973.24"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/core": "npm:^3.23.17"
"@smithy/fetch-http-handler": "npm:^5.3.17"
"@smithy/hash-node": "npm:^4.2.14"
"@smithy/invalid-dependency": "npm:^4.2.14"
"@smithy/middleware-content-length": "npm:^4.2.14"
"@smithy/middleware-endpoint": "npm:^4.4.32"
"@smithy/middleware-retry": "npm:^4.5.7"
"@smithy/middleware-serde": "npm:^4.2.20"
"@smithy/middleware-stack": "npm:^4.2.14"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/node-http-handler": "npm:^4.6.1"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/smithy-client": "npm:^4.12.13"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-body-length-node": "npm:^4.2.3"
"@smithy/util-defaults-mode-browser": "npm:^4.3.49"
"@smithy/util-defaults-mode-node": "npm:^4.2.54"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-retry": "npm:^4.3.6"
"@smithy/util-utf8": "npm:^4.2.2"
tslib: "npm:^2.6.2"
checksum: 10c0/05c74c7362be74c723b64667763bd1e635c8d566456f70b64fa26546e7c605a49bf1bede7c2f5c293a0677b737093bbdc9b957a26124b9e1de5acf715dc57bb4
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:^3.972.13":
version: 3.972.13
resolution: "@aws-sdk/region-config-resolver@npm:3.972.13"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/config-resolver": "npm:^4.4.17"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/8cc3e5433ccf9ec4efb6d12ccd924701cfd6fb018124c9e5106486da10402ea1b83b0855353dae5e0f31ad2c7b6d962ac832350a5cdbeda59a30231525fd1118
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:^3.996.25":
version: 3.996.25
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.25"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:^3.972.37"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/signature-v4": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/05196c85d265e5e59df621c7844235a449a940ebc8264578c0f87d76b6fbb741650a5634433589b9223a05003198be214068eef7d6e50596196de0f1d1954b5d
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.1041.0":
version: 3.1041.0
resolution: "@aws-sdk/token-providers@npm:3.1041.0"
dependencies:
"@aws-sdk/core": "npm:^3.974.8"
"@aws-sdk/nested-clients": "npm:^3.997.6"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/shared-ini-file-loader": "npm:^4.4.9"
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/af70f8e23a98a750dcb661b43bbd896e4a2425f553336c491b118a058e46691689ac4fa980f69d2dae42d1488f3b859adbd2f347d73ac1261f44b421d2041101
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.709.0
resolution: "@aws-sdk/types@npm:3.709.0"
dependencies:
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/332884276344189e53d7044e27b9d6ec89fe1f06cdbd24afafcfc08c817a54ccf8b74312aa866895caae18a8f3a8d985a5afdf8553d90843998866b86acebacf
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.973.8":
version: 3.973.8
resolution: "@aws-sdk/types@npm:3.973.8"
dependencies:
"@smithy/types": "npm:^4.14.1"
tslib: "npm:^2.6.2"
checksum: 10c0/4823579e7dd0f6dcce9e9fea9630091eb46e3596bc468614a072f682b1eab6f048854ccf5e9398459ada175c13dfc636ffa8c1d3aa655cf6f22447f9c1a02f7f
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:^3.972.3":
version: 3.972.3
resolution: "@aws-sdk/util-arn-parser@npm:3.972.3"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/75c94dcd5d99a60375ce3474b0ee4f1ca17abdcd46ffbf34ce9d2e15238d77903c8993dddd46f1f328a7989c5aaec0c7dfef8b3eaa3e1125bea777399cfc46f2
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:^3.996.8":
version: 3.996.8
resolution: "@aws-sdk/util-endpoints@npm:3.996.8"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-endpoints": "npm:^3.4.2"
tslib: "npm:^2.6.2"
checksum: 10c0/66f17e85357ab8e265ab7d1c9a69a064ad3bea99420c786be9ef1f92bc71dca22d328bbceeaf6c64b4a3c37161b78318a3e4a424bf247dcb211d7ae29344db2f
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.693.0
resolution: "@aws-sdk/util-locate-window@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/68630e3b6e7f47ec05c92a7f2369464f5fcd218d4dc5c4103465681424b64072d290ab565938449c0afa312cfce200e553e4a14d6a411542069d95880f3434f5
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:^3.972.10":
version: 3.972.10
resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.10"
dependencies:
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/types": "npm:^4.14.1"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e139dda2cb51a0a3553c80ec6f89c39cb1292876c116f8449f21a7fdbe39bd7b545ef8ea69a447dd9fa2aa43c99f625ee6a55cbf6d8e6cf2094d0ef00ceb1e36
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:^3.973.24":
version: 3.973.24
resolution: "@aws-sdk/util-user-agent-node@npm:3.973.24"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:^3.972.38"
"@aws-sdk/types": "npm:^3.973.8"
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-config-provider": "npm:^4.2.2"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/859c6441d1d24594d73a125c2a335faeb412a5cc3ab318005ce2e4904c3f9a0c6781437ae0fb2e3a1eb2343146dafbb9ac037ea88fbd8e78d50f7153732c5bb4
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:^3.972.22":
version: 3.972.22
resolution: "@aws-sdk/xml-builder@npm:3.972.22"
dependencies:
"@nodable/entities": "npm:2.1.0"
"@smithy/types": "npm:^4.14.1"
fast-xml-parser: "npm:5.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/4d9a7056a8ce6af639a9fa354f70a5a895b2e23c06c027776849d32ba18aa0d7f174133f1bc15756b79ac2bfdb9d990f092fb76a3891a7d1f6b03a424a8a6735
languageName: node
linkType: hard
"@aws/lambda-invoke-store@npm:^0.2.2":
version: 0.2.3
resolution: "@aws/lambda-invoke-store@npm:0.2.3"
checksum: 10c0/3869a5d2494ff81fba306d603c0f2e36c59f89c4efdffd1105a208a595da77059547209a163b6f0c1b716e9d273ce24f94dcbd5a08bad74b2602d13711b0cb3b
languageName: node
linkType: hard
"@biomejs/biome@npm:2.4.14":
version: 2.4.14
resolution: "@biomejs/biome@npm:2.4.14"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:2.4.14"
"@biomejs/cli-darwin-x64": "npm:2.4.14"
"@biomejs/cli-linux-arm64": "npm:2.4.14"
"@biomejs/cli-linux-arm64-musl": "npm:2.4.14"
"@biomejs/cli-linux-x64": "npm:2.4.14"
"@biomejs/cli-linux-x64-musl": "npm:2.4.14"
"@biomejs/cli-win32-arm64": "npm:2.4.14"
"@biomejs/cli-win32-x64": "npm:2.4.14"
dependenciesMeta:
"@biomejs/cli-darwin-arm64":
optional: true
"@biomejs/cli-darwin-x64":
optional: true
"@biomejs/cli-linux-arm64":
optional: true
"@biomejs/cli-linux-arm64-musl":
optional: true
"@biomejs/cli-linux-x64":
optional: true
"@biomejs/cli-linux-x64-musl":
optional: true
"@biomejs/cli-win32-arm64":
optional: true
"@biomejs/cli-win32-x64":
optional: true
bin:
biome: bin/biome
checksum: 10c0/83a42fc27cf74b66f5035fd38c23292c51506cb28181aeb2c3b22a289c265ede011d85876aaed85cc378c8c937a3ed27d99030f356ecebb2de42550627b089c8
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:2.4.14":
version: 2.4.14
resolution: "@biomejs/cli-darwin-arm64@npm:2.4.14"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:2.4.14":
version: 2.4.14
resolution: "@biomejs/cli-darwin-x64@npm:2.4.14"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:2.4.14":
version: 2.4.14
resolution: "@biomejs/cli-linux-arm64-musl@npm:2.4.14"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:2.4.14":
version: 2.4.14
resolution: "@biomejs/cli-linux-arm64@npm:2.4.14"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:2.4.14":
version: 2.4.14
resolution: "@biomejs/cli-linux-x64-musl@npm:2.4.14"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:2.4.14":
version: 2.4.14
resolution: "@biomejs/cli-linux-x64@npm:2.4.14"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:2.4.14":
version: 2.4.14
resolution: "@biomejs/cli-win32-arm64@npm:2.4.14"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:2.4.14":
version: 2.4.14
resolution: "@biomejs/cli-win32-x64@npm:2.4.14"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@borewit/text-codec@npm:^0.2.1":
version: 0.2.1
resolution: "@borewit/text-codec@npm:0.2.1"
checksum: 10c0/aabd9c86497197aacc9ddb413857f112a98a9fd4be9ed56a24971a47bbec7c0d5d449efcad830f9895009c1a5914e5c448f972a0c968e97c4ebf99297dea7a6b
languageName: node
linkType: hard
"@borewit/text-codec@npm:^0.2.2":
version: 0.2.2
resolution: "@borewit/text-codec@npm:0.2.2"
checksum: 10c0/2d3fb132bc6a132914a8fbf8e9ff2fa1ead210ecc395b28bb7355bd7719548a5e351ffe39f21c3bee8048f6cabd99eabd404bb5cc809cad9cba25abed19d271f
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
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.1.0
resolution: "@jridgewell/resolve-uri@npm:3.1.0"
checksum: 10c0/78055e2526108331126366572045355051a930f017d1904a4f753d3f4acee8d92a14854948095626f6163cffc24ea4e3efa30637417bb866b84743dec7ef6fd9
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.4.14
resolution: "@jridgewell/sourcemap-codec@npm:1.4.14"
checksum: 10c0/3fbaff1387c1338b097eeb6ff92890d7838f7de0dde259e4983763b44540bfd5ca6a1f7644dc8ad003a57f7e80670d5b96a8402f1386ba9aee074743ae9bad51
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:0.3.9":
version: 0.3.9
resolution: "@jridgewell/trace-mapping@npm:0.3.9"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.0.3"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
checksum: 10c0/fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b
languageName: node
linkType: hard
"@nodable/entities@npm:2.1.0, @nodable/entities@npm:^2.1.0":
version: 2.1.0
resolution: "@nodable/entities@npm:2.1.0"
checksum: 10c0/5a4cba2b61a5b6c726328b18b1de6d033cae4a658a118644bf31e0bcbda126ea7b69385043dc556cf1ed859b9ca220e82b81b5e5c48ef1b519fb8ec104575dee
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.3":
version: 2.1.3
resolution: "@nodelib/fs.scandir@npm:2.1.3"
dependencies:
"@nodelib/fs.stat": "npm:2.0.3"
run-parallel: "npm:^1.1.9"
checksum: 10c0/68b6d044fd45ef258dc39659e2380a83eb950b1dc45451b26cc31f843283951711dda7b98f0456cd5fe1097f3ced3b94f57bb52634d505c30a958acee5fe590a
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.3, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.3
resolution: "@nodelib/fs.stat@npm:2.0.3"
checksum: 10c0/81ca8f179f9d51a62788d7c0427e802d93377c190beda3700868733dd09d02b1f0bbdbe3b522ab5a1b688f7be8f39a5095b6666092194514ecaa2481f82224c3
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.4
resolution: "@nodelib/fs.walk@npm:1.2.4"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.3"
fastq: "npm:^1.6.0"
checksum: 10c0/ebc8e292c5099003c78a70dddc04cde5f0316f0046eb66ba48429fba094c15e43ab93f180a14eabe06c7a29dcb91e3c008be2377a79c0fb3c9a459d075a33303
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@sindresorhus/merge-streams@npm:^2.1.0":
version: 2.3.0
resolution: "@sindresorhus/merge-streams@npm:2.3.0"
checksum: 10c0/69ee906f3125fb2c6bb6ec5cdd84e8827d93b49b3892bce8b62267116cc7e197b5cccf20c160a1d32c26014ecd14470a72a5e3ee37a58f1d6dadc0db1ccf3894
languageName: node
linkType: hard
"@smithy/chunked-blob-reader-native@npm:^4.2.3":
version: 4.2.3
resolution: "@smithy/chunked-blob-reader-native@npm:4.2.3"
dependencies:
"@smithy/util-base64": "npm:^4.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/cac49faa52e1692fb2c9837252c6a4cbbe1eaba2b90b267d5e36e935735fa419bfd83f98b8c933e0cf03cabb914a409c2002f4f55184ea1b5cae83cd8fa4f617
languageName: node
linkType: hard
"@smithy/chunked-blob-reader@npm:^5.2.2":
version: 5.2.2
resolution: "@smithy/chunked-blob-reader@npm:5.2.2"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/ec1021d9e1d2cff7e3168a3c29267387cec8857e4ed1faa80e77f5671a50a241136098b4801a6a1d7ba8b348e8c936792627bd698ab4cf00e0ed73479eb51abd
languageName: node
linkType: hard
"@smithy/config-resolver@npm:^4.4.17":
version: 4.4.17
resolution: "@smithy/config-resolver@npm:4.4.17"
dependencies:
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/util-config-provider": "npm:^4.2.2"
"@smithy/util-endpoints": "npm:^3.4.2"
"@smithy/util-middleware": "npm:^4.2.14"
tslib: "npm:^2.6.2"
checksum: 10c0/44e653e2ed31bf765f0b30ca404dc3e02f30ad800971f812a6363b71da8d37de5d7d8901d9db4d86d2493f25037904f35c01bbb1a83a2a72e7e7b201ce5c411a
languageName: node
linkType: hard
"@smithy/core@npm:^3.23.17":
version: 3.23.17
resolution: "@smithy/core@npm:3.23.17"
dependencies:
"@smithy/protocol-http": "npm:^5.3.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"
"@smithy/util-base64": "npm:^4.3.2"
"@smithy/util-body-length-browser": "npm:^4.2.2"
"@smithy/util-middleware": "npm:^4.2.14"
"@smithy/util-stream": "npm:^4.5.25"
"@smithy/util-utf8": "npm:^4.2.2"
"@smithy/uuid": "npm:^1.1.2"
tslib: "npm:^2.6.2"
checksum: 10c0/223631835e93c314a8fa394db724673c0940d3ba9e5ffbd73bd7c09854d7e003d19de950b44ce408e099c72ed3c22eb5e41370abea4ac656f7037e6da07be3c1
languageName: node
linkType: hard
"@smithy/credential-provider-imds@npm:^4.2.14":
version: 4.2.14
resolution: "@smithy/credential-provider-imds@npm:4.2.14"
dependencies:
"@smithy/node-config-provider": "npm:^4.3.14"
"@smithy/property-provider": "npm:^4.2.14"
"@smithy/types": "npm:^4.14.1"
"@smithy/url-parser": "npm:^4.2.14"