-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
3450 lines (3129 loc) · 123 KB
/
yarn.lock
File metadata and controls
3450 lines (3129 loc) · 123 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-dynamodb@npm:^3.775.0":
version: 3.775.0
resolution: "@aws-sdk/client-dynamodb@npm:3.775.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-node": "npm:3.775.0"
"@aws-sdk/middleware-endpoint-discovery": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/1f6fa55b1b67ff1504e26572341a5d2f594b0013e203d32137c0f48979a1f7f3f56453bbf9249025a4ef65e39ac0bba89d737d2a7bf196943eba86e3df6e4d0c
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:3.775.0, @aws-sdk/client-s3@npm:^3.775.0":
version: 3.775.0
resolution: "@aws-sdk/client-s3@npm:3.775.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.775.0"
"@aws-sdk/credential-provider-node": "npm:3.775.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.775.0"
"@aws-sdk/middleware-expect-continue": "npm:3.775.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-location-constraint": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.775.0"
"@aws-sdk/middleware-ssec": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@aws-sdk/xml-builder": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/eventstream-serde-browser": "npm:^4.0.2"
"@smithy/eventstream-serde-config-resolver": "npm:^4.1.0"
"@smithy/eventstream-serde-node": "npm:^4.0.2"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-blob-browser": "npm:^4.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/hash-stream-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/md5-js": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
"@smithy/util-waiter": "npm:^4.0.3"
tslib: "npm:^2.6.2"
checksum: 10c0/e181b681c6e22bf3bef2347fe5be05932514f4c35791c6328bc7a61ea347d65f89947e01cb1a4aef5fec2560ad07752a5823b468a770a96cd0136de531174572
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/client-sso@npm:3.775.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b94c0b00d8d8fc21b065d570c6a710bcc323d3997c6e1219fd974cb3eca0f3cc793907639e6c50157f395d1a8778db950e5db4c9e768980a0a2ac3552e5fdbd9
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/core@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.0.2"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/14fb2fb46c191d4409a1f35fc4276ec77c446e81f22d6dc5355d3d7a28575ab26253fc646e4a0deed05c2fe89e4850547096191a4ef3ec6bb775a1a4c30171d1
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-env@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/461d2dba7d8dde9720b99e9d34d6b9e4e115335d3d184d15011e36124fc73d182e9c9f33fcf77682428abc7849a1b248371758be46c23fc312521f51d08054e2
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-http@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-stream": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f2a5939108ecdb330610b60fab61c01f0b98e972df2abaa5ac6e46102e4a2a7e877c934e28bacb32a855a431c33af53a169568ee2df6b1c4bcf6e32ed69c721a
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/credential-provider-env": "npm:3.775.0"
"@aws-sdk/credential-provider-http": "npm:3.775.0"
"@aws-sdk/credential-provider-process": "npm:3.775.0"
"@aws-sdk/credential-provider-sso": "npm:3.775.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.775.0"
"@aws-sdk/nested-clients": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/credential-provider-imds": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eeac6d94b54101a9c06925c51ea0c654434f9d97a51b63378bcb0e5f758315c7271f3ff49d02ab46ba4bddab26d222d354ba450780d8160fb0534f133a3e048c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-node@npm:3.775.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.775.0"
"@aws-sdk/credential-provider-http": "npm:3.775.0"
"@aws-sdk/credential-provider-ini": "npm:3.775.0"
"@aws-sdk/credential-provider-process": "npm:3.775.0"
"@aws-sdk/credential-provider-sso": "npm:3.775.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/credential-provider-imds": "npm:^4.0.2"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/048c625c9dd5a1fc4744a5d506466b1ec6bf1dbcbec6495901600326fb2f50584dff7650da6148fa7c4f43bdfbfe1f5f809209ad46543450b622f4ef0040c96f
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-process@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5e8fc389ddf91694a590adb0ee2dadf148b7279759c1a0a8b3a055a78af0b75773f9f50f6a769be1d3284c639ad037a2a8951a463020e692c5f911c8e5062402
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.775.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.775.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/token-providers": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/279d304267349c00396f73e729e072cedccdcd88e1acfa2c5ac9d6d8c57630a00e9debf307576c4f4284cd7803c4ed10c9786caa55db391f58cb46afdbc89a29
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/nested-clients": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/a13c6b967eccb5d1ba46af6c97c408a0ede941fbaee531726cf67997a05152ab2caeb322533e1230550272fba505380b7433a93fd6727646d894c8dbca683c6e
languageName: node
linkType: hard
"@aws-sdk/endpoint-cache@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/endpoint-cache@npm:3.723.0"
dependencies:
mnemonist: "npm:0.38.3"
tslib: "npm:^2.6.2"
checksum: 10c0/ac2468af7e36141157202ad4a3c51e8e4f57c9ba50478b7d7f223973ac5e6d7d90516a8eb06d2c9369f7313d0ac33a2c89930310b70f8db3ab4ec40567767a0e
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/67403c36a67aca9d1e0834f0ef22ab998846eb6ba408ae473862564da075e5dade2a1286e2f096c90c4defc166b89c1d56af74b761424d630a170301529f5c66
languageName: node
linkType: hard
"@aws-sdk/middleware-endpoint-discovery@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.775.0"
dependencies:
"@aws-sdk/endpoint-cache": "npm:3.723.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f3dd4992fea9bb39bae6568f9771ad64a6127247db02f60790aa5b18dee361eed658bc07041b79177e29026dd9f5035f8aa755733b6a0b4ad8cf6c62cce40313
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b0f40cd2ecc4f3a28effc1af427d8c3984bcd5fa03c360073c32264ef134e1d32f6777c631e767ca9fa7c6d3f380cd930736f328fd3b0c896f1756981549ae0d
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.775.0"
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.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/is-array-buffer": "npm:^4.0.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c6afcb70aae0afa2880af0df09a5bd87ccb5139de74557d70d58c55aedf24bfd93a426d9ea4bedbe162ceca3b16c54eb900f1877d7a1cabab2a8e97eb0b37f63
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-host-header@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1e7fb71bc596250c20d51a6ec5f33801746db6ca553f2baf3f3261db5abf18dc5f0c31514c81496f6efaf39643aaa90226ca801b36d9bd76943221f15256a266
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/85f136cab13b6f955d28e88245dd8706e273652403a6ad8edf993502539e4c48963a5069e3db3c81c96de2db3bdd20a4acca7fdad1f59d9505671e6d3904d70f
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-logger@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ab46864523cd58e965bd7071781a8719dec7037aeef4c08345138ad90d6e0162ac911f79b40bd2bd3308776edbaa5dc987f9e104da0980537947227a4cddce12
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/652ac6384034cb7219d8f44cbbc059dbc68cc6f8c9e61dbd19bc5488ff267564cc899ab52cdc45aa79d0e2d4162ce52e00c518a3eb4371f5b72465e715cd5387
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-arn-parser": "npm:3.723.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-stream": "npm:^4.2.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4d7c47b4168f2b8f35d2bdf9aa964b8e31c6e4b2a243555265effa1aeae688629b7c8605ea34644d21b9b20850d53d7e7493c2ff44aa85f8ee9529cede7c7dcb
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-ssec@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6f5148efa3b470a25ee44d200b18676a417f2990cf681a54a87f4a79597714777f7aee7d7ac47194cb836609496856fa6a3b307df76d36f11890b9f3770bb0c3
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.775.0"
dependencies:
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/dd782955a6482df9935faec08a64b674913e8be8c58347dae32d1b5ddb2196e49c328605d864d9d85c725f92ad6eb6454d3aef8433d7ff599ad2a94545b0c2e1
languageName: node
linkType: hard
"@aws-sdk/nested-clients@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/nested-clients@npm:3.775.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.775.0"
"@aws-sdk/middleware-host-header": "npm:3.775.0"
"@aws-sdk/middleware-logger": "npm:3.775.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.775.0"
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/region-config-resolver": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-endpoints": "npm:3.775.0"
"@aws-sdk/util-user-agent-browser": "npm:3.775.0"
"@aws-sdk/util-user-agent-node": "npm:3.775.0"
"@smithy/config-resolver": "npm:^4.1.0"
"@smithy/core": "npm:^3.2.0"
"@smithy/fetch-http-handler": "npm:^5.0.2"
"@smithy/hash-node": "npm:^4.0.2"
"@smithy/invalid-dependency": "npm:^4.0.2"
"@smithy/middleware-content-length": "npm:^4.0.2"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/middleware-retry": "npm:^4.1.0"
"@smithy/middleware-serde": "npm:^4.0.3"
"@smithy/middleware-stack": "npm:^4.0.2"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/node-http-handler": "npm:^4.0.4"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/smithy-client": "npm:^4.2.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/url-parser": "npm:^4.0.2"
"@smithy/util-base64": "npm:^4.0.0"
"@smithy/util-body-length-browser": "npm:^4.0.0"
"@smithy/util-body-length-node": "npm:^4.0.0"
"@smithy/util-defaults-mode-browser": "npm:^4.0.8"
"@smithy/util-defaults-mode-node": "npm:^4.0.8"
"@smithy/util-endpoints": "npm:^3.0.2"
"@smithy/util-middleware": "npm:^4.0.2"
"@smithy/util-retry": "npm:^4.0.2"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f368b84d687d7a029c48c97e49354ec9776fd537742f76488ccd4716453ec2e1acfdec681e1219a2358ee31e327892a4a04aeaff0cadfec3fb153a50d4c9995e
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/region-config-resolver@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-config-provider": "npm:^4.0.0"
"@smithy/util-middleware": "npm:^4.0.2"
tslib: "npm:^2.6.2"
checksum: 10c0/774d3e65873c725634b208604df3aac379ba9a9b8c4910a0ba54360bae8855d22e7dd1310d15f1946d9b8b16bca03b268d29984d0b25f2ba33094aeb30da6072
languageName: node
linkType: hard
"@aws-sdk/s3-presigned-post@npm:^3.775.0":
version: 3.775.0
resolution: "@aws-sdk/s3-presigned-post@npm:3.775.0"
dependencies:
"@aws-sdk/client-s3": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@aws-sdk/util-format-url": "npm:3.775.0"
"@smithy/middleware-endpoint": "npm:^4.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-hex-encoding": "npm:^4.0.0"
"@smithy/util-utf8": "npm:^4.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/2f6dceb19fa19be78979022f9b96d0a82b685272830f82cc7fceda49bfd2edc10fe05d34e7f5d56f8372555d8902e0053ce7d81e9825c3420431611375af76f8
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.775.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/protocol-http": "npm:^5.1.0"
"@smithy/signature-v4": "npm:^5.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/1e13b2382bdc4a8b917466c01388575b7139f9207410a19d99d39db6546f1e56b99fe043276136fbdad05133ca3e6e92c84a2c0fcf6cea573f12db9bc3d8079f
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/token-providers@npm:3.775.0"
dependencies:
"@aws-sdk/nested-clients": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/property-provider": "npm:^4.0.2"
"@smithy/shared-ini-file-loader": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0f7df7b10b4ad1986b79fa5889c9cdd7fb0277209e5f7987de803aa26e98164a1748350317cd863eb744bc9bf2e9f2d167b74ee52ebe01d2caa68d7ea2402d7d
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/types@npm:3.775.0"
dependencies:
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/106515a677a8619ecffc6a652d6866a29f9191f2f883d4a98e44ea1926a112994c4c4733e77f7d997f5f1a4cecf2ce605059a449001d5630ed73f6cd4d4d94a3
languageName: node
linkType: hard
"@aws-sdk/types@npm:^3.222.0":
version: 3.714.0
resolution: "@aws-sdk/types@npm:3.714.0"
dependencies:
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/fd1b47d0d85bef495a2d76e4ad8d56328638ba59fec9719c7f30aedbde1f058d269825e00fc78eebafda14b73a583445911599eba6e9d039e3059cc79dd074d4
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.723.0":
version: 3.723.0
resolution: "@aws-sdk/util-arn-parser@npm:3.723.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/5d2adfded61acaf222ed21bf8e5a8b067fe469dfaab03a6b69c591a090c48d309b1f3c4fd64826f71ef9883390adb77a9bf884667b242615f221236bc5a8b326
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/util-endpoints@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
"@smithy/util-endpoints": "npm:^3.0.2"
tslib: "npm:^2.6.2"
checksum: 10c0/d85fbe8a1e213ac4925c9572ded852b3a26e688aa2be15918c02b3340f7493de4254fe5a2a5a4e21955a5b5b919c69004a9bfcefae834c15476dfa4ac4cb7b2d
languageName: node
linkType: hard
"@aws-sdk/util-format-url@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/util-format-url@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/querystring-builder": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/4128a39b8b7c6f3b8e4cbf28ea1a85b97ebcd52c9e4468ffac3bae3d6fd56f23c7f4dff5ee3dc9689d5c04cd272d4159094e7d504f0ebf779894eb94bd5f7447
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.775.0":
version: 3.775.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.775.0"
dependencies:
"@aws-sdk/types": "npm:3.775.0"
"@smithy/types": "npm:^4.2.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/527f3225a28a49de6893c2a396d80cd13cfa64f9cc9d16b575a708e5d4a6006e145aaec6166071012aacdb732604c3a554d69ab6f099fb021d0d15565bb7fb4c
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.775.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.775.0"
"@aws-sdk/types": "npm:3.775.0"
"@smithy/node-config-provider": "npm:^4.0.2"
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/d9dfbf657b598e673aa9d6eb793868d801bd3a0935a66f0991b3afdc790bc9a78723ed9a400a28168b61d99ae5eeb81dd644751e85ea43fda74fa093d70260d9
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.775.0":
version: 3.775.0
resolution: "@aws-sdk/xml-builder@npm:3.775.0"
dependencies:
"@smithy/types": "npm:^4.2.0"
tslib: "npm:^2.6.2"
checksum: 10c0/636f0c3c463b391edf9118b6b07c650dc14218ec7a2b0c309a931f5df539d7b472185f5ae36f0fabbdf1422189ba7a641133246299b111e5b8fa7ad39f85a080
languageName: node
linkType: hard
"@biomejs/biome@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/biome@npm:1.9.4"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:1.9.4"
"@biomejs/cli-darwin-x64": "npm:1.9.4"
"@biomejs/cli-linux-arm64": "npm:1.9.4"
"@biomejs/cli-linux-arm64-musl": "npm:1.9.4"
"@biomejs/cli-linux-x64": "npm:1.9.4"
"@biomejs/cli-linux-x64-musl": "npm:1.9.4"
"@biomejs/cli-win32-arm64": "npm:1.9.4"
"@biomejs/cli-win32-x64": "npm:1.9.4"
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/b5655c5aed9a6fffe24f7d04f15ba4444389d0e891c9ed9106fab7388ac9b4be63185852cc2a937b22940dac3e550b71032a4afd306925cfea436c33e5646b3e
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-darwin-arm64@npm:1.9.4"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-darwin-x64@npm:1.9.4"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-arm64-musl@npm:1.9.4"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-arm64@npm:1.9.4"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-x64-musl@npm:1.9.4"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-linux-x64@npm:1.9.4"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-win32-arm64@npm:1.9.4"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:1.9.4":
version: 1.9.4
resolution: "@biomejs/cli-win32-x64@npm:1.9.4"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@confio/ics23@npm:^0.6.8":
version: 0.6.8
resolution: "@confio/ics23@npm:0.6.8"
dependencies:
"@noble/hashes": "npm:^1.0.0"
protobufjs: "npm:^6.8.8"
checksum: 10c0/2f3f5032cd6a34c9b2fbd64bbf7e1cdec75ca71f348a770f7b5474b5027b12202bfbcd404eca931efddb5901f769af035a87cb8bddbf3f23d7e5d93c9d3d7f6f
languageName: node
linkType: hard
"@cosmjs/amino@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/amino@npm:0.32.4"
dependencies:
"@cosmjs/crypto": "npm:^0.32.4"
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
checksum: 10c0/cd8e215b0406f5c7b73ab0a21106d06b6f76b1da12f1ab7b612884e1dd8bc626966dc67d4e7580090ade131546cbec70000f854e6596935299d054b788929a7e
languageName: node
linkType: hard
"@cosmjs/cosmwasm-stargate@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/cosmwasm-stargate@npm:0.32.4"
dependencies:
"@cosmjs/amino": "npm:^0.32.4"
"@cosmjs/crypto": "npm:^0.32.4"
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/proto-signing": "npm:^0.32.4"
"@cosmjs/stargate": "npm:^0.32.4"
"@cosmjs/tendermint-rpc": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
cosmjs-types: "npm:^0.9.0"
pako: "npm:^2.0.2"
checksum: 10c0/f7e285c51ef8b1098a9ea5ca2546a1e226b4fa0a990d95faa6f3b752f3638b6c55f36a56b6f4b11f0a66fd61e3ae8772921d8e99418218df0b2205efe1c82f37
languageName: node
linkType: hard
"@cosmjs/crypto@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/crypto@npm:0.32.4"
dependencies:
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
"@noble/hashes": "npm:^1"
bn.js: "npm:^5.2.0"
elliptic: "npm:^6.5.4"
libsodium-wrappers-sumo: "npm:^0.7.11"
checksum: 10c0/94e742285eb8c7c5393055ba0635f10c06bf87710e953aedc71e3edc2b8e21a12a0d9b5e8eff37e326765f57c9eb3c7fd358f24f639efad4f1a6624eb8189534
languageName: node
linkType: hard
"@cosmjs/encoding@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/encoding@npm:0.32.4"
dependencies:
base64-js: "npm:^1.3.0"
bech32: "npm:^1.1.4"
readonly-date: "npm:^1.0.0"
checksum: 10c0/4a30d5ae1a2d1247d44bda46101ce208c7666d8801ca9a33de94edc35cc22460c16b4834ec84d5a65ffef5e2a4b58605e0a0a056c46bc0a042979ec84acf20cd
languageName: node
linkType: hard
"@cosmjs/json-rpc@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/json-rpc@npm:0.32.4"
dependencies:
"@cosmjs/stream": "npm:^0.32.4"
xstream: "npm:^11.14.0"
checksum: 10c0/b3ebd240f4fb21260e284d2e503ecc61bac898842187ab717f0efb9a5f21272f161f267cc145629caeb9735f80946844384e2bd410275a4744147a44518c0fa0
languageName: node
linkType: hard
"@cosmjs/math@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/math@npm:0.32.4"
dependencies:
bn.js: "npm:^5.2.0"
checksum: 10c0/91e47015be5634d27d71d14c5a05899fb4992b69db02cab1558376dedf8254f96d5e24f097c5601804ae18ed33c7c25d023653ac2bf9d20250fd3e5637f6b101
languageName: node
linkType: hard
"@cosmjs/proto-signing@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/proto-signing@npm:0.32.4"
dependencies:
"@cosmjs/amino": "npm:^0.32.4"
"@cosmjs/crypto": "npm:^0.32.4"
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
cosmjs-types: "npm:^0.9.0"
checksum: 10c0/6915059d2e6dbe1abda4a747c3b1abd47a9eff4f8cb2cf9a5545f939b656b4a15bbde2bfc1364357f9b2a081a066280c3b469f6d13dd5fc51b429b0f90a54913
languageName: node
linkType: hard
"@cosmjs/socket@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/socket@npm:0.32.4"
dependencies:
"@cosmjs/stream": "npm:^0.32.4"
isomorphic-ws: "npm:^4.0.1"
ws: "npm:^7"
xstream: "npm:^11.14.0"
checksum: 10c0/2d94c1fb39016bea3c7c145f4565c8a0fed20c805ac569ea604cd3646c15147b82b8db18a4e3c832d6ae0c3dd14363d4db3d91bcacac922679efba164ed49386
languageName: node
linkType: hard
"@cosmjs/stargate@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/stargate@npm:0.32.4"
dependencies:
"@confio/ics23": "npm:^0.6.8"
"@cosmjs/amino": "npm:^0.32.4"
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/proto-signing": "npm:^0.32.4"
"@cosmjs/stream": "npm:^0.32.4"
"@cosmjs/tendermint-rpc": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
cosmjs-types: "npm:^0.9.0"
xstream: "npm:^11.14.0"
checksum: 10c0/c30a3519516aaa7eae58ba827c80fcf74c7fe7a9d3aa5cc8138c3a2768f5f241f59c2f5cec27e9037b4df12b1c6605b4fac9eadb4de97bd84edddc3a80a02e24
languageName: node
linkType: hard
"@cosmjs/stream@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/stream@npm:0.32.4"
dependencies:
xstream: "npm:^11.14.0"
checksum: 10c0/c677c53f9101c2a36fa03a475d92dea2fa69c475f896751b5e18a5d07087eeecbf6bca2e62a8940003da53fa235a9b2dd78c8257bf19c3f96e3f69fa8d5f183d
languageName: node
linkType: hard
"@cosmjs/tendermint-rpc@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/tendermint-rpc@npm:0.32.4"
dependencies:
"@cosmjs/crypto": "npm:^0.32.4"
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/json-rpc": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/socket": "npm:^0.32.4"
"@cosmjs/stream": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
axios: "npm:^1.6.0"
readonly-date: "npm:^1.0.0"