forked from synonymdev/slashtags-widget-facts-feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
1388 lines (1388 loc) · 56.4 KB
/
package-lock.json
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
{
"name": "slashtags-widget-facts-feed",
"version": "1.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "slashtags-widget-facts-feed",
"version": "1.0.1",
"license": "MIT",
"dependencies": {
"@synonymdev/feeds": "^1.0.0-alpha.5",
"@synonymdev/slashtags-url": "^1.0.0-alpha.2"
}
},
"node_modules/@hyperswarm/dht": {
"version": "6.3.2",
"resolved": "https://registry.npmjs.org/@hyperswarm/dht/-/dht-6.3.2.tgz",
"integrity": "sha512-1wI0uJpl9hO7vzPVP/cIxxGAs3QeUhb96PuNPvc+I+GrEpCMWxd+oGMsmq3ClbzMXexlPkoFeILB9PnbVNnzxQ==",
"dependencies": {
"@hyperswarm/secret-stream": "^6.0.0",
"b4a": "^1.3.1",
"bogon": "^1.0.0",
"compact-encoding": "^2.4.1",
"compact-encoding-net": "^1.0.1",
"debugging-stream": "^2.0.0",
"dht-rpc": "^6.3.0",
"events": "^3.3.0",
"hypercore-crypto": "^3.3.0",
"noise-curve-ed": "^2.0.0",
"noise-handshake": "^3.0.0",
"record-cache": "^1.1.1",
"safety-catch": "^1.0.1",
"sodium-universal": "^3.0.4",
"udx-native": "^1.5.1",
"xache": "^1.1.0"
},
"bin": {
"hyperswarm-dht": "bin.js"
}
},
"node_modules/@hyperswarm/secret-stream": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@hyperswarm/secret-stream/-/secret-stream-6.1.0.tgz",
"integrity": "sha512-6GjmdrYxZgJYGi8Ji7AZoqmmwQXSR9ByERkMPatcC5FMYgx9n5lDkwgKRK7faPQHpgtwjg2oLCrFveyGRLHV5g==",
"dependencies": {
"b4a": "^1.1.0",
"hypercore-crypto": "^3.3.0",
"noise-curve-ed": "^2.0.0",
"noise-handshake": "^3.0.0",
"sodium-secretstream": "^1.0.0",
"sodium-universal": "^3.0.4",
"streamx": "^2.10.2",
"timeout-refresh": "^2.0.0"
}
},
"node_modules/@synonymdev/feeds": {
"version": "1.0.0-alpha.5",
"resolved": "https://registry.npmjs.org/@synonymdev/feeds/-/feeds-1.0.0-alpha.5.tgz",
"integrity": "sha512-4Bc9fnLGUn/vzB4cHEBKA/Hp6XI7mX9BUACmmrbhYjph1Ts2pbuIeZzYB2GRJnBl78xxgO9g4hR3nF/zPIemSA==",
"dependencies": {
"b4a": "^1.5.3",
"corestore": "^6.2.0",
"hyperdrive": "github:Nazeh/hyperdrive-next#pass-options",
"hyperswarm": "^4.2.0",
"sodium-universal": "^3.1.0"
}
},
"node_modules/@synonymdev/slashtags-url": {
"version": "1.0.0-alpha.2",
"resolved": "https://registry.npmjs.org/@synonymdev/slashtags-url/-/slashtags-url-1.0.0-alpha.2.tgz",
"integrity": "sha512-1dqGL4pi49CKjcUjctz1McWR+kRlmfK54QE8hZ+XWTic1zmW9G4dO70ktBZX7iYOT3b80BrQ56ncmeR4YzPn0A==",
"dependencies": {
"b4a": "^1.6.0",
"z32": "^1.0.0"
}
},
"node_modules/b4a": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.1.tgz",
"integrity": "sha512-AsKjNhz72yxteo/0EtQEiwkMUgk/tGmycXlbG4g3Ard2/ULtNLUykGOkeK0egmN27h0xMAhb76jYccW+XTBExA=="
},
"node_modules/big-sparse-array": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/big-sparse-array/-/big-sparse-array-1.0.2.tgz",
"integrity": "sha512-LtfhxpUzrTtT6jQbRNTvV1Nql1EHhxsylggtjO6NWfuwCpXxyabY6uZQ+jQDLIrPmpJG+XOHN7qGZXySt6Sb+g=="
},
"node_modules/blake2b": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/blake2b/-/blake2b-2.1.4.tgz",
"integrity": "sha512-AyBuuJNI64gIvwx13qiICz6H6hpmjvYS5DGkG6jbXMOT8Z3WUJ3V1X0FlhIoT1b/5JtHE3ki+xjtMvu1nn+t9A==",
"dependencies": {
"blake2b-wasm": "^2.4.0",
"nanoassert": "^2.0.0"
}
},
"node_modules/blake2b-wasm": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-2.4.0.tgz",
"integrity": "sha512-S1kwmW2ZhZFFFOghcx73+ZajEfKBqhP82JMssxtLVMxlaPea1p9uoLiUZ5WYyHn0KddwbLc+0vh4wR0KBNoT5w==",
"dependencies": {
"b4a": "^1.0.1",
"nanoassert": "^2.0.0"
}
},
"node_modules/bogon": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/bogon/-/bogon-1.1.0.tgz",
"integrity": "sha512-a6SnToksXHuUlgeMvI/txWmTcKz7c7iBa8f0HbXL4toN1Uza/CTQ4F7n9jSDX49TCpxv3KUP100q4sZfwLyLiw==",
"dependencies": {
"compact-encoding": "^2.11.0",
"compact-encoding-net": "^1.2.0"
}
},
"node_modules/call-me-maybe": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz",
"integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ=="
},
"node_modules/chacha20-universal": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/chacha20-universal/-/chacha20-universal-1.0.4.tgz",
"integrity": "sha512-/IOxdWWNa7nRabfe7+oF+jVkGjlr2xUL4J8l/OvzZhj+c9RpMqoo3Dq+5nU1j/BflRV4BKnaQ4+4oH1yBpQG1Q==",
"dependencies": {
"nanoassert": "^2.0.0"
}
},
"node_modules/codecs": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/codecs/-/codecs-2.2.0.tgz",
"integrity": "sha512-+xi2ENsvchtUNa8oBUU58gHgmyN6BEEeZ8NIEgeQ0XnC+AoyihivgZYe+OOiNi+fLy/NUowugwV5gP8XWYDm0Q=="
},
"node_modules/compact-encoding": {
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/compact-encoding/-/compact-encoding-2.11.0.tgz",
"integrity": "sha512-CRfTuyy9Tg7EwxNKvIq3yFIr2JnJLyVr9Yj234VsDCL59hdXcZH3TdzY/2kwbAqVogIoRBJjnNKCEnXbxTIEeg==",
"dependencies": {
"b4a": "^1.3.0"
}
},
"node_modules/compact-encoding-net": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/compact-encoding-net/-/compact-encoding-net-1.2.0.tgz",
"integrity": "sha512-LVXpNpF7PGQeHRVVLGgYWzuVoYAaDZvKUsUxRioGfkotzvOh4AzoQF1HBH3zMNaSnx7gJXuUr3hkjnijaH/Eng==",
"dependencies": {
"compact-encoding": "^2.4.1"
}
},
"node_modules/corestore": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/corestore/-/corestore-6.2.0.tgz",
"integrity": "sha512-4A6kQkTM8lXGVHDY+dJLBe3TtEKRFnbroVYma6W1h4KwSQDNyAj3HaXK7RUZfm3wNliOHti8PowHgIBhEbX2Hg==",
"dependencies": {
"b4a": "^1.3.1",
"hypercore": "^10.3.1",
"hypercore-crypto": "^3.2.1",
"safety-catch": "^1.0.1",
"sodium-universal": "^3.0.4",
"xache": "^1.1.0"
}
},
"node_modules/crc-universal": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/crc-universal/-/crc-universal-1.0.2.tgz",
"integrity": "sha512-RrQ/8bT3WKNsGQuHWV3wf3Y0SUJTa8GADrkrQ1gsDljJLs8h/ENJRFUkL3z1TRWas80gv3Kdo6z1IPYyVJ/sxQ==",
"dependencies": {
"node-gyp-build": "^4.5.0"
}
},
"node_modules/debugging-stream": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/debugging-stream/-/debugging-stream-2.0.0.tgz",
"integrity": "sha512-xwfl6wB/3xc553uwtGnSa94jFxnGOc02C0WU2Nmzwr80gzeqn1FX4VcbvoKIhe8L/lPq4BTQttAbrTN94uN8rA==",
"dependencies": {
"streamx": "^2.12.4"
}
},
"node_modules/dht-rpc": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/dht-rpc/-/dht-rpc-6.3.0.tgz",
"integrity": "sha512-mJBX6DPEp5wwg42yzeoLkwM4PSewwZ+50VfchT3Bc26qY45ESQZ7J9cIuatRNkPt8MXdxQw0AaOoIw0NwmC8KA==",
"dependencies": {
"b4a": "^1.3.1",
"compact-encoding": "^2.1.0",
"compact-encoding-net": "^1.0.1",
"events": "^3.3.0",
"fast-fifo": "^1.0.0",
"kademlia-routing-table": "^1.0.0",
"nat-sampler": "^1.0.1",
"sodium-universal": "^3.0.4",
"streamx": "^2.10.3",
"time-ordered-set": "^1.0.2",
"udx-native": "^1.2.0"
}
},
"node_modules/events": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
"engines": {
"node": ">=0.8.x"
}
},
"node_modules/fast-fifo": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.1.0.tgz",
"integrity": "sha512-Kl29QoNbNvn4nhDsLYjyIAaIqaJB6rBx5p3sL9VjaefJ+eMFBWVZiaoguaoZfzEKr5RhAti0UgM8703akGPJ6g=="
},
"node_modules/flat-tree": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/flat-tree/-/flat-tree-1.9.0.tgz",
"integrity": "sha512-WRu5/q9fcdL9f7L6Ahq8fR153e5Zr5aU6plPHupN6JDWuvEJbMjrEQprge3/I7ytndHC6/GUNg5Rg8XEisuv5w=="
},
"node_modules/fs-native-extensions": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/fs-native-extensions/-/fs-native-extensions-1.1.0.tgz",
"integrity": "sha512-9gLlh5J2EJIoyb5F+UMcVo9Nd1XZo1ha48gqhrYybsl3ve1zcyLZ5irL5f4DAoOWRQobs5nkNdlGhwgI21K+eg==",
"hasInstallScript": true,
"optional": true,
"dependencies": {
"napi-macros": "^2.0.0",
"node-gyp-build": "^4.2.3"
}
},
"node_modules/function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
},
"node_modules/has": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
"dependencies": {
"function-bind": "^1.1.1"
},
"engines": {
"node": ">= 0.4.0"
}
},
"node_modules/hmac-blake2b": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/hmac-blake2b/-/hmac-blake2b-2.0.0.tgz",
"integrity": "sha512-JbGNtM1YRd8EQH/2vNTAP1oy5lJVPlBFYZfCJTu3k8sqOUm0rRIf/3+MCd5noVykETwTbun6jEOc+4Tu78ubHA==",
"dependencies": {
"nanoassert": "^1.1.0",
"sodium-native": "^3.1.1",
"sodium-universal": "^3.0.0"
}
},
"node_modules/hmac-blake2b/node_modules/nanoassert": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz",
"integrity": "sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ=="
},
"node_modules/hyperbee": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/hyperbee/-/hyperbee-1.10.1.tgz",
"integrity": "sha512-c9FByHIy6TG4rkjlfXFo1p1EDotBMsrwZh+BkUPNKsOsWWy010SVS9MPKV78EtnRBGN/7NsdEIdDxNIvgffRRA==",
"dependencies": {
"codecs": "^2.1.0",
"hypercore-promisifier": "^1.0.1",
"mutexify": "^1.3.1",
"protocol-buffers-encodings": "^1.1.0",
"streamx": "^2.6.6"
}
},
"node_modules/hyperblobs": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/hyperblobs/-/hyperblobs-2.0.0.tgz",
"integrity": "sha512-bssSdsqP6u0dk5K0C14VLW3IYhVdbgOJZYmVEbl18rbPOgG/cXPNzw16GvA35nVoW9p4YfqDqWlVcn3yr/za+Q==",
"dependencies": {
"mutexify": "^1.4.0",
"streamx": "^2.12.4"
}
},
"node_modules/hypercore": {
"version": "10.4.1",
"resolved": "https://registry.npmjs.org/hypercore/-/hypercore-10.4.1.tgz",
"integrity": "sha512-jYphPGZiFEJ8MWllntwqcb77UQ1yTxc1rhBNr882B3XJU4s0uQTqzEUc4eDoOznc9Vl1ByWmegtlxIRjVHmwNA==",
"dependencies": {
"@hyperswarm/secret-stream": "^6.0.0",
"b4a": "^1.1.0",
"big-sparse-array": "^1.0.2",
"compact-encoding": "^2.11.0",
"crc-universal": "^1.0.2",
"events": "^3.3.0",
"flat-tree": "^1.9.0",
"hypercore-crypto": "^3.2.1",
"is-options": "^1.0.1",
"protomux": "^3.4.0",
"quickbit-universal": "^2.0.3",
"random-access-file": "^4.0.0",
"random-array-iterator": "^1.0.0",
"safety-catch": "^1.0.1",
"sodium-universal": "^3.0.4",
"streamx": "^2.12.4",
"xache": "^1.1.0",
"z32": "^1.0.0"
}
},
"node_modules/hypercore-crypto": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/hypercore-crypto/-/hypercore-crypto-3.3.0.tgz",
"integrity": "sha512-zAWbDqG7kWwS6rCxxTUeB/OeFAz3PoOmouKaoMubtDJYJsLHqXtA3wE2mLsw+E2+iYyom5zrFyBTFVYxmgwW6g==",
"dependencies": {
"b4a": "^1.1.0",
"compact-encoding": "^2.5.1",
"sodium-universal": "^3.0.0"
}
},
"node_modules/hypercore-promisifier": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/hypercore-promisifier/-/hypercore-promisifier-1.1.0.tgz",
"integrity": "sha512-W4W+fhbWZ5ydLjiAwydXD0yBe9b5cHafoyedVyQ2L8PEsGCeYEr4Efrq/Fyaa/0dheNJvfJGTOs0c36FPweDnw==",
"dependencies": {
"call-me-maybe": "^1.0.1",
"inspect-custom-symbol": "^1.1.1"
}
},
"node_modules/hyperdrive": {
"version": "11.0.0-alpha.3",
"resolved": "git+ssh://git@github.com/Nazeh/hyperdrive-next.git#05698cd9b05d34600ab7e73bb2a8879f4f770648",
"license": "MIT",
"dependencies": {
"hyperbee": "^1.10.1",
"hyperblobs": "^2.0.0",
"is-options": "^1.0.2",
"streamx": "^2.12.4",
"unix-path-resolve": "^1.0.2"
}
},
"node_modules/hyperswarm": {
"version": "4.3.5",
"resolved": "https://registry.npmjs.org/hyperswarm/-/hyperswarm-4.3.5.tgz",
"integrity": "sha512-vX5VPpRmN9cbDOJ3p+Jn/+V8ilJmkBYkmehM9oZEZZdtXZV5SfIPA7OMaN9NfXTuRKlxVGHr00S724Ct7BGK/Q==",
"dependencies": {
"@hyperswarm/dht": "^6.0.1",
"b4a": "^1.3.1",
"events": "^3.3.0",
"safety-catch": "^1.0.2",
"shuffled-priority-queue": "^2.1.0"
}
},
"node_modules/inspect-custom-symbol": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/inspect-custom-symbol/-/inspect-custom-symbol-1.1.1.tgz",
"integrity": "sha512-GOucsp9EcdlLdhPUyOTvQDnbFJtp2WBWZV1Jqe+mVnkJQBL3w96+fB84C+JL+EKXOspMdB0eMDQPDp5w9fkfZA=="
},
"node_modules/is-core-module": {
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz",
"integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==",
"dependencies": {
"has": "^1.0.3"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-options": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-options/-/is-options-1.0.2.tgz",
"integrity": "sha512-u+Ai74c8Q74aS8BuHwPdI1jptGOT1FQXgCq8/zv0xRuE+wRgSMEJLj8lVO8Zp9BeGb29BXY6AsNPinfqjkr7Fg==",
"dependencies": {
"b4a": "^1.1.1"
}
},
"node_modules/kademlia-routing-table": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/kademlia-routing-table/-/kademlia-routing-table-1.0.1.tgz",
"integrity": "sha512-dKk19sC3/+kWhBIvOKCthxVV+JH0NrswSBq4sA4eOkkPMqQM1rRuOWte1WSKXeP8r9Nx4NuiH2gny3lMddJTpw=="
},
"node_modules/mutexify": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/mutexify/-/mutexify-1.4.0.tgz",
"integrity": "sha512-pbYSsOrSB/AKN5h/WzzLRMFgZhClWccf2XIB4RSMC8JbquiB0e0/SH5AIfdQMdyHmYtv4seU7yV/TvAwPLJ1Yg==",
"dependencies": {
"queue-tick": "^1.0.0"
}
},
"node_modules/nanoassert": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/nanoassert/-/nanoassert-2.0.0.tgz",
"integrity": "sha512-7vO7n28+aYO4J+8w96AzhmU8G+Y/xpPDJz/se19ICsqj/momRbb9mh9ZUtkoJ5X3nTnPdhEJyc0qnM6yAsHBaA=="
},
"node_modules/napi-macros": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.1.0.tgz",
"integrity": "sha512-wJugWHfxRnVhV26BpJl2vyLHOXPrNBUyYJA5CTYcgbRcqHXAEJqStqpKOfBJyd0eb1VMbjdNvoeBWucpbdDrTw=="
},
"node_modules/nat-sampler": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/nat-sampler/-/nat-sampler-1.0.1.tgz",
"integrity": "sha512-yQvyNN7xbqR8crTKk3U8gRgpcV1Az+vfCEijiHu9oHHsnIl8n3x+yXNHl42M6L3czGynAVoOT9TqBfS87gDdcw=="
},
"node_modules/node-gyp-build": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz",
"integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==",
"bin": {
"node-gyp-build": "bin.js",
"node-gyp-build-optional": "optional.js",
"node-gyp-build-test": "build-test.js"
}
},
"node_modules/noise-curve-ed": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/noise-curve-ed/-/noise-curve-ed-2.0.0.tgz",
"integrity": "sha512-DRMv6ciwQVDpDMMcNWyt20kLuAmXVYVJoPUhmvmIZkgSALA6a+OeNTrX35gt5vQ6LgE36DSOFMpGfdmWpBmjDg==",
"dependencies": {
"b4a": "^1.1.0",
"nanoassert": "^2.0.0",
"sodium-universal": "^3.0.4"
}
},
"node_modules/noise-handshake": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/noise-handshake/-/noise-handshake-3.0.0.tgz",
"integrity": "sha512-/EQq+TbCZpOFDg0bD3jtxKYqwgSBCFU1tfGxUzHHy94kBKMwVY8GHNxtWR+gekwkhXCu7TyBXqNPY3qdaxe+fQ==",
"dependencies": {
"b4a": "^1.1.0",
"hmac-blake2b": "^2.0.0",
"nanoassert": "^2.0.0",
"sodium-universal": "^3.0.4"
}
},
"node_modules/path-parse": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
},
"node_modules/protocol-buffers-encodings": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/protocol-buffers-encodings/-/protocol-buffers-encodings-1.2.0.tgz",
"integrity": "sha512-daeNPuKh1NlLD1uDfbLpD+xyUTc07nEtfHwmBZmt/vH0B7VOM+JOCOpDcx9ZRpqHjAiIkGqyTDi+wfGSl17R9w==",
"dependencies": {
"b4a": "^1.6.0",
"signed-varint": "^2.0.1",
"varint": "5.0.0"
}
},
"node_modules/protomux": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/protomux/-/protomux-3.4.0.tgz",
"integrity": "sha512-jZBytPrL5o+eZeSfIA+5OhPBwfS4A3DucHU4R6KkwFVr2sPqtNoKOX/xXdGzQzHzfVOqbsFfC7oFQ5FqZ6XKWw==",
"dependencies": {
"b4a": "^1.3.1",
"compact-encoding": "^2.5.1",
"queue-tick": "^1.0.0",
"safety-catch": "^1.0.1"
}
},
"node_modules/queue-tick": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz",
"integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag=="
},
"node_modules/quickbit-universal": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/quickbit-universal/-/quickbit-universal-2.0.3.tgz",
"integrity": "sha512-cdyTFj+fa7iGHMNM/gMXJscTiRZt6yIhRx8fYIFT+xaxXPB3dmSy1mY9BkDf21ONqb6PZMggm5E1Huj+72+bjQ==",
"dependencies": {
"b4a": "^1.6.0",
"node-gyp-build": "^4.5.0",
"simdle-universal": "^1.1.0"
}
},
"node_modules/random-access-file": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/random-access-file/-/random-access-file-4.0.0.tgz",
"integrity": "sha512-9nk4xujIoF1bGVxd6XiM/3cnJevNYLAjv9nPmJXbCn/3fxXBr9jb9IodIDJvtiTKFwVzlwGzGGqM+zVbRw6Yaw==",
"dependencies": {
"random-access-storage": "^3.0.0"
},
"optionalDependencies": {
"fs-native-extensions": "^1.1.0"
}
},
"node_modules/random-access-storage": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/random-access-storage/-/random-access-storage-3.0.0.tgz",
"integrity": "sha512-f9KeHUMhrqj0hE2d4HbUXk/Cd5vElaVzdA0PuqPTlnxsG3dDvwQaMg8POT5tWK6UxJ80zAONZpHgLPMnnff1RA==",
"dependencies": {
"events": "^3.3.0",
"queue-tick": "^1.0.0"
}
},
"node_modules/random-array-iterator": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/random-array-iterator/-/random-array-iterator-1.0.0.tgz",
"integrity": "sha512-u7xCM93XqKEvPTP6xZp2ehttcAemKnh73oKNf1FvzuVCfpt6dILDt1Kxl1LeBjm2iNIeR49VGFhy4Iz3yOun+Q=="
},
"node_modules/record-cache": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/record-cache/-/record-cache-1.2.0.tgz",
"integrity": "sha512-kyy3HWCez2WrotaL3O4fTn0rsIdfRKOdQQcEJ9KpvmKmbffKVvwsloX063EgRUlpJIXHiDQFhJcTbZequ2uTZw==",
"dependencies": {
"b4a": "^1.3.1"
}
},
"node_modules/resolve": {
"version": "1.22.1",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz",
"integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
"dependencies": {
"is-core-module": "^2.9.0",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
"bin": {
"resolve": "bin/resolve"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/safety-catch": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/safety-catch/-/safety-catch-1.0.2.tgz",
"integrity": "sha512-C1UYVZ4dtbBxEtvOcpjBaaD27nP8MlvyAQEp2fOTOEe6pfUpk1cDUxij6BR1jZup6rSyUTaBBplK7LanskrULA=="
},
"node_modules/sha256-universal": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/sha256-universal/-/sha256-universal-1.2.1.tgz",
"integrity": "sha512-ghn3muhdn1ailCQqqceNxRgkOeZSVfSE13RQWEg6njB+itsFzGVSJv+O//2hvNXZuxVIRyNzrgsZ37SPDdGJJw==",
"dependencies": {
"b4a": "^1.0.1",
"sha256-wasm": "^2.2.1"
}
},
"node_modules/sha256-wasm": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/sha256-wasm/-/sha256-wasm-2.2.2.tgz",
"integrity": "sha512-qKSGARvao+JQlFiA+sjJZhJ/61gmW/3aNLblB2rsgIxDlDxsJPHo8a1seXj12oKtuHVgJSJJ7QEGBUYQN741lQ==",
"dependencies": {
"b4a": "^1.0.1",
"nanoassert": "^2.0.0"
}
},
"node_modules/sha512-universal": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/sha512-universal/-/sha512-universal-1.2.1.tgz",
"integrity": "sha512-kehYuigMoRkIngCv7rhgruLJNNHDnitGTBdkcYbCbooL8Cidj/bS78MDxByIjcc69M915WxcQTgZetZ1JbeQTQ==",
"dependencies": {
"b4a": "^1.0.1",
"sha512-wasm": "^2.3.1"
}
},
"node_modules/sha512-wasm": {
"version": "2.3.4",
"resolved": "https://registry.npmjs.org/sha512-wasm/-/sha512-wasm-2.3.4.tgz",
"integrity": "sha512-akWoxJPGCB3aZCrZ+fm6VIFhJ/p8idBv7AWGFng/CZIrQo51oQNsvDbTSRXWAzIiZJvpy16oIDiCCPqTe21sKg==",
"dependencies": {
"b4a": "^1.0.1",
"nanoassert": "^2.0.0"
}
},
"node_modules/shuffled-priority-queue": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/shuffled-priority-queue/-/shuffled-priority-queue-2.1.0.tgz",
"integrity": "sha512-xhdh7fHyMsr0m/w2kDfRJuBFRS96b9l8ZPNWGaQ+PMvnUnZ/Eh+gJJ9NsHBd7P9k0399WYlCLzsy18EaMfyadA==",
"dependencies": {
"unordered-set": "^2.0.1"
}
},
"node_modules/signed-varint": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/signed-varint/-/signed-varint-2.0.1.tgz",
"integrity": "sha512-abgDPg1106vuZZOvw7cFwdCABddfJRz5akcCcchzTbhyhYnsG31y4AlZEgp315T7W3nQq5P4xeOm186ZiPVFzw==",
"dependencies": {
"varint": "~5.0.0"
}
},
"node_modules/simdle-universal": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/simdle-universal/-/simdle-universal-1.1.0.tgz",
"integrity": "sha512-ZH+N1FHGksLWcNgpuaVaX2pI86Zzu58Y5S1mNXd2HuMId75eRsrtpAmCG1RZJXclViUiACVsLA3LD3TQVpha5Q==",
"dependencies": {
"b4a": "^1.6.0",
"node-gyp-build": "^4.2.3"
}
},
"node_modules/siphash24": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/siphash24/-/siphash24-1.3.1.tgz",
"integrity": "sha512-moemC3ZKiTzH29nbFo3Iw8fbemWWod4vNs/WgKbQ54oEs6mE6XVlguxvinYjB+UmaE0PThgyED9fUkWvirT8hA==",
"dependencies": {
"nanoassert": "^2.0.0"
}
},
"node_modules/sodium-javascript": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/sodium-javascript/-/sodium-javascript-0.8.0.tgz",
"integrity": "sha512-rEBzR5mPxPES+UjyMDvKPIXy9ImF17KOJ32nJNi9uIquWpS/nfj+h6m05J5yLJaGXjgM72LmQoUbWZVxh/rmGg==",
"dependencies": {
"blake2b": "^2.1.1",
"chacha20-universal": "^1.0.4",
"nanoassert": "^2.0.0",
"sha256-universal": "^1.1.0",
"sha512-universal": "^1.1.0",
"siphash24": "^1.0.1",
"xsalsa20": "^1.0.0"
}
},
"node_modules/sodium-native": {
"version": "3.4.1",
"resolved": "https://registry.npmjs.org/sodium-native/-/sodium-native-3.4.1.tgz",
"integrity": "sha512-PaNN/roiFWzVVTL6OqjzYct38NSXewdl2wz8SRB51Br/MLIJPrbM3XexhVWkq7D3UWMysfrhKVf1v1phZq6MeQ==",
"hasInstallScript": true,
"dependencies": {
"node-gyp-build": "^4.3.0"
}
},
"node_modules/sodium-secretstream": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/sodium-secretstream/-/sodium-secretstream-1.0.2.tgz",
"integrity": "sha512-AsWztbBHhHid+w5g28ftXA0mTrS52Dup7FYI0GR7ri1TQTlVsw0z//FNlhIqWsgtBctO/DxQosacbElCpmdcZw==",
"dependencies": {
"b4a": "^1.1.1",
"sodium-universal": "^3.0.4"
}
},
"node_modules/sodium-universal": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/sodium-universal/-/sodium-universal-3.1.0.tgz",
"integrity": "sha512-N2gxk68Kg2qZLSJ4h0NffEhp4BjgWHCHXVlDi1aG1hA3y+ZeWEmHqnpml8Hy47QzfL1xLy5nwr9LcsWAg2Ep0A==",
"dependencies": {
"blake2b": "^2.1.1",
"chacha20-universal": "^1.0.4",
"nanoassert": "^2.0.0",
"resolve": "^1.17.0",
"sha256-universal": "^1.1.0",
"sha512-universal": "^1.1.0",
"siphash24": "^1.0.1",
"sodium-javascript": "~0.8.0",
"sodium-native": "^3.2.0",
"xsalsa20": "^1.0.0"
}
},
"node_modules/streamx": {
"version": "2.12.5",
"resolved": "https://registry.npmjs.org/streamx/-/streamx-2.12.5.tgz",
"integrity": "sha512-Y+nkFw57Z5JHT3zLlqFm3GccOy2FeYdUrrqita6Dd8kr/8enPn9GKa8IYf3/DmEKfZl/E2sWoSKUnd4qhonrgg==",
"dependencies": {
"fast-fifo": "^1.0.0",
"queue-tick": "^1.0.0"
}
},
"node_modules/supports-preserve-symlinks-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/time-ordered-set": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/time-ordered-set/-/time-ordered-set-1.0.2.tgz",
"integrity": "sha512-vGO99JkxvgX+u+LtOKQEpYf31Kj3i/GNwVstfnh4dyINakMgeZCpew1e3Aj+06hEslhtHEd52g7m5IV+o1K8Mw=="
},
"node_modules/timeout-refresh": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/timeout-refresh/-/timeout-refresh-2.0.1.tgz",
"integrity": "sha512-SVqEcMZBsZF9mA78rjzCrYrUs37LMJk3ShZ851ygZYW1cMeIjs9mL57KO6Iv5mmjSQnOe/29/VAfGXo+oRCiVw=="
},
"node_modules/udx-native": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/udx-native/-/udx-native-1.5.1.tgz",
"integrity": "sha512-sqIHaQVgB1zVZ2vcSLo/yuErLK7eon6Y4/rwPTz4s7B4yLhqxP33nh/Pj+C4TOj4KxK01HMzdLveZMUbutcGdQ==",
"hasInstallScript": true,
"dependencies": {
"b4a": "^1.5.0",
"events": "^3.3.0",
"napi-macros": "^2.0.0",
"node-gyp-build": "^4.4.0",
"streamx": "^2.12.0"
}
},
"node_modules/unix-path-resolve": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/unix-path-resolve/-/unix-path-resolve-1.0.2.tgz",
"integrity": "sha512-kG4g5nobBBaMnH2XbrS4sLUXEpx4nY2J3C6KAlAUcnahG2HChxSPVKWYrqEq76iTo+cyMkLUjqxGaQR2tz097Q=="
},
"node_modules/unordered-set": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/unordered-set/-/unordered-set-2.0.1.tgz",
"integrity": "sha512-eUmNTPzdx+q/WvOHW0bgGYLWvWHNT3PTKEQLg0MAQhc0AHASHVHoP/9YytYd4RBVariqno/mEUhVZN98CmD7bg=="
},
"node_modules/varint": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/varint/-/varint-5.0.0.tgz",
"integrity": "sha512-gC13b/bWrqQoKY2EmROCZ+AR0jitc6DnDGaQ6Ls9QpKmuSgJB1eQ7H3KETtQm7qSdMWMKCmsshyCmUwMLh3OAA=="
},
"node_modules/xache": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/xache/-/xache-1.1.0.tgz",
"integrity": "sha512-RQGZDHLy/uCvnIrAvaorZH/e6Dfrtxj16iVlGjkj4KD2/G/dNXNqhk5IdSucv5nSSnDK00y8Y/2csyRdHveJ+Q=="
},
"node_modules/xsalsa20": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/xsalsa20/-/xsalsa20-1.2.0.tgz",
"integrity": "sha512-FIr/DEeoHfj7ftfylnoFt3rAIRoWXpx2AoDfrT2qD2wtp7Dp+COajvs/Icb7uHqRW9m60f5iXZwdsJJO3kvb7w=="
},
"node_modules/z32": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/z32/-/z32-1.0.0.tgz",
"integrity": "sha512-p3DhBJckAZj5XwYMJYeLlkgJJ+aEyCoOjTpK17I/MofVs70eR+WQPXQpk1LEmMweB2JbUx0naFXPPI2EGaVX6w==",
"dependencies": {
"b4a": "^1.5.3"
}
}
},
"dependencies": {
"@hyperswarm/dht": {
"version": "6.3.2",
"resolved": "https://registry.npmjs.org/@hyperswarm/dht/-/dht-6.3.2.tgz",
"integrity": "sha512-1wI0uJpl9hO7vzPVP/cIxxGAs3QeUhb96PuNPvc+I+GrEpCMWxd+oGMsmq3ClbzMXexlPkoFeILB9PnbVNnzxQ==",
"requires": {
"@hyperswarm/secret-stream": "^6.0.0",
"b4a": "^1.3.1",
"bogon": "^1.0.0",
"compact-encoding": "^2.4.1",
"compact-encoding-net": "^1.0.1",
"debugging-stream": "^2.0.0",
"dht-rpc": "^6.3.0",
"events": "^3.3.0",
"hypercore-crypto": "^3.3.0",
"noise-curve-ed": "^2.0.0",
"noise-handshake": "^3.0.0",
"record-cache": "^1.1.1",
"safety-catch": "^1.0.1",
"sodium-universal": "^3.0.4",
"udx-native": "^1.5.1",
"xache": "^1.1.0"
}
},
"@hyperswarm/secret-stream": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@hyperswarm/secret-stream/-/secret-stream-6.1.0.tgz",
"integrity": "sha512-6GjmdrYxZgJYGi8Ji7AZoqmmwQXSR9ByERkMPatcC5FMYgx9n5lDkwgKRK7faPQHpgtwjg2oLCrFveyGRLHV5g==",
"requires": {
"b4a": "^1.1.0",
"hypercore-crypto": "^3.3.0",
"noise-curve-ed": "^2.0.0",
"noise-handshake": "^3.0.0",
"sodium-secretstream": "^1.0.0",
"sodium-universal": "^3.0.4",
"streamx": "^2.10.2",
"timeout-refresh": "^2.0.0"
}
},
"@synonymdev/feeds": {
"version": "1.0.0-alpha.5",
"resolved": "https://registry.npmjs.org/@synonymdev/feeds/-/feeds-1.0.0-alpha.5.tgz",
"integrity": "sha512-4Bc9fnLGUn/vzB4cHEBKA/Hp6XI7mX9BUACmmrbhYjph1Ts2pbuIeZzYB2GRJnBl78xxgO9g4hR3nF/zPIemSA==",
"requires": {
"b4a": "^1.5.3",
"corestore": "^6.2.0",
"hyperdrive": "github:Nazeh/hyperdrive-next#pass-options",
"hyperswarm": "^4.2.0",
"sodium-universal": "^3.1.0"
}
},
"@synonymdev/slashtags-url": {
"version": "1.0.0-alpha.2",
"resolved": "https://registry.npmjs.org/@synonymdev/slashtags-url/-/slashtags-url-1.0.0-alpha.2.tgz",
"integrity": "sha512-1dqGL4pi49CKjcUjctz1McWR+kRlmfK54QE8hZ+XWTic1zmW9G4dO70ktBZX7iYOT3b80BrQ56ncmeR4YzPn0A==",
"requires": {
"b4a": "^1.6.0",
"z32": "^1.0.0"
}
},
"b4a": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.1.tgz",
"integrity": "sha512-AsKjNhz72yxteo/0EtQEiwkMUgk/tGmycXlbG4g3Ard2/ULtNLUykGOkeK0egmN27h0xMAhb76jYccW+XTBExA=="
},
"big-sparse-array": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/big-sparse-array/-/big-sparse-array-1.0.2.tgz",
"integrity": "sha512-LtfhxpUzrTtT6jQbRNTvV1Nql1EHhxsylggtjO6NWfuwCpXxyabY6uZQ+jQDLIrPmpJG+XOHN7qGZXySt6Sb+g=="
},
"blake2b": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/blake2b/-/blake2b-2.1.4.tgz",
"integrity": "sha512-AyBuuJNI64gIvwx13qiICz6H6hpmjvYS5DGkG6jbXMOT8Z3WUJ3V1X0FlhIoT1b/5JtHE3ki+xjtMvu1nn+t9A==",
"requires": {
"blake2b-wasm": "^2.4.0",
"nanoassert": "^2.0.0"
}
},
"blake2b-wasm": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-2.4.0.tgz",
"integrity": "sha512-S1kwmW2ZhZFFFOghcx73+ZajEfKBqhP82JMssxtLVMxlaPea1p9uoLiUZ5WYyHn0KddwbLc+0vh4wR0KBNoT5w==",
"requires": {
"b4a": "^1.0.1",
"nanoassert": "^2.0.0"
}
},
"bogon": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/bogon/-/bogon-1.1.0.tgz",
"integrity": "sha512-a6SnToksXHuUlgeMvI/txWmTcKz7c7iBa8f0HbXL4toN1Uza/CTQ4F7n9jSDX49TCpxv3KUP100q4sZfwLyLiw==",
"requires": {
"compact-encoding": "^2.11.0",
"compact-encoding-net": "^1.2.0"
}
},
"call-me-maybe": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz",
"integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ=="
},
"chacha20-universal": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/chacha20-universal/-/chacha20-universal-1.0.4.tgz",
"integrity": "sha512-/IOxdWWNa7nRabfe7+oF+jVkGjlr2xUL4J8l/OvzZhj+c9RpMqoo3Dq+5nU1j/BflRV4BKnaQ4+4oH1yBpQG1Q==",
"requires": {
"nanoassert": "^2.0.0"
}
},
"codecs": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/codecs/-/codecs-2.2.0.tgz",
"integrity": "sha512-+xi2ENsvchtUNa8oBUU58gHgmyN6BEEeZ8NIEgeQ0XnC+AoyihivgZYe+OOiNi+fLy/NUowugwV5gP8XWYDm0Q=="
},
"compact-encoding": {
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/compact-encoding/-/compact-encoding-2.11.0.tgz",
"integrity": "sha512-CRfTuyy9Tg7EwxNKvIq3yFIr2JnJLyVr9Yj234VsDCL59hdXcZH3TdzY/2kwbAqVogIoRBJjnNKCEnXbxTIEeg==",
"requires": {
"b4a": "^1.3.0"
}
},
"compact-encoding-net": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/compact-encoding-net/-/compact-encoding-net-1.2.0.tgz",
"integrity": "sha512-LVXpNpF7PGQeHRVVLGgYWzuVoYAaDZvKUsUxRioGfkotzvOh4AzoQF1HBH3zMNaSnx7gJXuUr3hkjnijaH/Eng==",
"requires": {
"compact-encoding": "^2.4.1"
}
},
"corestore": {
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/corestore/-/corestore-6.2.0.tgz",
"integrity": "sha512-4A6kQkTM8lXGVHDY+dJLBe3TtEKRFnbroVYma6W1h4KwSQDNyAj3HaXK7RUZfm3wNliOHti8PowHgIBhEbX2Hg==",
"requires": {
"b4a": "^1.3.1",
"hypercore": "^10.3.1",
"hypercore-crypto": "^3.2.1",
"safety-catch": "^1.0.1",
"sodium-universal": "^3.0.4",
"xache": "^1.1.0"
}
},
"crc-universal": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/crc-universal/-/crc-universal-1.0.2.tgz",
"integrity": "sha512-RrQ/8bT3WKNsGQuHWV3wf3Y0SUJTa8GADrkrQ1gsDljJLs8h/ENJRFUkL3z1TRWas80gv3Kdo6z1IPYyVJ/sxQ==",
"requires": {
"node-gyp-build": "^4.5.0"
}
},
"debugging-stream": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/debugging-stream/-/debugging-stream-2.0.0.tgz",
"integrity": "sha512-xwfl6wB/3xc553uwtGnSa94jFxnGOc02C0WU2Nmzwr80gzeqn1FX4VcbvoKIhe8L/lPq4BTQttAbrTN94uN8rA==",
"requires": {
"streamx": "^2.12.4"
}
},
"dht-rpc": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/dht-rpc/-/dht-rpc-6.3.0.tgz",
"integrity": "sha512-mJBX6DPEp5wwg42yzeoLkwM4PSewwZ+50VfchT3Bc26qY45ESQZ7J9cIuatRNkPt8MXdxQw0AaOoIw0NwmC8KA==",
"requires": {
"b4a": "^1.3.1",
"compact-encoding": "^2.1.0",
"compact-encoding-net": "^1.0.1",
"events": "^3.3.0",
"fast-fifo": "^1.0.0",
"kademlia-routing-table": "^1.0.0",
"nat-sampler": "^1.0.1",
"sodium-universal": "^3.0.4",
"streamx": "^2.10.3",
"time-ordered-set": "^1.0.2",
"udx-native": "^1.2.0"
}
},
"events": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="
},
"fast-fifo": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.1.0.tgz",
"integrity": "sha512-Kl29QoNbNvn4nhDsLYjyIAaIqaJB6rBx5p3sL9VjaefJ+eMFBWVZiaoguaoZfzEKr5RhAti0UgM8703akGPJ6g=="
},
"flat-tree": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/flat-tree/-/flat-tree-1.9.0.tgz",
"integrity": "sha512-WRu5/q9fcdL9f7L6Ahq8fR153e5Zr5aU6plPHupN6JDWuvEJbMjrEQprge3/I7ytndHC6/GUNg5Rg8XEisuv5w=="
},
"fs-native-extensions": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/fs-native-extensions/-/fs-native-extensions-1.1.0.tgz",
"integrity": "sha512-9gLlh5J2EJIoyb5F+UMcVo9Nd1XZo1ha48gqhrYybsl3ve1zcyLZ5irL5f4DAoOWRQobs5nkNdlGhwgI21K+eg==",
"optional": true,
"requires": {
"napi-macros": "^2.0.0",
"node-gyp-build": "^4.2.3"
}
},
"function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
},
"has": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
"requires": {
"function-bind": "^1.1.1"
}
},
"hmac-blake2b": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/hmac-blake2b/-/hmac-blake2b-2.0.0.tgz",
"integrity": "sha512-JbGNtM1YRd8EQH/2vNTAP1oy5lJVPlBFYZfCJTu3k8sqOUm0rRIf/3+MCd5noVykETwTbun6jEOc+4Tu78ubHA==",
"requires": {
"nanoassert": "^1.1.0",
"sodium-native": "^3.1.1",
"sodium-universal": "^3.0.0"
},
"dependencies": {
"nanoassert": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz",
"integrity": "sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ=="
}
}
},
"hyperbee": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/hyperbee/-/hyperbee-1.10.1.tgz",
"integrity": "sha512-c9FByHIy6TG4rkjlfXFo1p1EDotBMsrwZh+BkUPNKsOsWWy010SVS9MPKV78EtnRBGN/7NsdEIdDxNIvgffRRA==",
"requires": {
"codecs": "^2.1.0",
"hypercore-promisifier": "^1.0.1",
"mutexify": "^1.3.1",
"protocol-buffers-encodings": "^1.1.0",
"streamx": "^2.6.6"
}
},
"hyperblobs": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/hyperblobs/-/hyperblobs-2.0.0.tgz",
"integrity": "sha512-bssSdsqP6u0dk5K0C14VLW3IYhVdbgOJZYmVEbl18rbPOgG/cXPNzw16GvA35nVoW9p4YfqDqWlVcn3yr/za+Q==",
"requires": {
"mutexify": "^1.4.0",
"streamx": "^2.12.4"
}
},
"hypercore": {
"version": "10.4.1",
"resolved": "https://registry.npmjs.org/hypercore/-/hypercore-10.4.1.tgz",
"integrity": "sha512-jYphPGZiFEJ8MWllntwqcb77UQ1yTxc1rhBNr882B3XJU4s0uQTqzEUc4eDoOznc9Vl1ByWmegtlxIRjVHmwNA==",
"requires": {
"@hyperswarm/secret-stream": "^6.0.0",
"b4a": "^1.1.0",
"big-sparse-array": "^1.0.2",
"compact-encoding": "^2.11.0",
"crc-universal": "^1.0.2",
"events": "^3.3.0",
"flat-tree": "^1.9.0",
"hypercore-crypto": "^3.2.1",
"is-options": "^1.0.1",
"protomux": "^3.4.0",
"quickbit-universal": "^2.0.3",
"random-access-file": "^4.0.0",
"random-array-iterator": "^1.0.0",
"safety-catch": "^1.0.1",
"sodium-universal": "^3.0.4",
"streamx": "^2.12.4",
"xache": "^1.1.0",
"z32": "^1.0.0"
}
},
"hypercore-crypto": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/hypercore-crypto/-/hypercore-crypto-3.3.0.tgz",
"integrity": "sha512-zAWbDqG7kWwS6rCxxTUeB/OeFAz3PoOmouKaoMubtDJYJsLHqXtA3wE2mLsw+E2+iYyom5zrFyBTFVYxmgwW6g==",