-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
9444 lines (8526 loc) · 329 KB
/
Copy pathyarn.lock
File metadata and controls
9444 lines (8526 loc) · 329 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: 10
cacheKey: 10c0
"@achingbrain/http-parser-js@npm:^0.5.9":
version: 0.5.9
resolution: "@achingbrain/http-parser-js@npm:0.5.9"
dependencies:
uint8arrays: "npm:^5.1.0"
checksum: 10c0/f5913905662fe1572df636b8e7828e311bd1bfd2e61b5a8f8ff90a9cdd4e8e6765c992593e9c8ab76ebc00b3477ef322b325ba7696c822d2ff7e1e2bf0fad051
languageName: node
linkType: hard
"@achingbrain/nat-port-mapper@npm:^4.0.4":
version: 4.0.5
resolution: "@achingbrain/nat-port-mapper@npm:4.0.5"
dependencies:
"@achingbrain/ssdp": "npm:^4.1.0"
"@chainsafe/is-ip": "npm:^2.0.2"
"@libp2p/logger": "npm:^6.0.5"
abort-error: "npm:^1.0.0"
err-code: "npm:^3.0.1"
netmask: "npm:^2.0.2"
p-defer: "npm:^4.0.0"
race-signal: "npm:^2.0.0"
xml2js: "npm:^0.6.0"
checksum: 10c0/00770833259f1902068b6176cdc01232053f02e05ae46fe64c7acf6e9f15e0a11aa47bdc31b23af6123fc82f3da2270469ea585c3c9e4592458f3b2a23423186
languageName: node
linkType: hard
"@achingbrain/ssdp@npm:^4.1.0":
version: 4.2.4
resolution: "@achingbrain/ssdp@npm:4.2.4"
dependencies:
abort-error: "npm:^1.0.0"
freeport-promise: "npm:^2.0.0"
merge-options: "npm:^3.0.4"
xml2js: "npm:^0.6.2"
checksum: 10c0/2ba01d64faecfc3f187fcea457ea3cdfbec8b3a13b993a1a782e3bb4973983b962eb41b61fe58be2cd12aefd0b004ad741892ca571e0ffcab370205dc497af1d
languageName: node
linkType: hard
"@assemblyscript/loader@npm:^0.9.4":
version: 0.9.4
resolution: "@assemblyscript/loader@npm:0.9.4"
checksum: 10c0/09f0448e3b74cd90dabc86f7578c554ac64fe1ec2e24a167c235c29f36ef4b23671be9bbcff132e9dd9aa446528ec6617732dbf26b71193f5701372f987c2e60
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.26.2":
version: 7.29.0
resolution: "@babel/code-frame@npm:7.29.0"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.28.5"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/d34cc504e7765dfb576a663d97067afb614525806b5cad1a5cc1a7183b916fec8ff57fa233585e3926fd5a9e6b31aae6df91aa81ae9775fb7a28f658d3346f0d
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/helper-string-parser@npm:7.27.1"
checksum: 10c0/8bda3448e07b5583727c103560bcf9c4c24b3c1051a4c516d4050ef69df37bb9a4734a585fe12725b8c2763de0a265aa1e909b485a4e3270b7cfd3e4dbe4b602
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847
languageName: node
linkType: hard
"@babel/parser@npm:^7.29.3":
version: 7.29.3
resolution: "@babel/parser@npm:7.29.3"
dependencies:
"@babel/types": "npm:^7.29.0"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/f06920c819550c0db689e4c5b626bf55ba3cebf80ebe9ccfa434e134036cf3de50951fe759f74abb2dae381989239860bde46d4600328578ad1f7114c3711a6d
languageName: node
linkType: hard
"@babel/types@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/types@npm:7.29.0"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
"@babel/helper-validator-identifier": "npm:^7.28.5"
checksum: 10c0/23cc3466e83bcbfab8b9bd0edaafdb5d4efdb88b82b3be6728bbade5ba2f0996f84f63b1c5f7a8c0d67efded28300898a5f930b171bb40b311bca2029c4e9b4f
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^1.0.2":
version: 1.0.2
resolution: "@bcoe/v8-coverage@npm:1.0.2"
checksum: 10c0/1eb1dc93cc17fb7abdcef21a6e7b867d6aa99a7ec88ec8207402b23d9083ab22a8011213f04b2cf26d535f1d22dc26139b7929e6c2134c254bd1e14ba5e678c3
languageName: node
linkType: hard
"@bitsocial/flags-challenge@workspace:.":
version: 0.0.0-use.local
resolution: "@bitsocial/flags-challenge@workspace:."
dependencies:
"@noble/ed25519": "npm:1.7.5"
"@pkcprotocol/pkc-js": "npm:0.0.37"
"@pkcprotocol/pkc-logger": "npm:0.1.0"
"@release-it/conventional-changelog": "npm:10.0.1"
"@types/node": "npm:24.10.1"
"@vitest/coverage-v8": "npm:4.1.0"
cborg: "npm:4.3.2"
esbuild: "npm:0.27.2"
prettier: "npm:3.8.1"
release-it: "npm:19.2.3"
typescript: "npm:7.0.2"
uint8arrays: "npm:5.1.0"
vitest: "npm:4.1.0"
zod: "npm:4.3.5"
languageName: unknown
linkType: soft
"@chainsafe/as-chacha20poly1305@npm:^0.1.0":
version: 0.1.0
resolution: "@chainsafe/as-chacha20poly1305@npm:0.1.0"
checksum: 10c0/a537dce48829484488c8e55678dec55f8d47b40bf27f0909dfd8d3b49d5a8e154a4a8433e76c787f9a60ef74524137b7f3fbf2bac10a20e698b30cfd6fe22257
languageName: node
linkType: hard
"@chainsafe/as-sha256@npm:^1.2.0":
version: 1.2.4
resolution: "@chainsafe/as-sha256@npm:1.2.4"
checksum: 10c0/70dabaf349c19e7f0e55eeaf3314880396ff2cdf9572c483cf28f133cc236ac550f6d8ec2f760de3786b3d709f85e0c6fae592f342787c5b20805ff4816eba2f
languageName: node
linkType: hard
"@chainsafe/is-ip@npm:^2.0.1, @chainsafe/is-ip@npm:^2.0.2, @chainsafe/is-ip@npm:^2.1.0":
version: 2.1.0
resolution: "@chainsafe/is-ip@npm:2.1.0"
checksum: 10c0/a6c64cfa845979101e808a4398cc7e45ba8ea0a8e30097cdf12306dd084bcc6d92e008221386ae0819f1b53c78bcc634a415537ec970d6ff65cdb62d8445e1d5
languageName: node
linkType: hard
"@chainsafe/libp2p-noise@npm:^17.0.0":
version: 17.0.0
resolution: "@chainsafe/libp2p-noise@npm:17.0.0"
dependencies:
"@chainsafe/as-chacha20poly1305": "npm:^0.1.0"
"@chainsafe/as-sha256": "npm:^1.2.0"
"@libp2p/crypto": "npm:^5.1.9"
"@libp2p/interface": "npm:^3.0.0"
"@libp2p/peer-id": "npm:^6.0.0"
"@libp2p/utils": "npm:^7.0.0"
"@noble/ciphers": "npm:^2.0.1"
"@noble/curves": "npm:^2.0.1"
"@noble/hashes": "npm:^2.0.1"
protons-runtime: "npm:^5.6.0"
uint8arraylist: "npm:^2.4.8"
uint8arrays: "npm:^5.1.0"
wherearewe: "npm:^2.0.1"
checksum: 10c0/7a11df5254336fffbe5ad346b3bcb186e600d74bd59813c6a52e4e72db034dea353452d093497623e5a92203d57df29063544f18f8e7d264a4646bcc739643c2
languageName: node
linkType: hard
"@chainsafe/libp2p-yamux@npm:^8.0.1":
version: 8.0.1
resolution: "@chainsafe/libp2p-yamux@npm:8.0.1"
dependencies:
"@libp2p/interface": "npm:^3.0.0"
"@libp2p/utils": "npm:^7.0.0"
race-signal: "npm:^2.0.0"
uint8arraylist: "npm:^2.4.8"
checksum: 10c0/af225414d080ec313baa4ef3d591acfa757368574bd13e69708497ada3394639a99183c22628d7daa1bddf931b4557139a1e851a69a325dec04b618e10d76b36
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
"@conventional-changelog/git-client@npm:2.7.0, @conventional-changelog/git-client@npm:^2.6.0":
version: 2.7.0
resolution: "@conventional-changelog/git-client@npm:2.7.0"
dependencies:
"@simple-libs/child-process-utils": "npm:^1.0.0"
"@simple-libs/stream-utils": "npm:^1.2.0"
semver: "npm:^7.5.2"
peerDependencies:
conventional-commits-filter: ^5.0.0
conventional-commits-parser: ^6.4.0
peerDependenciesMeta:
conventional-commits-filter:
optional: true
conventional-commits-parser:
optional: true
checksum: 10c0/798097baa08a13311989e803451b9a8e602f404fcde1ec9fef609512625674c2d2a2f4368fbe00754a36f255e5b93dd852e7d3f2a9814215f9887ffa55c93993
languageName: node
linkType: hard
"@dnsquery/dns-packet@npm:^6.1.1":
version: 6.1.1
resolution: "@dnsquery/dns-packet@npm:6.1.1"
dependencies:
"@leichtgewicht/ip-codec": "npm:^2.0.4"
utf8-codec: "npm:^1.0.0"
checksum: 10c0/6df09a06e148ad5869b9b3ca49746f8bda886f70e3959421bc4850a7c27fb856f0f3f7cbe315652a3c5d78060a49748263a49eb64816f524434e1296bf6166fb
languageName: node
linkType: hard
"@emnapi/core@npm:1.10.0":
version: 1.10.0
resolution: "@emnapi/core@npm:1.10.0"
dependencies:
"@emnapi/wasi-threads": "npm:1.2.1"
tslib: "npm:^2.4.0"
checksum: 10c0/f51d08227857b60632de7714d708124f0e100a1462dde6df8221760939aa3204a73193830371830fac0716f3ccd2129f2cac1b17cd7d7958bc4da9018a296edb
languageName: node
linkType: hard
"@emnapi/runtime@npm:1.10.0":
version: 1.10.0
resolution: "@emnapi/runtime@npm:1.10.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/953f14991d1aefb92ee6f8eb27dea725e484791a53a0cb5f47d9e0087b9a2c929ff2e92adf95af15d6ad456db6300c6b761ebf72b50a875b874a83520b3ba093
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.2.1":
version: 1.2.1
resolution: "@emnapi/wasi-threads@npm:1.2.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/32fcfa81ab396533b2ec1f4082b1ff779a05d9c836bbbd3f4398405b0e6814c0d9503b7993130e37bc6941dbc1ded49f55e9700ae9ca4e803bab2b5bc5deb331
languageName: node
linkType: hard
"@enhances/with-resolvers@npm:0.0.5":
version: 0.0.5
resolution: "@enhances/with-resolvers@npm:0.0.5"
checksum: 10c0/eef53c96384e830f1e8ac85bbac2d3e45e54582ec47f3da4c733931f3996a65df39e8dc9118b6f367342c165de427c40f84dbc593f5dcd08711d3b1368cb3599
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/aix-ppc64@npm:0.27.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-arm64@npm:0.27.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-arm@npm:0.27.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/android-x64@npm:0.27.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/darwin-arm64@npm:0.27.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/darwin-x64@npm:0.27.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/freebsd-arm64@npm:0.27.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/freebsd-x64@npm:0.27.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-arm64@npm:0.27.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-arm@npm:0.27.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-ia32@npm:0.27.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-loong64@npm:0.27.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-mips64el@npm:0.27.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-ppc64@npm:0.27.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-riscv64@npm:0.27.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-s390x@npm:0.27.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/linux-x64@npm:0.27.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/netbsd-arm64@npm:0.27.2"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/netbsd-x64@npm:0.27.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/openbsd-arm64@npm:0.27.2"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/openbsd-x64@npm:0.27.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openharmony-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/openharmony-arm64@npm:0.27.2"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/sunos-x64@npm:0.27.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/win32-arm64@npm:0.27.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/win32-ia32@npm:0.27.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.27.2":
version: 0.27.2
resolution: "@esbuild/win32-x64@npm:0.27.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@helia/bitswap@npm:^3.2.3":
version: 3.2.3
resolution: "@helia/bitswap@npm:3.2.3"
dependencies:
"@helia/interface": "npm:^6.2.1"
"@helia/utils": "npm:^2.5.2"
"@libp2p/interface": "npm:^3.2.0"
"@libp2p/logger": "npm:^6.2.4"
"@libp2p/peer-collections": "npm:^7.0.15"
"@libp2p/utils": "npm:^7.0.15"
"@multiformats/multiaddr": "npm:^13.0.1"
any-signal: "npm:^4.2.0"
interface-blockstore: "npm:^6.0.2"
it-drain: "npm:^3.0.12"
it-length-prefixed: "npm:^10.0.1"
it-map: "npm:^3.1.5"
it-pushable: "npm:^3.2.3"
it-take: "npm:^3.0.10"
it-to-buffer: "npm:^4.0.12"
multiformats: "npm:^13.4.2"
p-defer: "npm:^4.0.1"
progress-events: "npm:^1.1.0"
protons-runtime: "npm:^6.0.1"
race-event: "npm:^1.6.1"
uint8-varint: "npm:^2.0.4"
uint8arraylist: "npm:^2.4.8"
uint8arrays: "npm:^5.1.0"
checksum: 10c0/1cb1ea4b5625c66a2c5ec35dea40638983b6180db1dbc552f27273d7f20fcc339bf92b7664ad4db04cb0646c638cc0180486e5853c4e8fc3ad14fbba8ab6da04
languageName: node
linkType: hard
"@helia/block-brokers@npm:5.2.4, @helia/block-brokers@npm:^5.2.4":
version: 5.2.4
resolution: "@helia/block-brokers@npm:5.2.4"
dependencies:
"@helia/bitswap": "npm:^3.2.3"
"@helia/interface": "npm:^6.2.1"
"@helia/utils": "npm:^2.5.2"
"@libp2p/interface": "npm:^3.2.0"
"@libp2p/peer-id": "npm:^6.0.6"
"@libp2p/utils": "npm:^7.0.15"
"@multiformats/multiaddr": "npm:^13.0.1"
"@multiformats/multiaddr-matcher": "npm:^3.0.2"
"@multiformats/multiaddr-to-uri": "npm:^12.0.0"
"@multiformats/uri-to-multiaddr": "npm:^10.0.0"
interface-blockstore: "npm:^6.0.2"
multiformats: "npm:^13.4.2"
progress-events: "npm:^1.1.0"
uint8arraylist: "npm:^2.4.8"
uint8arrays: "npm:^5.1.0"
checksum: 10c0/fe0d5142246a255c79fb856d93c4f5e57f7f08ecc60f63b3cf4bf0f10bd64b5afd428821a6d1ac82da154a94c5ab15a1ef7aa67426de609d4665f095aefd97ce
languageName: node
linkType: hard
"@helia/delegated-routing-v1-http-api-client@npm:6.0.1, @helia/delegated-routing-v1-http-api-client@npm:^6.0.1":
version: 6.0.1
resolution: "@helia/delegated-routing-v1-http-api-client@npm:6.0.1"
dependencies:
"@libp2p/interface": "npm:^3.0.2"
"@libp2p/peer-id": "npm:^6.0.3"
"@multiformats/multiaddr": "npm:^13.0.1"
any-signal: "npm:^4.1.1"
browser-readablestream-to-it: "npm:^2.0.9"
ipns: "npm:^10.0.2"
it-first: "npm:^3.0.8"
it-map: "npm:^3.1.3"
it-ndjson: "npm:^1.1.3"
multiformats: "npm:^13.3.6"
p-defer: "npm:^4.0.1"
p-queue: "npm:^9.0.0"
uint8arrays: "npm:^5.1.0"
checksum: 10c0/bbff1219eb175651a75564d5fda555c0cfeac24ac52e9cd67109f92dabd27a70bc2de5eba172eb61fe2613a3975c6b6aa6fc459b93900006dcaecfaaeadc233c
languageName: node
linkType: hard
"@helia/interface@npm:^6.2.1":
version: 6.2.1
resolution: "@helia/interface@npm:6.2.1"
dependencies:
"@libp2p/interface": "npm:^3.2.0"
"@multiformats/dns": "npm:^1.0.13"
"@multiformats/multiaddr": "npm:^13.0.1"
interface-blockstore: "npm:^6.0.2"
interface-datastore: "npm:^9.0.3"
interface-store: "npm:^7.0.2"
multiformats: "npm:^13.4.2"
progress-events: "npm:^1.1.0"
checksum: 10c0/ffd8b05d774aa61c87c764bc739c8dc1ac321ecdd492e93b6e6ca3537568b2282b86dd27dc831aee2b379809ca35a8d9994f9f117f268a6fc96d577d5d5e0c01
languageName: node
linkType: hard
"@helia/ipns@npm:9.2.1":
version: 9.2.1
resolution: "@helia/ipns@npm:9.2.1"
dependencies:
"@helia/interface": "npm:^6.2.1"
"@libp2p/crypto": "npm:^5.1.15"
"@libp2p/fetch": "npm:^4.1.0"
"@libp2p/interface": "npm:^3.2.0"
"@libp2p/kad-dht": "npm:^16.2.0"
"@libp2p/keychain": "npm:^6.0.12"
"@libp2p/logger": "npm:^6.2.4"
"@libp2p/peer-collections": "npm:^7.0.15"
"@libp2p/utils": "npm:^7.0.15"
any-signal: "npm:^4.2.0"
delay: "npm:^7.0.0"
interface-datastore: "npm:^9.0.3"
ipns: "npm:^10.1.3"
multiformats: "npm:^13.4.2"
progress-events: "npm:^1.1.0"
protons-runtime: "npm:^6.0.1"
race-signal: "npm:^2.0.0"
uint8arraylist: "npm:^2.4.8"
uint8arrays: "npm:^5.1.0"
checksum: 10c0/1325cb80765edf02ebe6aa1733804ba87e007573e18c8c56524ab3883750c093994764c7a82349ecdeb4cbc8436d9a61a50f848ce4775bd860717aedfcbe25d0
languageName: node
linkType: hard
"@helia/routers@npm:^5.1.1":
version: 5.1.1
resolution: "@helia/routers@npm:5.1.1"
dependencies:
"@helia/delegated-routing-v1-http-api-client": "npm:^6.0.1"
"@helia/interface": "npm:^6.2.1"
"@libp2p/interface": "npm:^3.2.0"
"@libp2p/peer-id": "npm:^6.0.6"
"@multiformats/uri-to-multiaddr": "npm:^10.0.0"
ipns: "npm:^10.1.3"
it-first: "npm:^3.0.11"
it-map: "npm:^3.1.5"
multiformats: "npm:^13.4.2"
uint8arrays: "npm:^5.1.0"
checksum: 10c0/c8a75ff5b58e4cd98960ce0bf3fd5efc1e2473c87f76da90a9a13165d9958916aa288ebec90e646c1dd3edab91d18017f1c243d1f7dd48ae3995e4fc752816a9
languageName: node
linkType: hard
"@helia/unixfs@npm:7.2.1":
version: 7.2.1
resolution: "@helia/unixfs@npm:7.2.1"
dependencies:
"@helia/interface": "npm:^6.2.1"
"@ipld/dag-pb": "npm:^4.1.5"
"@libp2p/interface": "npm:^3.2.0"
"@libp2p/logger": "npm:^6.2.4"
"@libp2p/utils": "npm:^7.0.15"
"@multiformats/murmur3": "npm:^2.2.2"
interface-blockstore: "npm:^6.0.2"
ipfs-unixfs: "npm:^12.0.1"
ipfs-unixfs-exporter: "npm:^15.0.4"
ipfs-unixfs-importer: "npm:^16.1.4"
it-all: "npm:^3.0.11"
it-first: "npm:^3.0.11"
it-glob: "npm:^3.0.5"
it-last: "npm:^3.0.11"
it-pipe: "npm:^3.0.1"
it-to-buffer: "npm:^4.0.12"
multiformats: "npm:^13.4.2"
progress-events: "npm:^1.1.0"
sparse-array: "npm:^1.3.2"
uint8arrays: "npm:^5.1.0"
checksum: 10c0/7f67ed31702d46b54caf74af8842775845b9e55064b3d98f42dcb6e0a7a01c00479e1766f870f6e55dc3cf5b3d80d7870d16eba34e8bde6883eaf6336032a8bc
languageName: node
linkType: hard
"@helia/utils@npm:^2.5.2":
version: 2.5.2
resolution: "@helia/utils@npm:2.5.2"
dependencies:
"@helia/interface": "npm:^6.2.1"
"@ipld/dag-cbor": "npm:^9.2.6"
"@ipld/dag-json": "npm:^10.2.7"
"@ipld/dag-pb": "npm:^4.1.5"
"@libp2p/interface": "npm:^3.2.0"
"@libp2p/keychain": "npm:^6.0.12"
"@libp2p/utils": "npm:^7.0.15"
"@multiformats/dns": "npm:^1.0.13"
"@multiformats/multiaddr": "npm:^13.0.1"
any-signal: "npm:^4.2.0"
blockstore-core: "npm:^6.1.3"
cborg: "npm:^5.1.0"
interface-blockstore: "npm:^6.0.2"
interface-datastore: "npm:^9.0.3"
interface-store: "npm:^7.0.2"
it-drain: "npm:^3.0.12"
it-filter: "npm:^3.1.5"
it-foreach: "npm:^2.1.6"
it-merge: "npm:^3.0.13"
it-to-buffer: "npm:^4.0.12"
libp2p: "npm:^3.2.0"
mortice: "npm:^3.3.1"
multiformats: "npm:^13.4.2"
p-defer: "npm:^4.0.1"
progress-events: "npm:^1.1.0"
race-signal: "npm:^2.0.0"
uint8arrays: "npm:^5.1.0"
checksum: 10c0/340daac484dbc50ca25de6ff42694aeb44b1c8d87bc6926bfef9756870bdc2bc944c44a42127fea2a19755bac3b630d61a3199b5f0fc79492314affff806d885
languageName: node
linkType: hard
"@hutson/parse-repository-url@npm:^5.0.0":
version: 5.0.0
resolution: "@hutson/parse-repository-url@npm:5.0.0"
checksum: 10c0/068c5c9e38fecc10e3aa6f6eee5818db6f3f29a70d01fec64e9ec0ee985e8995a0cf79ec5f7c80530f1fb27d99668ee2f38d8929b712b82d5100ebd2c9153e85
languageName: node
linkType: hard
"@inquirer/ansi@npm:^1.0.2":
version: 1.0.2
resolution: "@inquirer/ansi@npm:1.0.2"
checksum: 10c0/8e408cc628923aa93402e66657482ccaa2ad5174f9db526d9a8b443f9011e9cd8f70f0f534f5fe3857b8a9df3bce1e25f66c96f666d6750490bd46e2b4f3b829
languageName: node
linkType: hard
"@inquirer/checkbox@npm:^4.3.2":
version: 4.3.2
resolution: "@inquirer/checkbox@npm:4.3.2"
dependencies:
"@inquirer/ansi": "npm:^1.0.2"
"@inquirer/core": "npm:^10.3.2"
"@inquirer/figures": "npm:^1.0.15"
"@inquirer/type": "npm:^3.0.10"
yoctocolors-cjs: "npm:^2.1.3"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/771d23bc6b16cd5c21a4f1073e98e306147f90c0e2487fe887ee054b8bf86449f1f9e6e6f9c218c1aa45ae3be2533197d53654abe9c0545981aebb0920d5f471
languageName: node
linkType: hard
"@inquirer/confirm@npm:^5.1.21":
version: 5.1.21
resolution: "@inquirer/confirm@npm:5.1.21"
dependencies:
"@inquirer/core": "npm:^10.3.2"
"@inquirer/type": "npm:^3.0.10"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/a95bbdbb17626c484735a4193ed6b6a6fbb078cf62116ec8e1667f647e534dd6618e688ecc7962585efcc56881b544b8c53db3914599bbf2ab842e7f224b0fca
languageName: node
linkType: hard
"@inquirer/core@npm:^10.3.2":
version: 10.3.2
resolution: "@inquirer/core@npm:10.3.2"
dependencies:
"@inquirer/ansi": "npm:^1.0.2"
"@inquirer/figures": "npm:^1.0.15"
"@inquirer/type": "npm:^3.0.10"
cli-width: "npm:^4.1.0"
mute-stream: "npm:^2.0.0"
signal-exit: "npm:^4.1.0"
wrap-ansi: "npm:^6.2.0"
yoctocolors-cjs: "npm:^2.1.3"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/f0f27e07fe288e01e3949b4ad216c19751f025ce77c610366e08d8b0f7a135d064dc074732031d251584b454c576f1e5c849e4abe259186dd5d4974c8f85c13e
languageName: node
linkType: hard
"@inquirer/editor@npm:^4.2.23":
version: 4.2.23
resolution: "@inquirer/editor@npm:4.2.23"
dependencies:
"@inquirer/core": "npm:^10.3.2"
"@inquirer/external-editor": "npm:^1.0.3"
"@inquirer/type": "npm:^3.0.10"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/aa02028ee35ae039a4857b6a9490d295a1b3558f042e7454dee0aa36fbc83ac25586a2dfe0b46a5ea7ea151e3f5cb97a8ee6229131b4619f3b3466ad74b9519f
languageName: node
linkType: hard
"@inquirer/expand@npm:^4.0.23":
version: 4.0.23
resolution: "@inquirer/expand@npm:4.0.23"
dependencies:
"@inquirer/core": "npm:^10.3.2"
"@inquirer/type": "npm:^3.0.10"
yoctocolors-cjs: "npm:^2.1.3"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/294c92652760c3d1a46c4b900a99fd553ea9e5734ba261d4e71d7b8499d86a8b15e38a2467ddb7c95c197daf7e472bdab209fc3f7c38cbc70842cd291f4ce39d
languageName: node
linkType: hard
"@inquirer/external-editor@npm:^1.0.3":
version: 1.0.3
resolution: "@inquirer/external-editor@npm:1.0.3"
dependencies:
chardet: "npm:^2.1.1"
iconv-lite: "npm:^0.7.0"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/82951cb7f3762dd78cca2ea291396841e3f4adfe26004b5badfed1cec4b6a04bb567dff94d0e41b35c61bdd7957317c64c22f58074d14b238d44e44d9e420019
languageName: node
linkType: hard
"@inquirer/figures@npm:^1.0.15":
version: 1.0.15
resolution: "@inquirer/figures@npm:1.0.15"
checksum: 10c0/6e39a040d260ae234ae220180b7994ff852673e20be925f8aa95e78c7934d732b018cbb4d0ec39e600a410461bcb93dca771e7de23caa10630d255692e440f69
languageName: node
linkType: hard
"@inquirer/input@npm:^4.3.1":
version: 4.3.1
resolution: "@inquirer/input@npm:4.3.1"
dependencies:
"@inquirer/core": "npm:^10.3.2"
"@inquirer/type": "npm:^3.0.10"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/9e81d6ae56e5b59f96475ae1327e7e7beeef0d917b83762e0c2ed5a75239ad6b1a39fc05553ce45fe6f6de49681dade8704b5f1c11c2f555663a74d0ac998af3
languageName: node
linkType: hard
"@inquirer/number@npm:^3.0.23":
version: 3.0.23
resolution: "@inquirer/number@npm:3.0.23"
dependencies:
"@inquirer/core": "npm:^10.3.2"
"@inquirer/type": "npm:^3.0.10"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/3944a524be2a2e0834822a0e483f2e2fd56ad597b5feeca2155b956821f88e22e07ce3816f66113b040601636ed7146865aee7d7afb2a06939acc77491330ccc
languageName: node
linkType: hard
"@inquirer/password@npm:^4.0.23":
version: 4.0.23
resolution: "@inquirer/password@npm:4.0.23"
dependencies:
"@inquirer/ansi": "npm:^1.0.2"
"@inquirer/core": "npm:^10.3.2"
"@inquirer/type": "npm:^3.0.10"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/9fd3d0462d02735bb1521c4e221d057a94d9aaac308e9a192e59d6c1e8efc707c2376ab627151d589bc3633f6b14b74b60b91c3d473a32adfd100ef1f6cfdef7
languageName: node
linkType: hard
"@inquirer/prompts@npm:^7.10.1":
version: 7.10.1
resolution: "@inquirer/prompts@npm:7.10.1"
dependencies:
"@inquirer/checkbox": "npm:^4.3.2"
"@inquirer/confirm": "npm:^5.1.21"
"@inquirer/editor": "npm:^4.2.23"
"@inquirer/expand": "npm:^4.0.23"
"@inquirer/input": "npm:^4.3.1"
"@inquirer/number": "npm:^3.0.23"
"@inquirer/password": "npm:^4.0.23"
"@inquirer/rawlist": "npm:^4.1.11"
"@inquirer/search": "npm:^3.2.2"
"@inquirer/select": "npm:^4.4.2"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/eac309cc75712bc94fc8b6761d6a736786ca1942cf9c90805b2a6049a05ce6131bcfb3aa703d1dbe66874d1b78c2b446044ad9735a2bb76743b8ddcb3dcb4d2a
languageName: node
linkType: hard
"@inquirer/rawlist@npm:^4.1.11":
version: 4.1.11
resolution: "@inquirer/rawlist@npm:4.1.11"
dependencies:
"@inquirer/core": "npm:^10.3.2"
"@inquirer/type": "npm:^3.0.10"
yoctocolors-cjs: "npm:^2.1.3"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/33792b40cd0fbf77f547c9c4805087dd1188342c6a5ca512c73b0b6c4d132225fc5ae8bc4fd5035309484da3698a90fcef17aad100b9ae57624fda7b07d92227
languageName: node
linkType: hard
"@inquirer/search@npm:^3.2.2":
version: 3.2.2
resolution: "@inquirer/search@npm:3.2.2"
dependencies:
"@inquirer/core": "npm:^10.3.2"
"@inquirer/figures": "npm:^1.0.15"
"@inquirer/type": "npm:^3.0.10"
yoctocolors-cjs: "npm:^2.1.3"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/e7849663a51fe95e3ce99d274c815b8dc8933d6a5ddcaaf6130bf43f5f10316062c9f7a37c2923a14b8dcd09d202b0bb9cc3eaf0adb0336f6a704ea52e03ef8c
languageName: node
linkType: hard
"@inquirer/select@npm:^4.4.2":
version: 4.4.2
resolution: "@inquirer/select@npm:4.4.2"
dependencies:
"@inquirer/ansi": "npm:^1.0.2"
"@inquirer/core": "npm:^10.3.2"
"@inquirer/figures": "npm:^1.0.15"
"@inquirer/type": "npm:^3.0.10"
yoctocolors-cjs: "npm:^2.1.3"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/6978a5a92928b4d439dd6b688f2db51fd49be209f24be224bb81ed8f75b76e0715e79bdb05dab2a33bbdc7091c779a99f8603fe0ca199f059528ca2b1d0d4944
languageName: node
linkType: hard
"@inquirer/type@npm:^3.0.10":
version: 3.0.10
resolution: "@inquirer/type@npm:3.0.10"
peerDependencies:
"@types/node": ">=18"
peerDependenciesMeta:
"@types/node":
optional: true
checksum: 10c0/a846c7a570e3bf2657d489bcc5dcdc3179d24c7323719de1951dcdb722400ac76e5b2bfe9765d0a789bc1921fac810983d7999f021f30a78a6a174c23fc78dc9
languageName: node
linkType: hard
"@ipld/dag-cbor@npm:^9.0.0, @ipld/dag-cbor@npm:^9.2.4, @ipld/dag-cbor@npm:^9.2.6":
version: 9.2.7
resolution: "@ipld/dag-cbor@npm:9.2.7"
dependencies:
cborg: "npm:^5.0.1"
multiformats: "npm:^13.1.0"
checksum: 10c0/2f55d0826737256fb473eda30a3352503a4bb76d1a1491933c4e71511539f55e82be63dea43ff032228a7cc7d3cb4a7e64d7aaef189638428d3179e82a692654
languageName: node
linkType: hard
"@ipld/dag-json@npm:^10.0.0, @ipld/dag-json@npm:^10.2.5, @ipld/dag-json@npm:^10.2.7":
version: 10.2.9
resolution: "@ipld/dag-json@npm:10.2.9"
dependencies:
cborg: "npm:^5.0.0"
multiformats: "npm:^13.1.0"
checksum: 10c0/28b61c64b4ecc1527e3b11ca9c5418b8e55174cfdcd78a5994013f9614086d6cd68db29ea531c9b3470484a3cc629953d847189edfc86d39a2b32a936c7d5ad0
languageName: node
linkType: hard
"@ipld/dag-pb@npm:^4.0.0, @ipld/dag-pb@npm:^4.1.5":
version: 4.1.7
resolution: "@ipld/dag-pb@npm:4.1.7"
dependencies:
multiformats: "npm:^14.0.0"
checksum: 10c0/93c68778c05749f021393c2a98f7966700ab921216ca632c7dded7ae8191e98770dafe15623755d4ea04c690d73d3980ef3b2ca08448fb7950353d071bdad133
languageName: node
linkType: hard
"@ipshipyard/libp2p-auto-tls@npm:^2.0.1":
version: 2.0.1
resolution: "@ipshipyard/libp2p-auto-tls@npm:2.0.1"
dependencies:
"@chainsafe/is-ip": "npm:^2.0.2"
"@libp2p/crypto": "npm:^5.0.9"
"@libp2p/http": "npm:^2.0.0"
"@libp2p/interface": "npm:^3.0.2"
"@libp2p/interface-internal": "npm:^3.0.4"
"@libp2p/keychain": "npm:^6.0.4"
"@libp2p/utils": "npm:^7.0.4"
"@multiformats/multiaddr": "npm:^13.0.1"
"@multiformats/multiaddr-matcher": "npm:^3.0.1"
"@peculiar/x509": "npm:^1.12.3"
acme-client: "npm:^5.4.0"
any-signal: "npm:^4.1.1"
delay: "npm:^6.0.0"
interface-datastore: "npm:^9.0.2"
multiformats: "npm:^13.3.1"
uint8arrays: "npm:^5.1.0"
checksum: 10c0/b6987ca75da7d3bcfa4f1e6b26398dcc5934307c77dd4e0da19e36416b3129d734e67745ab67c3f23fd1043538334c7727873d59c61cefe63b7c598719b87076
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.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.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.31":
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
"@leichtgewicht/ip-codec@npm:^2.0.1, @leichtgewicht/ip-codec@npm:^2.0.4":
version: 2.0.5
resolution: "@leichtgewicht/ip-codec@npm:2.0.5"
checksum: 10c0/14a0112bd59615eef9e3446fea018045720cd3da85a98f801a685a818b0d96ef2a1f7227e8d271def546b2e2a0fe91ef915ba9dc912ab7967d2317b1a051d66b
languageName: node
linkType: hard
"@libp2p/autonat@npm:^3.0.15":
version: 3.0.20
resolution: "@libp2p/autonat@npm:3.0.20"
dependencies:
"@libp2p/interface": "npm:^3.2.2"
"@libp2p/interface-internal": "npm:^3.1.5"
"@libp2p/peer-collections": "npm:^7.0.20"
"@libp2p/peer-id": "npm:^6.0.9"
"@libp2p/utils": "npm:^7.2.1"
"@multiformats/multiaddr": "npm:^13.0.1"
any-signal: "npm:^4.1.1"
main-event: "npm:^1.0.1"
multiformats: "npm:^13.4.0"
protons-runtime: "npm:^6.0.1"
uint8arraylist: "npm:^2.4.8"
checksum: 10c0/37fd631a4378a420e37fdd92d77641a13aba1d59685b86f8e4e21147ac47122c1b701cf5ab3141c2587b46e0d902e9ebe36ce1cc93bcd6581ecf5ede11d91335
languageName: node
linkType: hard