-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
6664 lines (5963 loc) · 234 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
"@auto-files/models@workspace:*, @auto-files/models@workspace:common/models":
version: 0.0.0-use.local
resolution: "@auto-files/models@workspace:common/models"
dependencies:
"@autonomys/rpc": "npm:^1.4.9"
typescript: "npm:^5.6.3"
zod: "npm:^3.24.2"
languageName: unknown
linkType: soft
"@auto-files/rpc-apis@workspace:*, @auto-files/rpc-apis@workspace:common/rpc-apis":
version: 0.0.0-use.local
resolution: "@auto-files/rpc-apis@workspace:common/rpc-apis"
dependencies:
"@auto-files/models": "workspace:*"
"@autonomys/rpc": "npm:^1.4.11"
typescript: "npm:^5.6.3"
zod: "npm:^3.24.2"
languageName: unknown
linkType: soft
"@autonomys/asynchronous@npm:^1.4.11":
version: 1.4.11
resolution: "@autonomys/asynchronous@npm:1.4.11"
checksum: 10c0/b79facce0a4c91b06d4f60ebab07cb07d9be301fdcac0fe67d10dc063bc7f073dfafc07c562b659d445ed714ff1210d26c5903786a804b314de916b871734008
languageName: node
linkType: hard
"@autonomys/auto-dag-data@npm:^1.0.12, @autonomys/auto-dag-data@npm:^1.0.5, @autonomys/auto-dag-data@npm:^1.4.11":
version: 1.4.11
resolution: "@autonomys/auto-dag-data@npm:1.4.11"
dependencies:
"@autonomys/asynchronous": "npm:^1.4.11"
"@ipld/dag-pb": "npm:^4.1.3"
"@peculiar/webcrypto": "npm:^1.5.0"
"@webbuf/blake3": "npm:^3.0.26"
"@webbuf/fixedbuf": "npm:^3.0.26"
"@webbuf/webbuf": "npm:^3.0.26"
fflate: "npm:^0.8.2"
multiformats: "npm:^13.3.2"
protobufjs: "npm:^7.4.0"
protons: "npm:^7.6.0"
protons-runtime: "npm:^5.5.0"
checksum: 10c0/329e37225ddae62c01838d1f26529a2883f2fa78256846056794c36f375aa68c97ce6c7b0b5313c97cec8fdb35c8bdc1e55df1c407711bb9fecd88a864a23a5c
languageName: node
linkType: hard
"@autonomys/auto-utils@npm:^1.0.12, @autonomys/auto-utils@npm:^1.4.11":
version: 1.4.11
resolution: "@autonomys/auto-utils@npm:1.4.11"
dependencies:
"@polkadot/api": "npm:^15.8.1"
"@polkadot/extension-dapp": "npm:^0.58.6"
fs: "npm:^0.0.1-security"
checksum: 10c0/3d536bc049b50439e92148540aa020a1a18aadaced3467eea47f87488dfbd01530e697d00941169ec376f4b8e43978a649ebd516917d6a24b95142df0785c70f
languageName: node
linkType: hard
"@autonomys/file-caching@npm:^1.4.3":
version: 1.4.11
resolution: "@autonomys/file-caching@npm:1.4.11"
dependencies:
"@autonomys/asynchronous": "npm:^1.4.11"
"@autonomys/auto-dag-data": "npm:^1.4.11"
"@autonomys/auto-utils": "npm:^1.4.11"
"@keyvhq/sqlite": "npm:^2.1.7"
cache-manager: "npm:^6.4.1"
jszip: "npm:^3.10.1"
keyv: "npm:^5.3.2"
mime-types: "npm:^3.0.1"
process: "npm:^0.11.10"
stream: "npm:^0.0.3"
zod: "npm:^3.24.2"
checksum: 10c0/8fc398b8e760616d00b74febf38b8dd43bb026adc714e69c224a31f9b0a9cbb81c6b0017d7314ee66bb40830931751777b7a2f2b4645a48e0b401ca734ef3ba3
languageName: node
linkType: hard
"@autonomys/rpc@npm:^1.4.11, @autonomys/rpc@npm:^1.4.9":
version: 1.4.11
resolution: "@autonomys/rpc@npm:1.4.11"
dependencies:
websocket: "npm:^1.0.35"
zod: "npm:^3.24.2"
checksum: 10c0/b3d0ba256431a6ca876a06a1a7724482b5cd5b72923cd948554e74c3b84526637300b1886c7a0c0cc47b5b4f243c3229daca8cecd32e89b64f58d8dd3b1163c1
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-string-parser@npm:7.25.9"
checksum: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
languageName: node
linkType: hard
"@babel/parser@npm:^7.20.15":
version: 7.27.0
resolution: "@babel/parser@npm:7.27.0"
dependencies:
"@babel/types": "npm:^7.27.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/ba2ed3f41735826546a3ef2a7634a8d10351df221891906e59b29b0a0cd748f9b0e7a6f07576858a9de8e77785aad925c8389ddef146de04ea2842047c9d2859
languageName: node
linkType: hard
"@babel/types@npm:^7.27.0":
version: 7.27.0
resolution: "@babel/types@npm:7.27.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
checksum: 10c0/6f1592eabe243c89a608717b07b72969be9d9d2fce1dee21426238757ea1fa60fdfc09b29de9e48d8104311afc6e6fb1702565a9cc1e09bc1e76f2b2ddb0f6e1
languageName: node
linkType: hard
"@chainsafe/is-ip@npm:^2.0.1":
version: 2.1.0
resolution: "@chainsafe/is-ip@npm:2.1.0"
checksum: 10c0/a6c64cfa845979101e808a4398cc7e45ba8ea0a8e30097cdf12306dd084bcc6d92e008221386ae0819f1b53c78bcc634a415537ec970d6ff65cdb62d8445e1d5
languageName: node
linkType: hard
"@chainsafe/netmask@npm:^2.0.0":
version: 2.0.0
resolution: "@chainsafe/netmask@npm:2.0.0"
dependencies:
"@chainsafe/is-ip": "npm:^2.0.1"
checksum: 10c0/a9069e52b0a1470b00c88d3fb16ff4fe14274e5055770faab974b29f7bc69ebf76172775461da1e88b7fe73539a9228f6af0406253d46e987193ddf21a073da1
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10c0/eb42729851adca56d19a08e48d5a1e95efd2a32c55ae0323de8119052be0510d4b7a1611f2abcbf28c044a6c11e6b7d38f99fccdad7429300c37a8ea5fb95b44
languageName: node
linkType: hard
"@colors/colors@npm:1.6.0, @colors/colors@npm:^1.6.0":
version: 1.6.0
resolution: "@colors/colors@npm:1.6.0"
checksum: 10c0/9328a0778a5b0db243af54455b79a69e3fb21122d6c15ef9e9fcc94881d8d17352d8b2b2590f9bdd46fac5c2d6c1636dcfc14358a20c70e22daf89e1a759b629
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6
languageName: node
linkType: hard
"@dabh/diagnostics@npm:^2.0.2":
version: 2.0.3
resolution: "@dabh/diagnostics@npm:2.0.3"
dependencies:
colorspace: "npm:1.1.x"
enabled: "npm:2.0.x"
kuler: "npm:^2.0.0"
checksum: 10c0/a5133df8492802465ed01f2f0a5784585241a1030c362d54a602ed1839816d6c93d71dde05cf2ddb4fd0796238c19774406bd62fa2564b637907b495f52425fe
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.5.1
resolution: "@eslint-community/eslint-utils@npm:4.5.1"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/b520ae1b7bd04531a5c5da2021071815df4717a9f7d13720e3a5ddccf5c9c619532039830811fcbae1c2f1c9d133e63af2435ee69e0fc0fabbd6d928c6800fb2
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.19.2":
version: 0.19.2
resolution: "@eslint/config-array@npm:0.19.2"
dependencies:
"@eslint/object-schema": "npm:^2.1.6"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
checksum: 10c0/dd68da9abb32d336233ac4fe0db1e15a0a8d794b6e69abb9e57545d746a97f6f542496ff9db0d7e27fab1438546250d810d90b1904ac67677215b8d8e7573f3d
languageName: node
linkType: hard
"@eslint/config-helpers@npm:^0.2.0":
version: 0.2.0
resolution: "@eslint/config-helpers@npm:0.2.0"
checksum: 10c0/743a64653e13177029108f57ab47460ded08e3412c86216a14b7e8ab2dc79c2b64be45bf55c5ef29f83692a707dc34cf1e9217e4b8b4b272a0d9b691fdaf6a2a
languageName: node
linkType: hard
"@eslint/core@npm:^0.12.0":
version: 0.12.0
resolution: "@eslint/core@npm:0.12.0"
dependencies:
"@types/json-schema": "npm:^7.0.15"
checksum: 10c0/d032af81195bb28dd800c2b9617548c6c2a09b9490da3c5537fd2a1201501666d06492278bb92cfccac1f7ac249e58601dd87f813ec0d6a423ef0880434fa0c3
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.3.1":
version: 3.3.1
resolution: "@eslint/eslintrc@npm:3.3.1"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^10.0.1"
globals: "npm:^14.0.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/b0e63f3bc5cce4555f791a4e487bf999173fcf27c65e1ab6e7d63634d8a43b33c3693e79f192cbff486d7df1be8ebb2bd2edc6e70ddd486cbfa84a359a3e3b41
languageName: node
linkType: hard
"@eslint/js@npm:9.23.0":
version: 9.23.0
resolution: "@eslint/js@npm:9.23.0"
checksum: 10c0/4e70869372b6325389e0ab51cac6d3062689807d1cef2c3434857571422ce11dde3c62777af85c382b9f94d937127598d605d2086787f08611351bf99faded81
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.6":
version: 2.1.6
resolution: "@eslint/object-schema@npm:2.1.6"
checksum: 10c0/b8cdb7edea5bc5f6a96173f8d768d3554a628327af536da2fc6967a93b040f2557114d98dbcdbf389d5a7b290985ad6a9ce5babc547f36fc1fde42e674d11a56
languageName: node
linkType: hard
"@eslint/plugin-kit@npm:^0.2.7":
version: 0.2.7
resolution: "@eslint/plugin-kit@npm:0.2.7"
dependencies:
"@eslint/core": "npm:^0.12.0"
levn: "npm:^0.4.1"
checksum: 10c0/0a1aff1ad63e72aca923217e556c6dfd67d7cd121870eb7686355d7d1475d569773528a8b2111b9176f3d91d2ea81f7413c34600e8e5b73d59e005d70780b633
languageName: node
linkType: hard
"@humanfs/core@npm:^0.19.1":
version: 0.19.1
resolution: "@humanfs/core@npm:0.19.1"
checksum: 10c0/aa4e0152171c07879b458d0e8a704b8c3a89a8c0541726c6b65b81e84fd8b7564b5d6c633feadc6598307d34564bd53294b533491424e8e313d7ab6c7bc5dc67
languageName: node
linkType: hard
"@humanfs/node@npm:^0.16.6":
version: 0.16.6
resolution: "@humanfs/node@npm:0.16.6"
dependencies:
"@humanfs/core": "npm:^0.19.1"
"@humanwhocodes/retry": "npm:^0.3.0"
checksum: 10c0/8356359c9f60108ec204cbd249ecd0356667359b2524886b357617c4a7c3b6aace0fd5a369f63747b926a762a88f8a25bc066fa1778508d110195ce7686243e1
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.3.0":
version: 0.3.1
resolution: "@humanwhocodes/retry@npm:0.3.1"
checksum: 10c0/f0da1282dfb45e8120480b9e2e275e2ac9bbe1cf016d046fdad8e27cc1285c45bb9e711681237944445157b430093412b4446c1ab3fc4bb037861b5904101d3b
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.4.2":
version: 0.4.2
resolution: "@humanwhocodes/retry@npm:0.4.2"
checksum: 10c0/0235525d38f243bee3bf8b25ed395fbf957fb51c08adae52787e1325673071abe856c7e18e530922ed2dd3ce12ed82ba01b8cee0279ac52a3315fcdc3a69ef0c
languageName: node
linkType: hard
"@ipld/dag-pb@npm:^4.1.3":
version: 4.1.3
resolution: "@ipld/dag-pb@npm:4.1.3"
dependencies:
multiformats: "npm:^13.1.0"
checksum: 10c0/c785c8e291c7c417618b43381a57672feda61e1fed8aaf3365e306f29b31d4770cf54f68a4de4fac03775a768d93c2be11690a008e0856851a5b64a4b7d27efc
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
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.10":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:0.3.9":
version: 0.3.9
resolution: "@jridgewell/trace-mapping@npm:0.3.9"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.0.3"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
checksum: 10c0/fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b
languageName: node
linkType: hard
"@jsdoc/salty@npm:^0.2.1":
version: 0.2.9
resolution: "@jsdoc/salty@npm:0.2.9"
dependencies:
lodash: "npm:^4.17.21"
checksum: 10c0/a9c1fb50b5c2009f9fb6db603497e20eb0aba650a2a2f8a5d6af478a95c6237aaf92ae7ae87cc2c896d71b24f220f4678172a456121c380861cf711d0588451d
languageName: node
linkType: hard
"@keyv/serialize@npm:^1.0.3":
version: 1.0.3
resolution: "@keyv/serialize@npm:1.0.3"
dependencies:
buffer: "npm:^6.0.3"
checksum: 10c0/24a257870b0548cfe430680c2ae1641751e6a6ec90c573eaf51bfe956839b6cfa462b4d2827157363b6d620872d32d69fa2f37210a864ba488f8ec7158436398
languageName: node
linkType: hard
"@keyvhq/core@npm:^2.1.1":
version: 2.1.7
resolution: "@keyvhq/core@npm:2.1.7"
dependencies:
json-buffer: "npm:~3.0.1"
checksum: 10c0/fbc8590ae3cccc8ef19b21b7a2f5be0c8aa26281c3121648cb4eea876699c8cd401b3e1b6f3e16a5c3b14753b6591c7024b0dcebe0451f9ec6f227bcba47ce50
languageName: node
linkType: hard
"@keyvhq/sql@npm:2.1.7":
version: 2.1.7
resolution: "@keyvhq/sql@npm:2.1.7"
dependencies:
sql-ts: "npm:7"
checksum: 10c0/1cee6e9695319295285f4f80c38ef957aafe18906f92ba2ce37f0ca481d5734ab43bd1f3ac060c4f0422e2a2ced8a45042c4df50390bb488e38704fe0f8b3dcf
languageName: node
linkType: hard
"@keyvhq/sqlite@npm:^2.1.6, @keyvhq/sqlite@npm:^2.1.7":
version: 2.1.7
resolution: "@keyvhq/sqlite@npm:2.1.7"
dependencies:
"@keyvhq/sql": "npm:2.1.7"
"@vscode/sqlite3": "npm:5.1.8-vscode"
pify: "npm:~5.0.0"
checksum: 10c0/67b15dcaf09d1860077c9b621370e1e406ef531b0ed94486d5ec1fb794c04b97afb6f1e7aa7ec8496bd5ec7a7981d22a8ed45fa99714c6544131c0d1fb1340b7
languageName: node
linkType: hard
"@leichtgewicht/ip-codec@npm:^2.0.1":
version: 2.0.5
resolution: "@leichtgewicht/ip-codec@npm:2.0.5"
checksum: 10c0/14a0112bd59615eef9e3446fea018045720cd3da85a98f801a685a818b0d96ef2a1f7227e8d271def546b2e2a0fe91ef915ba9dc912ab7967d2317b1a051d66b
languageName: node
linkType: hard
"@libp2p/interface@npm:^2.7.0":
version: 2.7.0
resolution: "@libp2p/interface@npm:2.7.0"
dependencies:
"@multiformats/multiaddr": "npm:^12.3.3"
it-pushable: "npm:^3.2.3"
it-stream-types: "npm:^2.0.2"
multiformats: "npm:^13.3.1"
progress-events: "npm:^1.0.1"
uint8arraylist: "npm:^2.4.8"
checksum: 10c0/ed0c76acb66dacfe35d5e2ca99dfb25e9f167ce35968c48329b350e95aab3aea6011ab4fea31779293e3478c040243b22083826c63d364023f01f320b39bcf5d
languageName: node
linkType: hard
"@libp2p/logger@npm:^5.0.1":
version: 5.1.13
resolution: "@libp2p/logger@npm:5.1.13"
dependencies:
"@libp2p/interface": "npm:^2.7.0"
"@multiformats/multiaddr": "npm:^12.3.3"
interface-datastore: "npm:^8.3.1"
multiformats: "npm:^13.3.1"
weald: "npm:^1.0.4"
checksum: 10c0/4235f8659993b34b60883ab0e2101a73924409bfe88dc1d5f635cd341bb0541bcbddfbcde4951a108421d09ea224b0f25bb74a7e5d105743547e899b73c0532d
languageName: node
linkType: hard
"@multiformats/dns@npm:^1.0.3":
version: 1.0.6
resolution: "@multiformats/dns@npm:1.0.6"
dependencies:
"@types/dns-packet": "npm:^5.6.5"
buffer: "npm:^6.0.3"
dns-packet: "npm:^5.6.1"
hashlru: "npm:^2.3.0"
p-queue: "npm:^8.0.1"
progress-events: "npm:^1.0.0"
uint8arrays: "npm:^5.0.2"
checksum: 10c0/ab0323ec9e697fb345a47b68e9e6ee5e2def2f00e99467ac6c53c9b6f613cff2dc2b792e9270cfe385500b6cdcc565a1c6e6e7871c584a6bc49366441bc4fa7f
languageName: node
linkType: hard
"@multiformats/multiaddr@npm:^12.3.3":
version: 12.4.0
resolution: "@multiformats/multiaddr@npm:12.4.0"
dependencies:
"@chainsafe/is-ip": "npm:^2.0.1"
"@chainsafe/netmask": "npm:^2.0.0"
"@multiformats/dns": "npm:^1.0.3"
multiformats: "npm:^13.0.0"
uint8-varint: "npm:^2.0.1"
uint8arrays: "npm:^5.0.0"
checksum: 10c0/ed623041070328b0c5f09094e647b70ce14b70476560850c63b5ddfe31bba5818f5ee992806154542dafab9b576d69610349db63773f3756769e64523e6415ad
languageName: node
linkType: hard
"@noble/curves@npm:^1.3.0":
version: 1.8.1
resolution: "@noble/curves@npm:1.8.1"
dependencies:
"@noble/hashes": "npm:1.7.1"
checksum: 10c0/84902c7af93338373a95d833f77981113e81c48d4bec78f22f63f1f7fdd893bc1d3d7a3ee78f01b9a8ad3dec812a1232866bf2ccbeb2b1560492e5e7d690ab1f
languageName: node
linkType: hard
"@noble/hashes@npm:1.7.1, @noble/hashes@npm:^1.3.1, @noble/hashes@npm:^1.3.3":
version: 1.7.1
resolution: "@noble/hashes@npm:1.7.1"
checksum: 10c0/2f8ec0338ccc92b576a0f5c16ab9c017a3a494062f1fbb569ae641c5e7eab32072f9081acaa96b5048c0898f972916c818ea63cbedda707886a4b5ffcfbf94e3
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@npmcli/agent@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/agent@npm:3.0.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271
languageName: node
linkType: hard
"@npmcli/fs@npm:^4.0.0":
version: 4.0.0
resolution: "@npmcli/fs@npm:4.0.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5
languageName: node
linkType: hard
"@oven/bun-darwin-aarch64@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-darwin-aarch64@npm:1.2.8"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@oven/bun-darwin-x64-baseline@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-darwin-x64-baseline@npm:1.2.8"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@oven/bun-darwin-x64@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-darwin-x64@npm:1.2.8"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@oven/bun-linux-aarch64-musl@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-linux-aarch64-musl@npm:1.2.8"
conditions: os=linux & cpu=aarch64
languageName: node
linkType: hard
"@oven/bun-linux-aarch64@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-linux-aarch64@npm:1.2.8"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@oven/bun-linux-x64-baseline@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-linux-x64-baseline@npm:1.2.8"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@oven/bun-linux-x64-musl-baseline@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-linux-x64-musl-baseline@npm:1.2.8"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@oven/bun-linux-x64-musl@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-linux-x64-musl@npm:1.2.8"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@oven/bun-linux-x64@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-linux-x64@npm:1.2.8"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@oven/bun-windows-x64-baseline@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-windows-x64-baseline@npm:1.2.8"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@oven/bun-windows-x64@npm:1.2.8":
version: 1.2.8
resolution: "@oven/bun-windows-x64@npm:1.2.8"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@peculiar/asn1-schema@npm:^2.3.13, @peculiar/asn1-schema@npm:^2.3.8":
version: 2.3.15
resolution: "@peculiar/asn1-schema@npm:2.3.15"
dependencies:
asn1js: "npm:^3.0.5"
pvtsutils: "npm:^1.3.6"
tslib: "npm:^2.8.1"
checksum: 10c0/0e73e292a17d00a8770825a9504ceaf0994481a39126317ca0ca5d3dc742087f2b71a4d086bb5613bf19ac57f001d42f594683797d43137702db3ee2b42736a0
languageName: node
linkType: hard
"@peculiar/json-schema@npm:^1.1.12":
version: 1.1.12
resolution: "@peculiar/json-schema@npm:1.1.12"
dependencies:
tslib: "npm:^2.0.0"
checksum: 10c0/202132c66dcc6b6aca5d0af971c015be2e163da2f7f992910783c5d39c8a7db59b6ec4f4ce419459a1f954b7e1d17b6b253f0e60072c1b3d254079f4eaebc311
languageName: node
linkType: hard
"@peculiar/webcrypto@npm:^1.5.0":
version: 1.5.0
resolution: "@peculiar/webcrypto@npm:1.5.0"
dependencies:
"@peculiar/asn1-schema": "npm:^2.3.8"
"@peculiar/json-schema": "npm:^1.1.12"
pvtsutils: "npm:^1.3.5"
tslib: "npm:^2.6.2"
webcrypto-core: "npm:^1.8.0"
checksum: 10c0/4f6f24b2c52c2155b9c569b6eb1d57954cb5f7bd2764a50cdaed7aea17a6dcf304b75b87b57ba318756ffec8179a07d9a76534aaf77855912b838543e5ff8983
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@pkgr/core@npm:^0.2.0":
version: 0.2.0
resolution: "@pkgr/core@npm:0.2.0"
checksum: 10c0/29cb9c15f4788096b8b8b786b19c75b6398b6afe814a97189922c3046d8acb5d24f1217fd2537c3f8e42c04e48d572295e7ee56d77964ddc932c44eb5a615931
languageName: node
linkType: hard
"@polkadot-api/json-rpc-provider-proxy@npm:^0.1.0":
version: 0.1.0
resolution: "@polkadot-api/json-rpc-provider-proxy@npm:0.1.0"
checksum: 10c0/e4b621fbbba5ae035f36932ce2ef6024d157a1612e26d8838ba6b92a78cd4718f4f12baa55ec7c700d213f8ecbe6e14569152ba3254b341b677b9e616c749f59
languageName: node
linkType: hard
"@polkadot-api/json-rpc-provider@npm:0.0.1, @polkadot-api/json-rpc-provider@npm:^0.0.1":
version: 0.0.1
resolution: "@polkadot-api/json-rpc-provider@npm:0.0.1"
checksum: 10c0/90dc86693e7ef742c50484f4374d4b4f0eb7b5f7f618cf96a3dfed866fd18edf19132fc750b2944e8300d83c5601343f3876cbe60cd6bb1086301361d682ebd8
languageName: node
linkType: hard
"@polkadot-api/metadata-builders@npm:0.3.2":
version: 0.3.2
resolution: "@polkadot-api/metadata-builders@npm:0.3.2"
dependencies:
"@polkadot-api/substrate-bindings": "npm:0.6.0"
"@polkadot-api/utils": "npm:0.1.0"
checksum: 10c0/ac536e8d5dea4c4e241839750a46d003a86e6149428dbf9bdb794907547fdab219d38c805ba5fa0ea7150a0083c214866e28d7c2ec10621be97d2f8f8b013edf
languageName: node
linkType: hard
"@polkadot-api/observable-client@npm:^0.3.0":
version: 0.3.2
resolution: "@polkadot-api/observable-client@npm:0.3.2"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.3.2"
"@polkadot-api/substrate-bindings": "npm:0.6.0"
"@polkadot-api/utils": "npm:0.1.0"
peerDependencies:
"@polkadot-api/substrate-client": 0.1.4
rxjs: ">=7.8.0"
checksum: 10c0/9f93fab03c37af0483f5c8487ec5250d366eb401a2c9744c014dfb4c7aa524645ae71f6b0e60761e2bca89bdcd862c119e4ac0e798123d8ee9f037eb2f4aaef3
languageName: node
linkType: hard
"@polkadot-api/substrate-bindings@npm:0.6.0":
version: 0.6.0
resolution: "@polkadot-api/substrate-bindings@npm:0.6.0"
dependencies:
"@noble/hashes": "npm:^1.3.1"
"@polkadot-api/utils": "npm:0.1.0"
"@scure/base": "npm:^1.1.1"
scale-ts: "npm:^1.6.0"
checksum: 10c0/6c5d2d4f1120e95b3fb0207ea186e74302b9075671132d62d94d6abcb8b38fe081b8514384c744c3630615caa474764ebdd18968bef73d0c29203946941f1d99
languageName: node
linkType: hard
"@polkadot-api/substrate-client@npm:^0.1.2":
version: 0.1.4
resolution: "@polkadot-api/substrate-client@npm:0.1.4"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.1"
"@polkadot-api/utils": "npm:0.1.0"
checksum: 10c0/7c9138ce52745f7e5f365f35d8caf3c192aee405ee576492eab8c47f5e9d09547a6141cc455ba21e69cf9f0f813fe6f5bcb0763342c33435a7678432961713db
languageName: node
linkType: hard
"@polkadot-api/utils@npm:0.1.0":
version: 0.1.0
resolution: "@polkadot-api/utils@npm:0.1.0"
checksum: 10c0/9b24522a30d0519df2d2bbfc65f7dbc94233950f829c4a6b042e02cc43b70c0ec43a7d06056cd7084d09e32d7c42caa2695732d25f673a31430391bed116fcae
languageName: node
linkType: hard
"@polkadot/api-augment@npm:15.9.1":
version: 15.9.1
resolution: "@polkadot/api-augment@npm:15.9.1"
dependencies:
"@polkadot/api-base": "npm:15.9.1"
"@polkadot/rpc-augment": "npm:15.9.1"
"@polkadot/types": "npm:15.9.1"
"@polkadot/types-augment": "npm:15.9.1"
"@polkadot/types-codec": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
tslib: "npm:^2.8.1"
checksum: 10c0/5d91cc9f0f008e95ce71def08dba91404476bea766b0d1b2af25ce36cff5f3f5bed132595f9a708d6bbd7f1d4a07c3ad69e531b405781fd1d4fda9475168198e
languageName: node
linkType: hard
"@polkadot/api-base@npm:15.9.1":
version: 15.9.1
resolution: "@polkadot/api-base@npm:15.9.1"
dependencies:
"@polkadot/rpc-core": "npm:15.9.1"
"@polkadot/types": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.1"
checksum: 10c0/2a8202399b7057b52e0c87ad2a08e51ef8c8d9e55195abb661e5cea849494c4ecaec96c174f1ef13f3f0e0f4529f397cf354bec302d6d238e77729f52b827e0e
languageName: node
linkType: hard
"@polkadot/api-derive@npm:15.9.1":
version: 15.9.1
resolution: "@polkadot/api-derive@npm:15.9.1"
dependencies:
"@polkadot/api": "npm:15.9.1"
"@polkadot/api-augment": "npm:15.9.1"
"@polkadot/api-base": "npm:15.9.1"
"@polkadot/rpc-core": "npm:15.9.1"
"@polkadot/types": "npm:15.9.1"
"@polkadot/types-codec": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
"@polkadot/util-crypto": "npm:^13.4.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.1"
checksum: 10c0/3cdc57ea801d31a1a39a9f6c4b1dde46c2c75c049a531ba802966e9c53b34ec3c929dea562dcb56350d910081fc6d0f69eece981badebf12886824302a32f63f
languageName: node
linkType: hard
"@polkadot/api@npm:15.9.1, @polkadot/api@npm:^15.0.1, @polkadot/api@npm:^15.8.1":
version: 15.9.1
resolution: "@polkadot/api@npm:15.9.1"
dependencies:
"@polkadot/api-augment": "npm:15.9.1"
"@polkadot/api-base": "npm:15.9.1"
"@polkadot/api-derive": "npm:15.9.1"
"@polkadot/keyring": "npm:^13.4.3"
"@polkadot/rpc-augment": "npm:15.9.1"
"@polkadot/rpc-core": "npm:15.9.1"
"@polkadot/rpc-provider": "npm:15.9.1"
"@polkadot/types": "npm:15.9.1"
"@polkadot/types-augment": "npm:15.9.1"
"@polkadot/types-codec": "npm:15.9.1"
"@polkadot/types-create": "npm:15.9.1"
"@polkadot/types-known": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
"@polkadot/util-crypto": "npm:^13.4.3"
eventemitter3: "npm:^5.0.1"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.1"
checksum: 10c0/505ab76b1db9855d78d054e42f36fa8c8dfaabafe27c7781b3efb066171f3757348a377e6f6b3c3c868f5b329eb2abd46838a977b89e447c84082ad6030c8b01
languageName: node
linkType: hard
"@polkadot/extension-dapp@npm:^0.58.6":
version: 0.58.6
resolution: "@polkadot/extension-dapp@npm:0.58.6"
dependencies:
"@polkadot/extension-inject": "npm:0.58.6"
"@polkadot/util": "npm:^13.4.3"
"@polkadot/util-crypto": "npm:^13.4.3"
tslib: "npm:^2.8.1"
peerDependencies:
"@polkadot/api": "*"
"@polkadot/util": "*"
"@polkadot/util-crypto": "*"
checksum: 10c0/2accb7c2194752c114c623f0c55f4e17d59d13b154cb16f5353c7db644400a06702a4cb9d9ce43718012a7d0f631fabd8cdc566e72eb0db1a77c82d4aadcc645
languageName: node
linkType: hard
"@polkadot/extension-inject@npm:0.58.6":
version: 0.58.6
resolution: "@polkadot/extension-inject@npm:0.58.6"
dependencies:
"@polkadot/api": "npm:^15.8.1"
"@polkadot/rpc-provider": "npm:^15.8.1"
"@polkadot/types": "npm:^15.8.1"
"@polkadot/util": "npm:^13.4.3"
"@polkadot/util-crypto": "npm:^13.4.3"
"@polkadot/x-global": "npm:^13.4.3"
tslib: "npm:^2.8.1"
peerDependencies:
"@polkadot/api": "*"
"@polkadot/util": "*"
checksum: 10c0/5fac31ae7c42e9e6c31b56787df02feef31f14968a50dc3605e6ec55c6522f2295c366790178e73ede22e754c629ce670732fb89d16dc80204ce3909d23f2f65
languageName: node
linkType: hard
"@polkadot/keyring@npm:^13.4.3":
version: 13.4.3
resolution: "@polkadot/keyring@npm:13.4.3"
dependencies:
"@polkadot/util": "npm:13.4.3"
"@polkadot/util-crypto": "npm:13.4.3"
tslib: "npm:^2.8.0"
peerDependencies:
"@polkadot/util": 13.4.3
"@polkadot/util-crypto": 13.4.3
checksum: 10c0/3cffcbcee32ec4212f4ee69cd9dde4ea4875f456b748130a1dc4b318d1ac34550bbb95a67c2ab03d7162f81f8c33b15cf6c5204dad169f975141a65345c0d72a
languageName: node
linkType: hard
"@polkadot/networks@npm:13.4.3, @polkadot/networks@npm:^13.4.3":
version: 13.4.3
resolution: "@polkadot/networks@npm:13.4.3"
dependencies:
"@polkadot/util": "npm:13.4.3"
"@substrate/ss58-registry": "npm:^1.51.0"
tslib: "npm:^2.8.0"
checksum: 10c0/a178369c8fef6fb32e5096a897b36a70dedd657ef198333223be9d36ca17ba0a26301c5896aa3d88a0a91a778eee63591f6b5884d630d79f32d81c3e191cf51d
languageName: node
linkType: hard
"@polkadot/rpc-augment@npm:15.9.1":
version: 15.9.1
resolution: "@polkadot/rpc-augment@npm:15.9.1"
dependencies:
"@polkadot/rpc-core": "npm:15.9.1"
"@polkadot/types": "npm:15.9.1"
"@polkadot/types-codec": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
tslib: "npm:^2.8.1"
checksum: 10c0/8dd3e2f63dc44c22272681ec31c06adb6cc0712a04d43a385d3262f4652e4ec47e61cb315e53dad637087da877e01955c2a151c9f7c002931c7063d66c7305de
languageName: node
linkType: hard
"@polkadot/rpc-core@npm:15.9.1":
version: 15.9.1
resolution: "@polkadot/rpc-core@npm:15.9.1"
dependencies:
"@polkadot/rpc-augment": "npm:15.9.1"
"@polkadot/rpc-provider": "npm:15.9.1"
"@polkadot/types": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.1"
checksum: 10c0/96ed12e79429adb983fe57d658dd0188a3f7a705b99c50da8e9f06ecbafd8ffe6ab0ba399cf17f8ca62955b7efe9c162465395b56c89a436d4ffeafe2b443022
languageName: node
linkType: hard
"@polkadot/rpc-provider@npm:15.9.1, @polkadot/rpc-provider@npm:^15.8.1":
version: 15.9.1
resolution: "@polkadot/rpc-provider@npm:15.9.1"
dependencies:
"@polkadot/keyring": "npm:^13.4.3"
"@polkadot/types": "npm:15.9.1"
"@polkadot/types-support": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
"@polkadot/util-crypto": "npm:^13.4.3"
"@polkadot/x-fetch": "npm:^13.4.3"
"@polkadot/x-global": "npm:^13.4.3"
"@polkadot/x-ws": "npm:^13.4.3"
"@substrate/connect": "npm:0.8.11"
eventemitter3: "npm:^5.0.1"
mock-socket: "npm:^9.3.1"
nock: "npm:^13.5.5"
tslib: "npm:^2.8.1"
dependenciesMeta:
"@substrate/connect":
optional: true
checksum: 10c0/4d5406d7706e045ec5172635dfd0f17297b98e4aa9c7507341c070b9978cc39d13edf68dc2217e2251caed1937d4dc564b4592ef32bb412dd4ed7fb679b9e55f
languageName: node
linkType: hard
"@polkadot/types-augment@npm:15.9.1":
version: 15.9.1
resolution: "@polkadot/types-augment@npm:15.9.1"
dependencies:
"@polkadot/types": "npm:15.9.1"
"@polkadot/types-codec": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
tslib: "npm:^2.8.1"
checksum: 10c0/604c1cfa468153d64fc7750dabec859e67d2736abc810134ef0306701e050c8575dfdbe35cb22f761da322400a9238a5510b570ec33eecc0870a3195956ab022
languageName: node
linkType: hard
"@polkadot/types-codec@npm:15.9.1":
version: 15.9.1
resolution: "@polkadot/types-codec@npm:15.9.1"
dependencies:
"@polkadot/util": "npm:^13.4.3"
"@polkadot/x-bigint": "npm:^13.4.3"
tslib: "npm:^2.8.1"
checksum: 10c0/e170f277a17dfc1176467a3f163d33a5be0b96eebf66a6600086d7132190de6fd236f7c84dfa171d1df121439913f5f5b1a9eab6731fbce4578de2d54aec944f
languageName: node
linkType: hard
"@polkadot/types-create@npm:15.9.1":
version: 15.9.1
resolution: "@polkadot/types-create@npm:15.9.1"
dependencies:
"@polkadot/types-codec": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
tslib: "npm:^2.8.1"
checksum: 10c0/47bc219f378756052af696f59790e1be137a1b571909e3e504fc8c4cfcd5a9902eecafa678023a0746a18aa74d84f76bd3437e4678dea6db6f3b2d41364038b5
languageName: node
linkType: hard
"@polkadot/types-known@npm:15.9.1":
version: 15.9.1
resolution: "@polkadot/types-known@npm:15.9.1"
dependencies:
"@polkadot/networks": "npm:^13.4.3"
"@polkadot/types": "npm:15.9.1"
"@polkadot/types-codec": "npm:15.9.1"
"@polkadot/types-create": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
tslib: "npm:^2.8.1"
checksum: 10c0/888c91e51a7deba90bbe5015eab64e3a5f213387e2221eb9e7a34913fcbf0404467c6fa2d0d4f67eb94717951c03f1f4b3db5ba20c30d17ebfbe5c7ec73b193d
languageName: node
linkType: hard
"@polkadot/types-support@npm:15.9.1":
version: 15.9.1
resolution: "@polkadot/types-support@npm:15.9.1"
dependencies:
"@polkadot/util": "npm:^13.4.3"
tslib: "npm:^2.8.1"
checksum: 10c0/88db0bfc7f01fabe76201fd523c4f7f7392b333d859ef8257a7824be45f1b03153f22b8d747529f0dc357addedf8fd854c96d7c2fa67cc6df71c6251f931e8b5
languageName: node
linkType: hard
"@polkadot/types@npm:15.9.1, @polkadot/types@npm:^15.8.1":
version: 15.9.1
resolution: "@polkadot/types@npm:15.9.1"
dependencies:
"@polkadot/keyring": "npm:^13.4.3"
"@polkadot/types-augment": "npm:15.9.1"
"@polkadot/types-codec": "npm:15.9.1"
"@polkadot/types-create": "npm:15.9.1"
"@polkadot/util": "npm:^13.4.3"
"@polkadot/util-crypto": "npm:^13.4.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.1"
checksum: 10c0/2e5a05f4112e551e73890fa7d0904f2e4848023c3b251c735fc190bf98740f92594946b5f06aa258a17bdbb520021ad7f869d2e129bc4a9b363aebb6bc21268d
languageName: node
linkType: hard
"@polkadot/util-crypto@npm:13.4.3, @polkadot/util-crypto@npm:^13.4.3":
version: 13.4.3
resolution: "@polkadot/util-crypto@npm:13.4.3"
dependencies:
"@noble/curves": "npm:^1.3.0"
"@noble/hashes": "npm:^1.3.3"
"@polkadot/networks": "npm:13.4.3"
"@polkadot/util": "npm:13.4.3"
"@polkadot/wasm-crypto": "npm:^7.4.1"
"@polkadot/wasm-util": "npm:^7.4.1"
"@polkadot/x-bigint": "npm:13.4.3"
"@polkadot/x-randomvalues": "npm:13.4.3"
"@scure/base": "npm:^1.1.7"
tslib: "npm:^2.8.0"
peerDependencies:
"@polkadot/util": 13.4.3
checksum: 10c0/601b3d57eea400c9229d4766092659e8095eb7aa7329cdddb0f6bc325b312cf7bdaa24c86792ff1aae4b7d810130455c425a1336cf9066adbef66b5d923c6eeb
languageName: node
linkType: hard