-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
1565 lines (1414 loc) · 53.2 KB
/
yarn.lock
File metadata and controls
1565 lines (1414 loc) · 53.2 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
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
languageName: node
linkType: hard
"@emnapi/core@npm:^1.5.0, @emnapi/core@npm:^1.6.0":
version: 1.7.1
resolution: "@emnapi/core@npm:1.7.1"
dependencies:
"@emnapi/wasi-threads": "npm:1.1.0"
tslib: "npm:^2.4.0"
checksum: 10c0/f3740be23440b439333e3ae3832163f60c96c4e35337f3220ceba88f36ee89a57a871d27c94eb7a9ff98a09911ed9a2089e477ab549f4d30029f8b907f84a351
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.5.0, @emnapi/runtime@npm:^1.6.0":
version: 1.7.1
resolution: "@emnapi/runtime@npm:1.7.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/26b851cd3e93877d8732a985a2ebf5152325bbacc6204ef5336a47359dedcc23faeb08cdfcb8bb389b5401b3e894b882bc1a1e55b4b7c1ed1e67c991a760ddd5
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.1.0, @emnapi/wasi-threads@npm:^1.1.0":
version: 1.1.0
resolution: "@emnapi/wasi-threads@npm:1.1.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/e6d54bf2b1e64cdd83d2916411e44e579b6ae35d5def0dea61a3c452d9921373044dff32a8b8473ae60c80692bdc39323e98b96a3f3d87ba6886b24dd0ef7ca1
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.13
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
"@jridgewell/sourcemap-codec": "npm:^1.5.0"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/9a7d65fb13bd9aec1fbab74cda08496839b7e2ceb31f5ab922b323e94d7c481ce0fc4fd7e12e2610915ed8af51178bdc61e168e92a8c8b8303b030b03489b13b
languageName: node
linkType: hard
"@jridgewell/remapping@npm:^2.3.4":
version: 2.3.5
resolution: "@jridgewell/remapping@npm:2.3.5"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10c0/3de494219ffeb2c5c38711d0d7bb128097edf91893090a2dbc8ee0b55d092bb7347b1fd0f478486c5eab010e855c73927b1666f2107516d472d24a73017d1194
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24":
version: 0.3.31
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10c0/4b30ec8cd56c5fd9a661f088230af01e0c1a3888d11ffb6b47639700f71225be21d1f7e168048d6d4f9449207b978a235c07c8f15c07705685d16dc06280e9d9
languageName: node
linkType: hard
"@module-federation/error-codes@npm:0.21.4":
version: 0.21.4
resolution: "@module-federation/error-codes@npm:0.21.4"
checksum: 10c0/345e547d4fd1a8fd35d46855b890636e13c35ca304b0ce3f21761c600de6b2652fb622dd1029ba031602f6c2b77b9bbc4c633a016080e6761828d17d6c61b916
languageName: node
linkType: hard
"@module-federation/error-codes@npm:0.22.0":
version: 0.22.0
resolution: "@module-federation/error-codes@npm:0.22.0"
checksum: 10c0/a9b25e8c930971e146e6352f482f915f1b54965ce54706984e834a87be714d30caebbd3946f9eb408e7821b2cc326b90787eeb2f8306edf1d322d9931543a139
languageName: node
linkType: hard
"@module-federation/runtime-core@npm:0.21.4":
version: 0.21.4
resolution: "@module-federation/runtime-core@npm:0.21.4"
dependencies:
"@module-federation/error-codes": "npm:0.21.4"
"@module-federation/sdk": "npm:0.21.4"
checksum: 10c0/668a77d200deae8f6d5a98f49a2d874c96c84e0c064e806bbee102f1054838ec53cd25f777042ca0e3789b38075b15cbdc47cbc696fc4490d6af2710e17f8e5d
languageName: node
linkType: hard
"@module-federation/runtime-core@npm:0.22.0":
version: 0.22.0
resolution: "@module-federation/runtime-core@npm:0.22.0"
dependencies:
"@module-federation/error-codes": "npm:0.22.0"
"@module-federation/sdk": "npm:0.22.0"
checksum: 10c0/0406c26b119065dca23a8fb65872b8ab5794984d5d82984ed625c433658693050a8a800cde8c97cc1572b0bc154a7824fa9db5bb05106b7250643e799ba7091d
languageName: node
linkType: hard
"@module-federation/runtime-tools@npm:0.21.4":
version: 0.21.4
resolution: "@module-federation/runtime-tools@npm:0.21.4"
dependencies:
"@module-federation/runtime": "npm:0.21.4"
"@module-federation/webpack-bundler-runtime": "npm:0.21.4"
checksum: 10c0/f1d7d8872dc467affa760cddd4119c87e5e76870ef2dc35d121b56ebc181aaa9dcabb5b262efa585b60747842d45fd3e2a9fcf07ebbdd459608f8cb5c3359d9f
languageName: node
linkType: hard
"@module-federation/runtime-tools@npm:0.22.0":
version: 0.22.0
resolution: "@module-federation/runtime-tools@npm:0.22.0"
dependencies:
"@module-federation/runtime": "npm:0.22.0"
"@module-federation/webpack-bundler-runtime": "npm:0.22.0"
checksum: 10c0/fbe76616fb176ce03550e3ce2bb43fa5d44c12d7d0939593f29dab5658accfb559b857df4180f7f681dc601aab928658cd9b49a78daad866089390b820854fbd
languageName: node
linkType: hard
"@module-federation/runtime@npm:0.21.4":
version: 0.21.4
resolution: "@module-federation/runtime@npm:0.21.4"
dependencies:
"@module-federation/error-codes": "npm:0.21.4"
"@module-federation/runtime-core": "npm:0.21.4"
"@module-federation/sdk": "npm:0.21.4"
checksum: 10c0/9c37164613a4009ebc8e0a66354507d3cc28a13ce458b01a0a3b1348f2510e4452453e9a96e24354468b5e8441e77b857d3ea604e70ec335894b8d65493d15b7
languageName: node
linkType: hard
"@module-federation/runtime@npm:0.22.0":
version: 0.22.0
resolution: "@module-federation/runtime@npm:0.22.0"
dependencies:
"@module-federation/error-codes": "npm:0.22.0"
"@module-federation/runtime-core": "npm:0.22.0"
"@module-federation/sdk": "npm:0.22.0"
checksum: 10c0/f9cfaf7f8599a215195cb612a5d4532d4399cc8eb5a928ced60c4bdf0e7e2028849cdc384fa3f1506f9e7e0e112f74f6c30a5a76136dc56e155012d111ea075b
languageName: node
linkType: hard
"@module-federation/sdk@npm:0.21.4":
version: 0.21.4
resolution: "@module-federation/sdk@npm:0.21.4"
checksum: 10c0/65cff7369136a309009b832ccbd0e48d7f01b9c9378263d792156ba0a390895bf234efccc05cfb0d28fc38802eb5c6889a90bf6d191be539f571e57934875c3f
languageName: node
linkType: hard
"@module-federation/sdk@npm:0.22.0":
version: 0.22.0
resolution: "@module-federation/sdk@npm:0.22.0"
checksum: 10c0/c09ba0147368151b67ba33b9174ef451a028e1709d2208aa811cacc1ae4efcae0f1987f02119f9b54754ee6430af3610e357c9b744147f112a25d8f7564f8041
languageName: node
linkType: hard
"@module-federation/webpack-bundler-runtime@npm:0.21.4":
version: 0.21.4
resolution: "@module-federation/webpack-bundler-runtime@npm:0.21.4"
dependencies:
"@module-federation/runtime": "npm:0.21.4"
"@module-federation/sdk": "npm:0.21.4"
checksum: 10c0/a998606aa7931e6293d60191077ba62beccf33a1899dc792b6261dfc69d0c6e99922588df8de54c3519e4998da9eb80c9a7925ea999f629e7d1d0b022e5d9331
languageName: node
linkType: hard
"@module-federation/webpack-bundler-runtime@npm:0.22.0":
version: 0.22.0
resolution: "@module-federation/webpack-bundler-runtime@npm:0.22.0"
dependencies:
"@module-federation/runtime": "npm:0.22.0"
"@module-federation/sdk": "npm:0.22.0"
checksum: 10c0/4c1354b881ffc0c1521f1d676c9301db0b0d59186c386dde4dbb6d33f00fdb16bf118e85cfc38e2ffb36084fa87df8390d415a41c0c93b33bd0e5460a9a934f5
languageName: node
linkType: hard
"@napi-rs/wasm-runtime@npm:1.0.7, @napi-rs/wasm-runtime@npm:^1.0.7":
version: 1.0.7
resolution: "@napi-rs/wasm-runtime@npm:1.0.7"
dependencies:
"@emnapi/core": "npm:^1.5.0"
"@emnapi/runtime": "npm:^1.5.0"
"@tybys/wasm-util": "npm:^0.10.1"
checksum: 10c0/2d8635498136abb49d6dbf7395b78c63422292240963bf055f307b77aeafbde57ae2c0ceaaef215601531b36d6eb92a2cdd6f5ba90ed2aa8127c27aff9c4ae55
languageName: node
linkType: hard
"@noble/curves@npm:^1.3.0, @noble/curves@npm:~1.9.2":
version: 1.9.7
resolution: "@noble/curves@npm:1.9.7"
dependencies:
"@noble/hashes": "npm:1.8.0"
checksum: 10c0/150014751ebe8ca06a8654ca2525108452ea9ee0be23430332769f06808cddabfe84f248b6dbf836916bc869c27c2092957eec62c7506d68a1ed0a624017c2a3
languageName: node
linkType: hard
"@noble/hashes@npm:1.8.0, @noble/hashes@npm:^1.3.3, @noble/hashes@npm:~1.8.0":
version: 1.8.0
resolution: "@noble/hashes@npm:1.8.0"
checksum: 10c0/06a0b52c81a6fa7f04d67762e08b2c476a00285858150caeaaff4037356dd5e119f45b2a530f638b77a5eeca013168ec1b655db41bae3236cb2e9d511484fc77
languageName: node
linkType: hard
"@polkadot/keyring@npm:^14.0.1":
version: 14.0.1
resolution: "@polkadot/keyring@npm:14.0.1"
dependencies:
"@polkadot/util": "npm:14.0.1"
"@polkadot/util-crypto": "npm:14.0.1"
tslib: "npm:^2.8.0"
peerDependencies:
"@polkadot/util": 14.0.1
"@polkadot/util-crypto": 14.0.1
checksum: 10c0/40497d1d561312194d95fccf2a8549067ad53506644de354a853504cf2207b35c8276a7f85ede1d2c915039aaffdd29a6111157dca71b09fb570702e9c8086d4
languageName: node
linkType: hard
"@polkadot/networks@npm:14.0.1":
version: 14.0.1
resolution: "@polkadot/networks@npm:14.0.1"
dependencies:
"@polkadot/util": "npm:14.0.1"
"@substrate/ss58-registry": "npm:^1.51.0"
tslib: "npm:^2.8.0"
checksum: 10c0/1410bc778ad52a4f409db44d4cd367ef81a804078eb711b20ba700f5f5ff53411083cde4a29d2670f445a0d07ad5db39b101001dd3f2413d7ef37caef307f1a9
languageName: node
linkType: hard
"@polkadot/util-crypto@npm:14.0.1, @polkadot/util-crypto@npm:^14.0.1":
version: 14.0.1
resolution: "@polkadot/util-crypto@npm:14.0.1"
dependencies:
"@noble/curves": "npm:^1.3.0"
"@noble/hashes": "npm:^1.3.3"
"@polkadot/networks": "npm:14.0.1"
"@polkadot/util": "npm:14.0.1"
"@polkadot/wasm-crypto": "npm:^7.5.3"
"@polkadot/wasm-util": "npm:^7.5.3"
"@polkadot/x-bigint": "npm:14.0.1"
"@polkadot/x-randomvalues": "npm:14.0.1"
"@scure/base": "npm:^1.1.7"
"@scure/sr25519": "npm:^0.2.0"
tslib: "npm:^2.8.0"
peerDependencies:
"@polkadot/util": 14.0.1
checksum: 10c0/d38c7d1fe6094c466c4c44691c204a33f149d97b42236fe875fe0b202cf9fdc783d78a5fffdac5c2f372d35249add8f7e9471da93c9779800c14900b8b4ebf6d
languageName: node
linkType: hard
"@polkadot/util@npm:14.0.1, @polkadot/util@npm:^14.0.1":
version: 14.0.1
resolution: "@polkadot/util@npm:14.0.1"
dependencies:
"@polkadot/x-bigint": "npm:14.0.1"
"@polkadot/x-global": "npm:14.0.1"
"@polkadot/x-textdecoder": "npm:14.0.1"
"@polkadot/x-textencoder": "npm:14.0.1"
"@types/bn.js": "npm:^5.1.6"
bn.js: "npm:^5.2.1"
tslib: "npm:^2.8.0"
checksum: 10c0/613cc145b677c5272162d686276b1b54f36326736c173272a13d338209fa26377ec4e438619aafbc2d556dc7d465222d6f33510b3f1592f66683691294d911a2
languageName: node
linkType: hard
"@polkadot/wasm-bridge@npm:7.5.4":
version: 7.5.4
resolution: "@polkadot/wasm-bridge@npm:7.5.4"
dependencies:
"@polkadot/wasm-util": "npm:7.5.4"
tslib: "npm:^2.7.0"
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: 10c0/47958e2846527d1f492674fecb24121a060aeb93a558a34ef8b000844df015749391ee67b9bf39ee126e7f60a9582fb97db57d8a90fb0036dfb1d57608203d60
languageName: node
linkType: hard
"@polkadot/wasm-crypto-asmjs@npm:7.5.4":
version: 7.5.4
resolution: "@polkadot/wasm-crypto-asmjs@npm:7.5.4"
dependencies:
tslib: "npm:^2.7.0"
peerDependencies:
"@polkadot/util": "*"
checksum: 10c0/4dcbef752ce17f9bf5731743b55186a4b319aef590103bd3bb66a5627c0b66ec5f97beb3d1be96ac61c68c765b4f0c3d088d54b6cc5d1b651d14dc9243359b70
languageName: node
linkType: hard
"@polkadot/wasm-crypto-init@npm:7.5.4":
version: 7.5.4
resolution: "@polkadot/wasm-crypto-init@npm:7.5.4"
dependencies:
"@polkadot/wasm-bridge": "npm:7.5.4"
"@polkadot/wasm-crypto-asmjs": "npm:7.5.4"
"@polkadot/wasm-crypto-wasm": "npm:7.5.4"
"@polkadot/wasm-util": "npm:7.5.4"
tslib: "npm:^2.7.0"
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: 10c0/20422bd90e0a257987924fb06569e349736f86b818ec17d4082255c394f08d40d14fd692eaafdfc216fee3798d502e637d6f2bfacbf9c5f3d9f37e231d066de4
languageName: node
linkType: hard
"@polkadot/wasm-crypto-wasm@npm:7.5.4":
version: 7.5.4
resolution: "@polkadot/wasm-crypto-wasm@npm:7.5.4"
dependencies:
"@polkadot/wasm-util": "npm:7.5.4"
tslib: "npm:^2.7.0"
peerDependencies:
"@polkadot/util": "*"
checksum: 10c0/1feb2069d804dfc7721222d435c411e557d66775689b8d8bf0b5f7af16126c9e089905544bcb79abf63117e771286ad790b98ee63a127aadeee6a2e1bb8148af
languageName: node
linkType: hard
"@polkadot/wasm-crypto@npm:^7.5.3":
version: 7.5.4
resolution: "@polkadot/wasm-crypto@npm:7.5.4"
dependencies:
"@polkadot/wasm-bridge": "npm:7.5.4"
"@polkadot/wasm-crypto-asmjs": "npm:7.5.4"
"@polkadot/wasm-crypto-init": "npm:7.5.4"
"@polkadot/wasm-crypto-wasm": "npm:7.5.4"
"@polkadot/wasm-util": "npm:7.5.4"
tslib: "npm:^2.7.0"
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: 10c0/232627257755ae1487152638ae532f9986a7b8b0b4b236851e43f79396793e1c1b5e339f6d7a920180c06e2d3d8f4c2e25539ac8eb4ec3e9d4537cdd2b54c23d
languageName: node
linkType: hard
"@polkadot/wasm-util@npm:7.5.4, @polkadot/wasm-util@npm:^7.5.3":
version: 7.5.4
resolution: "@polkadot/wasm-util@npm:7.5.4"
dependencies:
tslib: "npm:^2.7.0"
peerDependencies:
"@polkadot/util": "*"
checksum: 10c0/a5a42b7d0b401ff68ee22017ad2b55eb0bfbdd1000d13a6e9dd05f374496237c1409a0cf18cfc8bdbd642110ae6c1b6e39a7484e5f8bdecdc48010c66c46b460
languageName: node
linkType: hard
"@polkadot/x-bigint@npm:14.0.1":
version: 14.0.1
resolution: "@polkadot/x-bigint@npm:14.0.1"
dependencies:
"@polkadot/x-global": "npm:14.0.1"
tslib: "npm:^2.8.0"
checksum: 10c0/36baa020a3d7cfeaced03a6af17784d1e1c7011612dad75f0412ec983229c6d0b3c80cc20b4d45fad54a34290a33eb1bfd4c860921acaf1c37c2758c83ffb0ad
languageName: node
linkType: hard
"@polkadot/x-global@npm:14.0.1":
version: 14.0.1
resolution: "@polkadot/x-global@npm:14.0.1"
dependencies:
tslib: "npm:^2.8.0"
checksum: 10c0/1c82627bc12eb4a732839d64bbc6dcfbc8cdfecbade8057b3474201638013ce40b0b3c82d477a4790076d2ae28a93f5e4b7e857ed4541b912b8cef5f43de95d0
languageName: node
linkType: hard
"@polkadot/x-randomvalues@npm:14.0.1":
version: 14.0.1
resolution: "@polkadot/x-randomvalues@npm:14.0.1"
dependencies:
"@polkadot/x-global": "npm:14.0.1"
tslib: "npm:^2.8.0"
peerDependencies:
"@polkadot/util": 14.0.1
"@polkadot/wasm-util": "*"
checksum: 10c0/a759341e8e496784d0845da746eaca49b630ce1ed20de37f1474b36a37a8efd5db5c13d56330be14d8cd6e0e685e893a204d40496a98aad623582f32684fe537
languageName: node
linkType: hard
"@polkadot/x-textdecoder@npm:14.0.1":
version: 14.0.1
resolution: "@polkadot/x-textdecoder@npm:14.0.1"
dependencies:
"@polkadot/x-global": "npm:14.0.1"
tslib: "npm:^2.8.0"
checksum: 10c0/4a0afed551792db48e44add9c0ffdc56052bce9d17ecd58ae2ec759e9389ad304471741fba4f2280059e4cd4bc6e5d81757b4ac24b9c7a3ae624f8d5cbb5cf27
languageName: node
linkType: hard
"@polkadot/x-textencoder@npm:14.0.1":
version: 14.0.1
resolution: "@polkadot/x-textencoder@npm:14.0.1"
dependencies:
"@polkadot/x-global": "npm:14.0.1"
tslib: "npm:^2.8.0"
checksum: 10c0/ff7c167dc2ec9fb5d42a027eb63d9646a71b333c307e1463929840abebfaece6c6c1615f4be17218c64d6a43dccb016f8fecb46efdd806702e12231ffe662b05
languageName: node
linkType: hard
"@radix-ui/react-compose-refs@npm:1.1.2":
version: 1.1.2
resolution: "@radix-ui/react-compose-refs@npm:1.1.2"
peerDependencies:
"@types/react": "*"
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10c0/d36a9c589eb75d634b9b139c80f916aadaf8a68a7c1c4b8c6c6b88755af1a92f2e343457042089f04cc3f23073619d08bb65419ced1402e9d4e299576d970771
languageName: node
linkType: hard
"@radix-ui/react-slot@npm:^1.2.4":
version: 1.2.4
resolution: "@radix-ui/react-slot@npm:1.2.4"
dependencies:
"@radix-ui/react-compose-refs": "npm:1.1.2"
peerDependencies:
"@types/react": "*"
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
"@types/react":
optional: true
checksum: 10c0/8b719bb934f1ae5ac0e37214783085c17c2f1080217caf514c1c6cc3d9ca56c7e19d25470b26da79aa6e605ab36589edaade149b76f5fc0666f1063e2fc0a0dc
languageName: node
linkType: hard
"@rsbuild/core@npm:1.7.1":
version: 1.7.1
resolution: "@rsbuild/core@npm:1.7.1"
dependencies:
"@rspack/core": "npm:1.7.0"
"@rspack/lite-tapable": "npm:~1.1.0"
"@swc/helpers": "npm:^0.5.18"
core-js: "npm:~3.47.0"
jiti: "npm:^2.6.1"
bin:
rsbuild: bin/rsbuild.js
checksum: 10c0/058309365fb8bcebad78211c7d52f0b33ea1edc800807acde005abbe4d1cef5174dc2e887ec4a4df2b264f6124f657de60ed8ac149d9311f398e578127af9129
languageName: node
linkType: hard
"@rsbuild/core@npm:^1.6.6":
version: 1.6.6
resolution: "@rsbuild/core@npm:1.6.6"
dependencies:
"@rspack/core": "npm:1.6.3"
"@rspack/lite-tapable": "npm:~1.1.0"
"@swc/helpers": "npm:^0.5.17"
core-js: "npm:~3.46.0"
jiti: "npm:^2.6.1"
bin:
rsbuild: bin/rsbuild.js
checksum: 10c0/50f2c4d4b5025e2fa299c33acbdb12660109120ccff7cf2ac1f2c63427b20d940dc8bc6f3bb91fcf28c09c039fd1ee75e0e6359e8136cc57f2f5cd1cf6f604a5
languageName: node
linkType: hard
"@rsbuild/plugin-react@npm:^1.4.2":
version: 1.4.2
resolution: "@rsbuild/plugin-react@npm:1.4.2"
dependencies:
"@rspack/plugin-react-refresh": "npm:^1.5.2"
react-refresh: "npm:^0.18.0"
peerDependencies:
"@rsbuild/core": 1.x
checksum: 10c0/795de7ee04d96aa976102d7a64b3888cca1285fe58d1ec688cf8a7b577aee0334e246ddacbbc2ceff8cedf8f219338a1271a0ffec4334c146dbadfa213daf6ff
languageName: node
linkType: hard
"@rspack/binding-darwin-arm64@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding-darwin-arm64@npm:1.6.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@rspack/binding-darwin-arm64@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding-darwin-arm64@npm:1.7.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@rspack/binding-darwin-x64@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding-darwin-x64@npm:1.6.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@rspack/binding-darwin-x64@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding-darwin-x64@npm:1.7.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@rspack/binding-linux-arm64-gnu@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding-linux-arm64-gnu@npm:1.6.3"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@rspack/binding-linux-arm64-gnu@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding-linux-arm64-gnu@npm:1.7.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@rspack/binding-linux-arm64-musl@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding-linux-arm64-musl@npm:1.6.3"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@rspack/binding-linux-arm64-musl@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding-linux-arm64-musl@npm:1.7.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@rspack/binding-linux-x64-gnu@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding-linux-x64-gnu@npm:1.6.3"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@rspack/binding-linux-x64-gnu@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding-linux-x64-gnu@npm:1.7.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@rspack/binding-linux-x64-musl@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding-linux-x64-musl@npm:1.6.3"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@rspack/binding-linux-x64-musl@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding-linux-x64-musl@npm:1.7.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@rspack/binding-wasm32-wasi@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding-wasm32-wasi@npm:1.6.3"
dependencies:
"@napi-rs/wasm-runtime": "npm:1.0.7"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@rspack/binding-wasm32-wasi@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding-wasm32-wasi@npm:1.7.0"
dependencies:
"@napi-rs/wasm-runtime": "npm:1.0.7"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@rspack/binding-win32-arm64-msvc@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding-win32-arm64-msvc@npm:1.6.3"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@rspack/binding-win32-arm64-msvc@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding-win32-arm64-msvc@npm:1.7.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@rspack/binding-win32-ia32-msvc@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding-win32-ia32-msvc@npm:1.6.3"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@rspack/binding-win32-ia32-msvc@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding-win32-ia32-msvc@npm:1.7.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@rspack/binding-win32-x64-msvc@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding-win32-x64-msvc@npm:1.6.3"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@rspack/binding-win32-x64-msvc@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding-win32-x64-msvc@npm:1.7.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@rspack/binding@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/binding@npm:1.6.3"
dependencies:
"@rspack/binding-darwin-arm64": "npm:1.6.3"
"@rspack/binding-darwin-x64": "npm:1.6.3"
"@rspack/binding-linux-arm64-gnu": "npm:1.6.3"
"@rspack/binding-linux-arm64-musl": "npm:1.6.3"
"@rspack/binding-linux-x64-gnu": "npm:1.6.3"
"@rspack/binding-linux-x64-musl": "npm:1.6.3"
"@rspack/binding-wasm32-wasi": "npm:1.6.3"
"@rspack/binding-win32-arm64-msvc": "npm:1.6.3"
"@rspack/binding-win32-ia32-msvc": "npm:1.6.3"
"@rspack/binding-win32-x64-msvc": "npm:1.6.3"
dependenciesMeta:
"@rspack/binding-darwin-arm64":
optional: true
"@rspack/binding-darwin-x64":
optional: true
"@rspack/binding-linux-arm64-gnu":
optional: true
"@rspack/binding-linux-arm64-musl":
optional: true
"@rspack/binding-linux-x64-gnu":
optional: true
"@rspack/binding-linux-x64-musl":
optional: true
"@rspack/binding-wasm32-wasi":
optional: true
"@rspack/binding-win32-arm64-msvc":
optional: true
"@rspack/binding-win32-ia32-msvc":
optional: true
"@rspack/binding-win32-x64-msvc":
optional: true
checksum: 10c0/35d44e71cb838f10e30f65d0eb8cd4c653168ca3eda6aa20ef2f6050a94a2ba50bf74fb8536ec4606f258134b0f29bdb9223683a1ba825342626be3d9862949d
languageName: node
linkType: hard
"@rspack/binding@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/binding@npm:1.7.0"
dependencies:
"@rspack/binding-darwin-arm64": "npm:1.7.0"
"@rspack/binding-darwin-x64": "npm:1.7.0"
"@rspack/binding-linux-arm64-gnu": "npm:1.7.0"
"@rspack/binding-linux-arm64-musl": "npm:1.7.0"
"@rspack/binding-linux-x64-gnu": "npm:1.7.0"
"@rspack/binding-linux-x64-musl": "npm:1.7.0"
"@rspack/binding-wasm32-wasi": "npm:1.7.0"
"@rspack/binding-win32-arm64-msvc": "npm:1.7.0"
"@rspack/binding-win32-ia32-msvc": "npm:1.7.0"
"@rspack/binding-win32-x64-msvc": "npm:1.7.0"
dependenciesMeta:
"@rspack/binding-darwin-arm64":
optional: true
"@rspack/binding-darwin-x64":
optional: true
"@rspack/binding-linux-arm64-gnu":
optional: true
"@rspack/binding-linux-arm64-musl":
optional: true
"@rspack/binding-linux-x64-gnu":
optional: true
"@rspack/binding-linux-x64-musl":
optional: true
"@rspack/binding-wasm32-wasi":
optional: true
"@rspack/binding-win32-arm64-msvc":
optional: true
"@rspack/binding-win32-ia32-msvc":
optional: true
"@rspack/binding-win32-x64-msvc":
optional: true
checksum: 10c0/f870376341d3fa134b188bc488a09ed6cfc19cdb07819ad6f1df6a816e73bea58eb9db461ab00814294ac55fdbe2fb56770bccfa4d97630117ea40afc828bfe1
languageName: node
linkType: hard
"@rspack/core@npm:1.6.3":
version: 1.6.3
resolution: "@rspack/core@npm:1.6.3"
dependencies:
"@module-federation/runtime-tools": "npm:0.21.4"
"@rspack/binding": "npm:1.6.3"
"@rspack/lite-tapable": "npm:1.1.0"
peerDependencies:
"@swc/helpers": ">=0.5.1"
peerDependenciesMeta:
"@swc/helpers":
optional: true
checksum: 10c0/fe6ab5eae670f2cdf78e326d160c6fba1bf0a630dcc6505e870b25e156df2fe7c9ad34b11baf241dd4697748541f44ccfec537128508f111447f99de2381505e
languageName: node
linkType: hard
"@rspack/core@npm:1.7.0":
version: 1.7.0
resolution: "@rspack/core@npm:1.7.0"
dependencies:
"@module-federation/runtime-tools": "npm:0.22.0"
"@rspack/binding": "npm:1.7.0"
"@rspack/lite-tapable": "npm:1.1.0"
peerDependencies:
"@swc/helpers": ">=0.5.1"
peerDependenciesMeta:
"@swc/helpers":
optional: true
checksum: 10c0/03534906817ca85d7e13367ce6712bd9cd0599a556741aa94084b65cb06e62195ef810164add21920a2c8424259c62cbf2e957be7b8070767a792630db6eb84b
languageName: node
linkType: hard
"@rspack/lite-tapable@npm:1.1.0, @rspack/lite-tapable@npm:~1.1.0":
version: 1.1.0
resolution: "@rspack/lite-tapable@npm:1.1.0"
checksum: 10c0/15059d1da73192b150339ceba3142a2d0073fa298dad9a497cc8c6037c597c3a982ed4c88dc50afa7b70d0757df1b47af7ae407cfe8acd31d333d524b84a7a4b
languageName: node
linkType: hard
"@rspack/plugin-react-refresh@npm:^1.5.2":
version: 1.5.3
resolution: "@rspack/plugin-react-refresh@npm:1.5.3"
dependencies:
error-stack-parser: "npm:^2.1.4"
html-entities: "npm:^2.6.0"
peerDependencies:
react-refresh: ">=0.10.0 <1.0.0"
webpack-hot-middleware: 2.x
peerDependenciesMeta:
webpack-hot-middleware:
optional: true
checksum: 10c0/e876a4a07b737f070e6d19137419441c82c7245e7877e9e9009df0c4fd7b12e68e707037575361a2658d319294fa0dfa6bd9ab49c31f5ddca3c582283df69bfd
languageName: node
linkType: hard
"@rstest/core@npm:^0.7.9":
version: 0.7.9
resolution: "@rstest/core@npm:0.7.9"
dependencies:
"@rsbuild/core": "npm:1.7.1"
"@types/chai": "npm:^5.2.3"
tinypool: "npm:^1.1.1"
peerDependencies:
happy-dom: "*"
jsdom: "*"
peerDependenciesMeta:
happy-dom:
optional: true
jsdom:
optional: true
bin:
rstest: bin/rstest.js
checksum: 10c0/98efc7d7c30c5ae7375f30e034cf647d8ce27fe4efbacb3496887fe9a8ef58bad9d41781402c8ff2f35c810d1c1fe3ed6f324ac797ba7884efa90a5fc0e31436
languageName: node
linkType: hard
"@scure/base@npm:^1.1.7":
version: 1.2.6
resolution: "@scure/base@npm:1.2.6"
checksum: 10c0/49bd5293371c4e062cb6ba689c8fe3ea3981b7bb9c000400dc4eafa29f56814cdcdd27c04311c2fec34de26bc373c593a1d6ca6d754398a488d587943b7c128a
languageName: node
linkType: hard
"@scure/sr25519@npm:^0.2.0":
version: 0.2.0
resolution: "@scure/sr25519@npm:0.2.0"
dependencies:
"@noble/curves": "npm:~1.9.2"
"@noble/hashes": "npm:~1.8.0"
checksum: 10c0/7836a7ea9e50c3c36c19f14408b52fc57d255e5b82a19e1ccb05bc3e369b20ee64d00683930b7171a1a728b4ed8f8fbb8f28194f1d51eb380991e0be2f44daef
languageName: node
linkType: hard
"@substrate/ss58-registry@npm:^1.51.0":
version: 1.51.0
resolution: "@substrate/ss58-registry@npm:1.51.0"
checksum: 10c0/f568ea2a5011ee1c288e577d23dd48a6ba0dc0db3611f268b1c35f41636b8ec39ae09fe0184f88d411e331b60d924e90054be736b1ff624cdcb9b742c94a9bf6
languageName: node
linkType: hard
"@swc/helpers@npm:^0.5.17":
version: 0.5.17
resolution: "@swc/helpers@npm:0.5.17"
dependencies:
tslib: "npm:^2.8.0"
checksum: 10c0/fe1f33ebb968558c5a0c595e54f2e479e4609bff844f9ca9a2d1ffd8dd8504c26f862a11b031f48f75c95b0381c2966c3dd156e25942f90089badd24341e7dbb
languageName: node
linkType: hard
"@swc/helpers@npm:^0.5.18":
version: 0.5.18
resolution: "@swc/helpers@npm:0.5.18"
dependencies:
tslib: "npm:^2.8.0"
checksum: 10c0/cb32d72e32f775c30287bffbcf61c89ea3a963608cb3a4a675a3f9af545b8b3ab0bc9930432a5520a7307daaa87538158e253584ae1cf39f3e7e6e83408a2d51
languageName: node
linkType: hard
"@tailwindcss/node@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/node@npm:4.1.17"
dependencies:
"@jridgewell/remapping": "npm:^2.3.4"
enhanced-resolve: "npm:^5.18.3"
jiti: "npm:^2.6.1"
lightningcss: "npm:1.30.2"
magic-string: "npm:^0.30.21"
source-map-js: "npm:^1.2.1"
tailwindcss: "npm:4.1.17"
checksum: 10c0/80b542e9b7eb09499dd14d65fd7d9544321d6bcdc00d29914396001d00e009906392cf493d20cc655dfd42769c823060cb9bf2eacacb43838a47e897634a446b
languageName: node
linkType: hard
"@tailwindcss/oxide-android-arm64@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-android-arm64@npm:4.1.17"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@tailwindcss/oxide-darwin-arm64@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-darwin-arm64@npm:4.1.17"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@tailwindcss/oxide-darwin-x64@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-darwin-x64@npm:4.1.17"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@tailwindcss/oxide-freebsd-x64@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-freebsd-x64@npm:4.1.17"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.1.17"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@tailwindcss/oxide-linux-arm64-gnu@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-linux-arm64-gnu@npm:4.1.17"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@tailwindcss/oxide-linux-arm64-musl@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-linux-arm64-musl@npm:4.1.17"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@tailwindcss/oxide-linux-x64-gnu@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-linux-x64-gnu@npm:4.1.17"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@tailwindcss/oxide-linux-x64-musl@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-linux-x64-musl@npm:4.1.17"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@tailwindcss/oxide-wasm32-wasi@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-wasm32-wasi@npm:4.1.17"
dependencies:
"@emnapi/core": "npm:^1.6.0"
"@emnapi/runtime": "npm:^1.6.0"
"@emnapi/wasi-threads": "npm:^1.1.0"
"@napi-rs/wasm-runtime": "npm:^1.0.7"
"@tybys/wasm-util": "npm:^0.10.1"
tslib: "npm:^2.4.0"
conditions: cpu=wasm32
languageName: node
linkType: hard
"@tailwindcss/oxide-win32-arm64-msvc@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-win32-arm64-msvc@npm:4.1.17"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@tailwindcss/oxide-win32-x64-msvc@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide-win32-x64-msvc@npm:4.1.17"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@tailwindcss/oxide@npm:4.1.17":
version: 4.1.17
resolution: "@tailwindcss/oxide@npm:4.1.17"
dependencies:
"@tailwindcss/oxide-android-arm64": "npm:4.1.17"
"@tailwindcss/oxide-darwin-arm64": "npm:4.1.17"
"@tailwindcss/oxide-darwin-x64": "npm:4.1.17"
"@tailwindcss/oxide-freebsd-x64": "npm:4.1.17"
"@tailwindcss/oxide-linux-arm-gnueabihf": "npm:4.1.17"
"@tailwindcss/oxide-linux-arm64-gnu": "npm:4.1.17"
"@tailwindcss/oxide-linux-arm64-musl": "npm:4.1.17"
"@tailwindcss/oxide-linux-x64-gnu": "npm:4.1.17"
"@tailwindcss/oxide-linux-x64-musl": "npm:4.1.17"
"@tailwindcss/oxide-wasm32-wasi": "npm:4.1.17"
"@tailwindcss/oxide-win32-arm64-msvc": "npm:4.1.17"
"@tailwindcss/oxide-win32-x64-msvc": "npm:4.1.17"
dependenciesMeta:
"@tailwindcss/oxide-android-arm64":
optional: true
"@tailwindcss/oxide-darwin-arm64":
optional: true
"@tailwindcss/oxide-darwin-x64":
optional: true
"@tailwindcss/oxide-freebsd-x64":
optional: true
"@tailwindcss/oxide-linux-arm-gnueabihf":
optional: true
"@tailwindcss/oxide-linux-arm64-gnu":
optional: true
"@tailwindcss/oxide-linux-arm64-musl":
optional: true
"@tailwindcss/oxide-linux-x64-gnu":
optional: true
"@tailwindcss/oxide-linux-x64-musl":
optional: true
"@tailwindcss/oxide-wasm32-wasi":
optional: true
"@tailwindcss/oxide-win32-arm64-msvc":
optional: true
"@tailwindcss/oxide-win32-x64-msvc":
optional: true
checksum: 10c0/cdd292760dde90976ac5cd486600687f9ac4043d9796001b356d43bfc4d0e1972d23844fe045970afdc4b4cda8451f262db15a9da4152c26e2b696a985e3686c
languageName: node
linkType: hard
"@tailwindcss/postcss@npm:^4.1.17":
version: 4.1.17
resolution: "@tailwindcss/postcss@npm:4.1.17"
dependencies:
"@alloc/quick-lru": "npm:^5.2.0"
"@tailwindcss/node": "npm:4.1.17"
"@tailwindcss/oxide": "npm:4.1.17"
postcss: "npm:^8.4.41"
tailwindcss: "npm:4.1.17"
checksum: 10c0/76094f601aadd556aad59ad13613b22b9edfda5d8fdc0724a79b8331b27dbac121c0d33b5b65f94468c01290c58f261dd1d8553dde0d261cd4d18b6110aa2242
languageName: node
linkType: hard
"@tybys/wasm-util@npm:^0.10.1":
version: 0.10.1
resolution: "@tybys/wasm-util@npm:0.10.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/b255094f293794c6d2289300c5fbcafbb5532a3aed3a5ffd2f8dc1828e639b88d75f6a376dd8f94347a44813fd7a7149d8463477a9a49525c8b2dcaa38c2d1e8
languageName: node
linkType: hard
"@types/bn.js@npm:^5.1.6":