-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
3100 lines (2807 loc) · 110 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
"@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":
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.714.0":
version: 3.714.0
resolution: "@aws-sdk/client-dynamodb@npm:3.714.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.714.0"
"@aws-sdk/client-sts": "npm:3.714.0"
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/credential-provider-node": "npm:3.714.0"
"@aws-sdk/middleware-endpoint-discovery": "npm:3.714.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.714.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.714.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.2.0"
"@types/uuid": "npm:^9.0.1"
tslib: "npm:^2.6.2"
uuid: "npm:^9.0.1"
checksum: 10c0/96652f5689bf0d3bf9c3e45c824c24845fada77ca3b64a6e3dfd373bbb610634e9da52f20f2ce99781cc3cc94ff41a2268372f4bab1af28715439373e1d567dc
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.714.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/credential-provider-node": "npm:3.714.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.714.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.714.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.714.0
checksum: 10c0/ec17ba502e535c3dfa6d96ccdbd78ce6585ea3e602b8e683fe24842c9640e76e2cd4f8e1603767873e98aba6b85c6696e890b7ad46a90de562e96f267120d450
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/client-sso@npm:3.714.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.714.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.714.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/089f06949e93600639e2f7e4ac3ddcc6456577cc7a5315af478b44b4be35ad3de729218e4de0c43b7e143210e8e8abb2da752fb11011f53718549a76371f14b9
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/client-sts@npm:3.714.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.714.0"
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/credential-provider-node": "npm:3.714.0"
"@aws-sdk/middleware-host-header": "npm:3.714.0"
"@aws-sdk/middleware-logger": "npm:3.714.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.714.0"
"@aws-sdk/middleware-user-agent": "npm:3.714.0"
"@aws-sdk/region-config-resolver": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@aws-sdk/util-user-agent-browser": "npm:3.714.0"
"@aws-sdk/util-user-agent-node": "npm:3.714.0"
"@smithy/config-resolver": "npm:^3.0.13"
"@smithy/core": "npm:^2.5.5"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/hash-node": "npm:^3.0.11"
"@smithy/invalid-dependency": "npm:^3.0.11"
"@smithy/middleware-content-length": "npm:^3.0.13"
"@smithy/middleware-endpoint": "npm:^3.2.5"
"@smithy/middleware-retry": "npm:^3.0.30"
"@smithy/middleware-serde": "npm:^3.0.11"
"@smithy/middleware-stack": "npm:^3.0.11"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/url-parser": "npm:^3.0.11"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.30"
"@smithy/util-defaults-mode-node": "npm:^3.0.30"
"@smithy/util-endpoints": "npm:^2.1.7"
"@smithy/util-middleware": "npm:^3.0.11"
"@smithy/util-retry": "npm:^3.0.11"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f73988f30b16154695fc04924ea9c41ad6a3accbc9dc8d0e748ae374c2384fc5c2d7efce4d9df7189d4034b9c36a02065c5f1fb52accd0f1a5c90d8fa638c106
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/core@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/signature-v4": "npm:^4.2.4"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-middleware": "npm:^3.0.11"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/a7cbf60236eef2a40391e4a5ce88e5fd8b8db4011648598230cd43c4ed6639882dba7383ddf1a7b55ef3382341375071bbe5ece10c08e26a757bd8d0ccdb398c
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/credential-provider-env@npm:3.714.0"
dependencies:
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/f968166492b8791b0428a28b17f6cd1d61d925bab646b97dad4d55ee116095a1fc2f7032b2caff81a033170fd1271d1177a18be7b5c73b885daccc7946da912e
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/credential-provider-http@npm:3.714.0"
dependencies:
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/fetch-http-handler": "npm:^4.1.2"
"@smithy/node-http-handler": "npm:^3.3.2"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/smithy-client": "npm:^3.5.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-stream": "npm:^3.3.2"
tslib: "npm:^2.6.2"
checksum: 10c0/fd21159d732c09852d25066a61d4862851a88d1522c905d5f748ba73bc4fc2e313da206ba9d9462f1148e99fd67d15b10bd292da55a634f1352b4bf32ad82dc4
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.714.0"
dependencies:
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/credential-provider-env": "npm:3.714.0"
"@aws-sdk/credential-provider-http": "npm:3.714.0"
"@aws-sdk/credential-provider-process": "npm:3.714.0"
"@aws-sdk/credential-provider-sso": "npm:3.714.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/credential-provider-imds": "npm:^3.2.8"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.714.0
checksum: 10c0/57bf38a93cef4ea3f04cc63923bc7fb4ff8cc58cb50c3d149f2cf602c231307aa822b7fae1a872511f438209a692b54e11ba54d0900acdfd194eb9f90ca8aa38
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/credential-provider-node@npm:3.714.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.714.0"
"@aws-sdk/credential-provider-http": "npm:3.714.0"
"@aws-sdk/credential-provider-ini": "npm:3.714.0"
"@aws-sdk/credential-provider-process": "npm:3.714.0"
"@aws-sdk/credential-provider-sso": "npm:3.714.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/credential-provider-imds": "npm:^3.2.8"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/d0dbf11dab53a54fa78b000690d306d2a4d86e8d010c44571d2027a30353ab3a2dc3b2916db5e2e26c788174f6318a96a6a79e1dbdf5bfde5f4d04b0b111eb8d
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/credential-provider-process@npm:3.714.0"
dependencies:
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/7a7e54a69e5ba10437d64b37db1fa466498da789d82e5eb24afa897d0b88b5ee0c117825c535a4cbaacb87818f7814e57ab2a83f47ba22ec12e9ee1bc39504d6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.714.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.714.0"
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/token-providers": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/38ac8af50a9384cb0ad2745d62d8fe6a2f77fb2967dfe24b47860caeca4017420a67155679a096e08aaadeb666ff72419aac158549d82e4d2c11525b5c69fb23
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.714.0"
dependencies:
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.714.0
checksum: 10c0/7b66f7fd1005779877482de03c8b38de2d08480794971bb6ad6825e49bdeae9beed665c89395d0c8109fb6f984601500a255f88caca3133ba24e73a703e0d5b5
languageName: node
linkType: hard
"@aws-sdk/endpoint-cache@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/endpoint-cache@npm:3.693.0"
dependencies:
mnemonist: "npm:0.38.3"
tslib: "npm:^2.6.2"
checksum: 10c0/b63b61d0763e18dc727d187837609f4882ed9e05be22d35b043bf98ef32095e414c8ba6140714a27155ccac3fa3b9ac7d611c0596fce39871f168cec3c114b50
languageName: node
linkType: hard
"@aws-sdk/middleware-endpoint-discovery@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.714.0"
dependencies:
"@aws-sdk/endpoint-cache": "npm:3.693.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/43c4ebfe6faa63037d8095e2e876a7d66c5df47cd05948fcf6c587237ad06ecca512bb434c09eb1eb26a2b02ce79d1febd3e8739b14f63e1fadce70dec340e64
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-host-header@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c817ca326e9986fa135cfb94abc000477278fdac01d78e0d7d59cf2f02be89afe6e4c9aeb2c575f49dc29d08ed6593f0df634bd23a61f183a4cb09c50d76a1b9
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-logger@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/c4ae1cdf3e8569fcab51f3a61cf8ee053e94a5b0efb0b3149178c18e44eb37b2be7f35a7e351fd9cfe21b8178f5a60d53012dc93779529b3d41a0f158a6d4ae4
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/0a423e6fd930b98a6237849ef2d1d5c50217fb1a78a48e6e6eb73b077588ad295f3e64edc4836702dd8053bb1eac73d5007ff1dfc097f1b66b793cbd98f390cc
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.714.0"
dependencies:
"@aws-sdk/core": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@aws-sdk/util-endpoints": "npm:3.714.0"
"@smithy/core": "npm:^2.5.5"
"@smithy/protocol-http": "npm:^4.1.8"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
checksum: 10c0/98379fe4cc5cc95ececb5ed892c4a310da1a80b6e75e8abb28c482838b1f9442c93d2d813542eaea04fb244e1b589b0100ccfebe5d711b463a3324695f245a04
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/region-config-resolver@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.11"
tslib: "npm:^2.6.2"
checksum: 10c0/160e001b060ed2743c74856991207ac47cec1d7e96885d90468548c8ee7113e1de65143a1f417d8fa27f6c57679b89b56d1444ff87c05333d31f3379b55838b3
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/token-providers@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/property-provider": "npm:^3.1.11"
"@smithy/shared-ini-file-loader": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.714.0
checksum: 10c0/5f3c83f8128a5bf0dfb6bbf78cb908d8b289ea5e1ead7d6dceb32f84a72eb910edddabb419a4c4f662a28a5e0f334dc6ca3be5f4e199f899d97a3b1fa25cbefd
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.714.0, @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-endpoints@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/util-endpoints@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
"@smithy/util-endpoints": "npm:^2.1.7"
tslib: "npm:^2.6.2"
checksum: 10c0/2cccad1c18848e48a764def1aa46efac10900a9c083d6f8d8cf6d9495e66439e0dcb54c181242840bb3ea814ac4c1ef1f663c2b17d34e52035917435a473cd68
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.714.0":
version: 3.714.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.714.0"
dependencies:
"@aws-sdk/types": "npm:3.714.0"
"@smithy/types": "npm:^3.7.2"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6b8813e28c7a73316d0a3b3259b3a6ecc403390f475f8e223a81469e24583712c07cb36a026e5109c82cf00c237974025cf320e2b35f4256339732e99cbcc092
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.714.0":
version: 3.714.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.714.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.714.0"
"@aws-sdk/types": "npm:3.714.0"
"@smithy/node-config-provider": "npm:^3.1.12"
"@smithy/types": "npm:^3.7.2"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/a1deaa432ddaa5f3477495516fd1698de279d60073aa4adc5b38d907d61699021494c90a8fb92c4d72b9c35b152e107cec028814d7b4956fc9f4f1dbdf4e5bec
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"
xstream: "npm:^11.14.0"
checksum: 10c0/5fae7afcdf98cc7dd36922aa1586254cc8c202cf8fe66804e61d793d31dcff816f40d33f7a0eb72c1b9226c7c361d4848e4ff12d0489f6fa66f47f0c86ae18dd
languageName: node
linkType: hard
"@cosmjs/utils@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/utils@npm:0.32.4"
checksum: 10c0/d5ff8b235094be1150853a715116049f73eb5cdfeea8ce8e22ecccc61ec99792db457404d4307782b1a2f935dcf438f5c485beabfcfbc1dc5df26eb6e6da9062
languageName: node
linkType: hard
"@discordjs/builders@npm:^1.9.0":
version: 1.9.0
resolution: "@discordjs/builders@npm:1.9.0"
dependencies:
"@discordjs/formatters": "npm:^0.5.0"
"@discordjs/util": "npm:^1.1.1"
"@sapphire/shapeshift": "npm:^4.0.0"
discord-api-types: "npm:0.37.97"
fast-deep-equal: "npm:^3.1.3"
ts-mixer: "npm:^6.0.4"
tslib: "npm:^2.6.3"
checksum: 10c0/3287b87624c11112faeac0acc0063427dd85f4174ca7b2c3bbd0f77feab99e97193e5d6e6fb5989000eb50aff67d2831af3fc6cdf2907a05ac23a475f5b65ab6
languageName: node
linkType: hard
"@discordjs/collection@npm:1.5.3":
version: 1.5.3
resolution: "@discordjs/collection@npm:1.5.3"
checksum: 10c0/54338e005e9a1c6a5c91464cbcc378a5bf74410ad5b8bba1961b80d0ec8f1eb1b768ea737ad03bcb62430ea84aa5561523318b739538b334115ed775630ca42c
languageName: node
linkType: hard
"@discordjs/collection@npm:^2.1.0, @discordjs/collection@npm:^2.1.1":
version: 2.1.1
resolution: "@discordjs/collection@npm:2.1.1"
checksum: 10c0/7bbb007271a046c981957b4a0543f6ca7e4c294a2d40987437ff06db5e92dbf35b8dc61719db2a7bc99557a58275742aa34be9f50487870a6e80acfc4fe45fa1
languageName: node
linkType: hard
"@discordjs/formatters@npm:^0.5.0":
version: 0.5.0
resolution: "@discordjs/formatters@npm:0.5.0"
dependencies:
discord-api-types: "npm:0.37.97"
checksum: 10c0/784e7a7cb82874eb3d5741c8058088accdc6151151d5dbafa634efdb184e0f5666a95e57ac8f6e514b2819b07f764dbb1d4258c0dbba37fc5645f800182ae1d9
languageName: node
linkType: hard
"@discordjs/rest@npm:^2.3.0, @discordjs/rest@npm:^2.4.0":
version: 2.4.0
resolution: "@discordjs/rest@npm:2.4.0"
dependencies:
"@discordjs/collection": "npm:^2.1.1"
"@discordjs/util": "npm:^1.1.1"
"@sapphire/async-queue": "npm:^1.5.3"
"@sapphire/snowflake": "npm:^3.5.3"
"@vladfrangu/async_event_emitter": "npm:^2.4.6"
discord-api-types: "npm:0.37.97"
magic-bytes.js: "npm:^1.10.0"
tslib: "npm:^2.6.3"
undici: "npm:6.19.8"
checksum: 10c0/2de35ff6c0ad734685e329fc29df52823faf6e9eb68045b780f5b657555c699da7e9e0ffdf2ab1ee7ef902d7a8901993b6ea6e0f3c85938570a2b74e15207c0a
languageName: node
linkType: hard
"@discordjs/util@npm:^1.1.0, @discordjs/util@npm:^1.1.1":
version: 1.1.1
resolution: "@discordjs/util@npm:1.1.1"
checksum: 10c0/a374648aae0dd98345996f41891add0523388297a6f6b99c7a37c83de4d832d91a464195502126967fac0f071e5ecb80f776ee42a887fffa9c5c0f4612381b98
languageName: node
linkType: hard
"@discordjs/ws@npm:1.1.1":
version: 1.1.1
resolution: "@discordjs/ws@npm:1.1.1"
dependencies:
"@discordjs/collection": "npm:^2.1.0"
"@discordjs/rest": "npm:^2.3.0"
"@discordjs/util": "npm:^1.1.0"
"@sapphire/async-queue": "npm:^1.5.2"
"@types/ws": "npm:^8.5.10"
"@vladfrangu/async_event_emitter": "npm:^2.2.4"
discord-api-types: "npm:0.37.83"
tslib: "npm:^2.6.2"
ws: "npm:^8.16.0"
checksum: 10c0/57e46534e3ea8ba53c1fbd282d4f0aa03563e10244847f6e6393957a56d05ae0af52c43114d6a6e1d7a3f3127498b09efd69dd3da11abe5e4a5170ac2e269178
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/aix-ppc64@npm:0.24.0"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm64@npm:0.24.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-arm@npm:0.24.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/android-x64@npm:0.24.0"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-arm64@npm:0.24.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/darwin-x64@npm:0.24.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/freebsd-arm64@npm:0.24.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/freebsd-x64@npm:0.24.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-arm64@npm:0.24.0"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-arm@npm:0.24.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-ia32@npm:0.24.0"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-loong64@npm:0.24.0"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-mips64el@npm:0.24.0"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-ppc64@npm:0.24.0"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-riscv64@npm:0.24.0"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-s390x@npm:0.24.0"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.24.0":
version: 0.24.0
resolution: "@esbuild/linux-x64@npm:0.24.0"
conditions: os=linux & cpu=x64
languageName: node