-
Notifications
You must be signed in to change notification settings - Fork 12
/
package-lock.json
10941 lines (10941 loc) · 392 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": "@brumeproject/wallet",
"version": "0.6.530",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@brumeproject/wallet",
"version": "0.6.530",
"dependencies": {
"@brumewallet/wallet.wasm": "^1.0.2",
"@capacitor/android": "^6.1.2",
"@capacitor/core": "^6.1.2",
"@capacitor/ios": "^6.1.2",
"@hazae41/apdu": "^1.0.1",
"@hazae41/arrays": "^1.1.5",
"@hazae41/asn1": "^1.3.31",
"@hazae41/base16": "^1.0.18",
"@hazae41/base58": "^1.0.7",
"@hazae41/base64": "^1.0.15",
"@hazae41/base64url": "^1.0.17",
"@hazae41/binary": "^1.3.5",
"@hazae41/box": "^2.0.1",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cadenas": "^0.4.2",
"@hazae41/chacha20poly1305": "^1.0.8",
"@hazae41/chemin": "^2.0.9",
"@hazae41/cubane": "^0.2.1",
"@hazae41/cursor": "^1.2.4",
"@hazae41/disposer": "^2.0.20",
"@hazae41/echalote": "^0.4.18",
"@hazae41/ed25519": "^2.1.22",
"@hazae41/fleche": "^1.4.5",
"@hazae41/future": "^1.0.3",
"@hazae41/gardien": "^0.1.1",
"@hazae41/glacier": "^2.1.2",
"@hazae41/immutable": "^1.0.13",
"@hazae41/jsonrpc": "^1.1.6",
"@hazae41/kcp": "^1.1.3",
"@hazae41/keccak256": "^1.0.10",
"@hazae41/latrine": "^1.1.4",
"@hazae41/ledger": "^0.1.4",
"@hazae41/mutex": "^2.1.0",
"@hazae41/option": "^1.1.4",
"@hazae41/piscine": "^2.1.4",
"@hazae41/plume": "^3.0.5",
"@hazae41/react-close-context": "^1.0.2",
"@hazae41/result": "^1.3.1",
"@hazae41/ripemd160": "^1.0.3",
"@hazae41/secp256k1": "^1.0.1",
"@hazae41/sha1": "^1.1.14",
"@hazae41/signals": "^1.0.2",
"@hazae41/smux": "^1.1.3",
"@hazae41/symbol-dispose-polyfill": "^1.0.2",
"@hazae41/webauthnstorage": "^1.0.1",
"@hazae41/worker-online-polyfill": "^1.0.0",
"@hazae41/x25519": "^2.2.9",
"@heroicons/react": "^2.1.5",
"@nuintun/qrcode": "^3.4.0",
"@paulmillr/qr": "^0.2.1",
"@scure/bip32": "^1.5.0",
"@scure/bip39": "^1.4.0",
"ethers": "^6.13.4",
"next": "15.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@capacitor/cli": "^6.1.2",
"@hazae41/next-sidebuild": "^1.0.2",
"@hazae41/phobos": "^1.0.10",
"@hazae41/rimraf": "^1.0.1",
"@hazae41/saumon": "^0.2.14",
"@mdx-js/loader": "^3.1.0",
"@next/mdx": "^15.0.3",
"@types/chrome": "^0.0.280",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/w3c-web-usb": "^1.0.10",
"autoprefixer": "^10.4.20",
"blockstore-core": "^5.0.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.3",
"ipfs-unixfs-importer": "^15.3.1",
"npm-watch": "^0.13.0",
"postcss": "^8.4.48",
"serve": "^14.2.4",
"tailwindcss": "^3.4.14",
"tslib": "^2.8.1",
"typescript": "5.6.3"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@adraffy/ens-normalize": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz",
"integrity": "sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw=="
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
"dev": true,
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@assemblyscript/loader": {
"version": "0.9.4",
"resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.9.4.tgz",
"integrity": "sha512-HazVq9zwTVwGmqdwYzu7WyQ6FQVZ7SwET0KKQuKm55jD0IfUpZgN0OPIiZG3zV1iSrVYcN0bdwLRXI/VNCYsUA==",
"dev": true
},
"node_modules/@brumewallet/wallet.wasm": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@brumewallet/wallet.wasm/-/wallet.wasm-1.0.2.tgz",
"integrity": "sha512-NRgxE2xAHZOHnkrTyOQ6QDMU/GncOzA3uwp4VLfDPfZhDjnQ9o133tiBNGLjAYLEAr2rt37MA6huy958wu75Ig==",
"license": "Unlicense",
"peerDependencies": {
"@hazae41/base16.wasm": "^1.0.5",
"@hazae41/base58.wasm": "^1.0.6",
"@hazae41/base64.wasm": "^1.0.9",
"@hazae41/chacha20poly1305.wasm": "^1.0.1",
"@hazae41/ed25519.wasm": "^1.0.11",
"@hazae41/network.wasm": "^1.0.2",
"@hazae41/ripemd.wasm": "^1.0.6",
"@hazae41/secp256k1.wasm": "^1.0.10",
"@hazae41/sha1.wasm": "^1.0.5",
"@hazae41/sha3.wasm": "^1.0.4",
"@hazae41/x25519.wasm": "^1.0.8"
}
},
"node_modules/@capacitor/android": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/@capacitor/android/-/android-6.1.2.tgz",
"integrity": "sha512-Yh0gQDY1bgRrL25J6ecIlvvs2kF8iNSwIPXjyw6Yz9mnwYxBazF5KZbjpKtGPnJgicJhFkYGsqOkEtxrve0EoQ==",
"license": "MIT",
"peerDependencies": {
"@capacitor/core": "^6.1.0"
}
},
"node_modules/@capacitor/cli": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/@capacitor/cli/-/cli-6.1.2.tgz",
"integrity": "sha512-HKCNGE0RP8U7aiEF2vg5wTivJROS8BVfu8a3yYJb1mRQvzv+czpmtHNsTWS/WukvwoxUjyjRmsNQSAACHfMTmQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@ionic/cli-framework-output": "^2.2.5",
"@ionic/utils-fs": "^3.1.6",
"@ionic/utils-process": "^2.1.11",
"@ionic/utils-subprocess": "2.1.11",
"@ionic/utils-terminal": "^2.3.3",
"commander": "^9.3.0",
"debug": "^4.3.4",
"env-paths": "^2.2.0",
"kleur": "^4.1.4",
"native-run": "^2.0.0",
"open": "^8.4.0",
"plist": "^3.0.5",
"prompts": "^2.4.2",
"rimraf": "^4.4.1",
"semver": "^7.3.7",
"tar": "^6.1.11",
"tslib": "^2.4.0",
"xml2js": "^0.5.0"
},
"bin": {
"cap": "bin/capacitor",
"capacitor": "bin/capacitor"
},
"engines": {
"node": ">=18.0.0"
}
},
"node_modules/@capacitor/cli/node_modules/commander": {
"version": "9.5.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz",
"integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==",
"dev": true,
"engines": {
"node": "^12.20.0 || >=14"
}
},
"node_modules/@capacitor/cli/node_modules/define-lazy-prop": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
"integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/@capacitor/cli/node_modules/is-docker": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
"integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
"dev": true,
"bin": {
"is-docker": "cli.js"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@capacitor/cli/node_modules/open": {
"version": "8.4.2",
"resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
"integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
"dev": true,
"dependencies": {
"define-lazy-prop": "^2.0.0",
"is-docker": "^2.1.1",
"is-wsl": "^2.2.0"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@capacitor/core": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/@capacitor/core/-/core-6.1.2.tgz",
"integrity": "sha512-xFy1/4qLFLp5WCIzIhtwUuVNNoz36+V7/BzHmLqgVJcvotc4MMjswW/TshnPQaLLujEOaLkA4h8ZJ0uoK3ImGg==",
"license": "MIT",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@capacitor/ios": {
"version": "6.1.2",
"resolved": "https://registry.npmjs.org/@capacitor/ios/-/ios-6.1.2.tgz",
"integrity": "sha512-HaeW68KisBd/7TmavzPDlL2bpoDK5AjR2ZYrqU4TlGwM88GtQfvduBCAlSCj20X0w/4+rWMkseD9dAAkacjiyQ==",
"license": "MIT",
"peerDependencies": {
"@capacitor/core": "^6.1.0"
}
},
"node_modules/@chainsafe/is-ip": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@chainsafe/is-ip/-/is-ip-2.0.2.tgz",
"integrity": "sha512-ndGqEMG1W5WkGagaqOZHpPU172AGdxr+LD15sv3WIUvT5oCFUrG1Y0CW/v2Egwj4JXEvSibaIIIqImsm98y1nA==",
"dev": true,
"license": "MIT"
},
"node_modules/@chainsafe/netmask": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@chainsafe/netmask/-/netmask-2.0.0.tgz",
"integrity": "sha512-I3Z+6SWUoaljh3TBzCnCxjlUyN8tA+NAk5L6m9IxvCf1BENQTePzPMis97CoN/iMW1St3WN+AWCCRp+TTBRiDg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@chainsafe/is-ip": "^2.0.1"
}
},
"node_modules/@emnapi/runtime": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz",
"integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
"license": "MIT",
"optional": true,
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"dev": true,
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz",
"integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "8.57.1",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz",
"integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==",
"dev": true,
"license": "MIT",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@hazae41/aes.wasm": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@hazae41/aes.wasm/-/aes.wasm-1.0.0.tgz",
"integrity": "sha512-8h64CrQABbVdpPxm4lfCV614/Gh6TynHy6RZkhZqSGRuc4hkYH6ZyYqfbK5mp3etb6WwifZGLEw+a3Ba3oWaVQ==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/apdu": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@hazae41/apdu/-/apdu-1.0.1.tgz",
"integrity": "sha512-Ia5lPs7UbK0jbxs7eL3htjNg3fNw0ewcIhvZfgWBW4tM5nFTeHqKbRMz3pc4u3JFkZU5fNIM1ARmMAiCzn8Xdg==",
"license": "MIT",
"dependencies": {
"@hazae41/binary": "^1.3.5",
"@hazae41/cursor": "^1.2.4",
"@hazae41/result": "^1.3.1"
}
},
"node_modules/@hazae41/arrays": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/@hazae41/arrays/-/arrays-1.1.5.tgz",
"integrity": "sha512-EyYJ9AX4BrQ4Q+f0PJKAecMcVZV7C64IwaKQxfPblh1Vp2xQCg20uVW2RHfyJydeJzmlT8yuCDMS/Gv8hpCSJg=="
},
"node_modules/@hazae41/asn1": {
"version": "1.3.31",
"resolved": "https://registry.npmjs.org/@hazae41/asn1/-/asn1-1.3.31.tgz",
"integrity": "sha512-vuErGzgaZDxyEjmhkKHWciwwHvR87lLVqIhs+FLVamBSHZLGOwewgqUlgOK9bNfK6WFB6N7grLX/MJSe3us+PQ==",
"license": "MIT",
"dependencies": {
"@hazae41/base16": "^1.0.18",
"@hazae41/binary": "^1.3.5",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cursor": "^1.2.4"
}
},
"node_modules/@hazae41/base16": {
"version": "1.0.18",
"resolved": "https://registry.npmjs.org/@hazae41/base16/-/base16-1.0.18.tgz",
"integrity": "sha512-N4bcBzrXnbJeM4o0lFXd+PlSL3Z7UIOtVN4+602nmE+2cHbBzT2BsPTX4oH5+YBhX3rEMFE/pJ60nT57amRxhw==",
"license": "MIT",
"dependencies": {
"@hazae41/box": "^2.0.1",
"@hazae41/option": "^1.1.3"
}
},
"node_modules/@hazae41/base16.wasm": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@hazae41/base16.wasm/-/base16.wasm-1.0.5.tgz",
"integrity": "sha512-MLbj7fGaHtVW0k3Y/AeerJwi1mviirD/5F4Pi5391KrfAl9Z0N7tGf4Eoo64B7FeB2726H29OnzNBLYp3fxX0Q==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/base58": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/@hazae41/base58/-/base58-1.0.7.tgz",
"integrity": "sha512-bYK/HtjVSNrs34o9FpkPigPrGzVnfpTdsUR257A5XX4OIj/v1PqLk5WdZeS78gBmWHTwtu9BzQXaeGHEbsp9YQ==",
"license": "MIT",
"dependencies": {
"@hazae41/box": "^2.0.1",
"@hazae41/option": "^1.1.3"
}
},
"node_modules/@hazae41/base58.wasm": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@hazae41/base58.wasm/-/base58.wasm-1.0.6.tgz",
"integrity": "sha512-drhA87jBLN2OyWVe2sXzB+q8c5s3969i9zYV/jZPbVvTslQUtfq6NsqAUD2pE4XdnCegdvmd3+ZVMJJzrhsn5w==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/base64": {
"version": "1.0.15",
"resolved": "https://registry.npmjs.org/@hazae41/base64/-/base64-1.0.15.tgz",
"integrity": "sha512-SX97fH6s5wxu454q0JohKQEPUEqQDTREWoKhvs+523VFz0Ur+DsPaC60jl7eamfbb3QwDcycu3Wf0GmqDQ+Ypw==",
"license": "MIT",
"dependencies": {
"@hazae41/box": "^2.0.1",
"@hazae41/option": "^1.1.3"
}
},
"node_modules/@hazae41/base64.wasm": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/@hazae41/base64.wasm/-/base64.wasm-1.0.9.tgz",
"integrity": "sha512-h5rIPSrSPhsJGZfSl7TDDn/D0gexbGmHHy1R4WjZcHHY0YKJRfOjPhrzm4eglshUBANJhsd2q3KE1lBRKgBl9g==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/base64url": {
"version": "1.0.17",
"resolved": "https://registry.npmjs.org/@hazae41/base64url/-/base64url-1.0.17.tgz",
"integrity": "sha512-1X73r8GJHN6KGUu4f+6jY7s5Sqz8Y/HpNsdD+7IGhrK7EZ96CbKD/0sEh2np+UJ4vxwMmmtMZsWdyKnJdbDiug==",
"license": "MIT",
"dependencies": {
"@hazae41/box": "^2.0.1",
"@hazae41/option": "^1.1.3"
}
},
"node_modules/@hazae41/binary": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/@hazae41/binary/-/binary-1.3.5.tgz",
"integrity": "sha512-o2unN0+W8+QDJkrUEYpTgJafZrPcjjpszYLEy8WwDR0BOvzT/cFNm1lA8vJEsv2jSGfGmqCSid4ndgkHWO8UAg==",
"license": "MIT",
"dependencies": {
"@hazae41/cursor": "^1.2.4"
}
},
"node_modules/@hazae41/bitset": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@hazae41/bitset/-/bitset-1.0.1.tgz",
"integrity": "sha512-XZAGbTJjq5vY4Z/RzVLH2hfAOE7jjz+wTUTk9GuWv5GIofPTNyO/3ETwP9NdTFJpcQPvTLdjiBjoWZ1+e/J8eA=="
},
"node_modules/@hazae41/bitwise.wasm": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@hazae41/bitwise.wasm/-/bitwise.wasm-1.0.6.tgz",
"integrity": "sha512-g+kf7WCmjh/sQdd4BkaO2EnZhSU1R2KP5uJThK+QinbwkQ4CkKxaeqSAszFmucK+yYxXmTMonFWIJQH0RhYWnQ==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/box": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@hazae41/box/-/box-2.0.1.tgz",
"integrity": "sha512-eX9AeEfeZkRSgEeoZMZn1oAEE1lDpmBFSuYcpJ2NZ2btxh+VeiuegHCazzqMWqyR79OLJQxK+o1iVA5j6hi16A==",
"license": "MIT"
},
"node_modules/@hazae41/bytes": {
"version": "1.2.11",
"resolved": "https://registry.npmjs.org/@hazae41/bytes/-/bytes-1.2.11.tgz",
"integrity": "sha512-cmuy7gwYGUZjCu2tEMfvCYUDOuC31g23B5q4dQ8IBBH7SxFOW3tSdm1UHKDm49bFFtOZ/uO86B6jSTj2Ci5XCg==",
"license": "MIT"
},
"node_modules/@hazae41/cadenas": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@hazae41/cadenas/-/cadenas-0.4.2.tgz",
"integrity": "sha512-yGdGZjAtlG6x7ira74bmJY4xQ3+bQehATP1QfNRqhOt3EiSC4LIbq0158/X3p3/48jHY2vpVO1B8h0h9HDCymw==",
"license": "MIT",
"dependencies": {
"@hazae41/asn1": "^1.3.31",
"@hazae41/base16": "^1.0.18",
"@hazae41/binary": "^1.3.5",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cascade": "^2.2.2",
"@hazae41/cursor": "^1.2.4",
"@hazae41/ed25519": "^2.1.19",
"@hazae41/future": "^1.0.3",
"@hazae41/option": "^1.1.3",
"@hazae41/x509": "^1.2.10"
}
},
"node_modules/@hazae41/cascade": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/@hazae41/cascade/-/cascade-2.2.2.tgz",
"integrity": "sha512-9Y0MVMPca3AY2W63ckyULrgw2d8V9+ROOSZs+5PPbzm0zS+ihlD015Kpkpf8J1jtvIWIRhflcFa5Rbk/Ip5DKQ=="
},
"node_modules/@hazae41/chacha20poly1305": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/@hazae41/chacha20poly1305/-/chacha20poly1305-1.0.8.tgz",
"integrity": "sha512-wp3dPjGweWLA7t/7LMoAj9nt25c5wpufnthBrFHKJi+qS2bhxEWvlOtWWnT3rD1DyoS2caKWRN4CbgIlg0ymkQ==",
"license": "MIT",
"dependencies": {
"@hazae41/box": "^2.0.1",
"@hazae41/option": "^1.1.3"
}
},
"node_modules/@hazae41/chacha20poly1305.wasm": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@hazae41/chacha20poly1305.wasm/-/chacha20poly1305.wasm-1.0.1.tgz",
"integrity": "sha512-7nISMcQliHMcaPB9YATUxnFY7rn6EyfJAp+0BZtakxniz5hc/xcUWUpBUt6imqTLNIqfL0FTT1uvX0k9tPr4jQ==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/chemin": {
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/@hazae41/chemin/-/chemin-2.0.9.tgz",
"integrity": "sha512-o5JPCu6OsZYNWHaD8B4rsGKbC+1rzLMjd/3XgDs8qUiwyI0gheykC+fCEEvoilSTANt0tMP65oKmYIVVzXx/9w==",
"license": "MIT",
"dependencies": {
"@hazae41/option": "^1.1.3"
},
"peerDependencies": {
"@hazae41/react-close-context": ">=1",
"react": ">=18"
}
},
"node_modules/@hazae41/cubane": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/@hazae41/cubane/-/cubane-0.2.1.tgz",
"integrity": "sha512-8OWZf3k7qOfJ87Vd+hYZCAJaxBM9PhXHK7bfqlL8+rTa/HueJKXQzFZnFjccrDp/YzwPRl6lWYSKByjgo3toRg==",
"license": "MIT",
"dependencies": {
"@hazae41/base16": "^1.0.18",
"@hazae41/binary": "^1.3.5",
"@hazae41/box": "^2.0.1",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cursor": "^1.2.4",
"@hazae41/keccak256": "^1.0.10",
"@hazae41/option": "^1.1.3",
"@hazae41/result": "^1.3.1",
"@hazae41/secp256k1": "^1.0.1",
"idna-uts46-hx": "^6.0.5"
}
},
"node_modules/@hazae41/cursor": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/@hazae41/cursor/-/cursor-1.2.4.tgz",
"integrity": "sha512-/pE3kOcZnPtLdw6MTv3ALEcuUV3Ab3lWNAafGQSMAzN7vUIJJUIa3mReScwsCLNnfYWy34Y46RIuRb/2kOnEcg==",
"license": "MIT"
},
"node_modules/@hazae41/disposer": {
"version": "2.0.20",
"resolved": "https://registry.npmjs.org/@hazae41/disposer/-/disposer-2.0.20.tgz",
"integrity": "sha512-O+/vlXgyJtd9yGEtkjJ2GszqiEhCDdusaPhnUMwjyrY1En5X2Jd3CTHahJxdsrfBVuXuULy3xcaC67qse/b86g=="
},
"node_modules/@hazae41/echalote": {
"version": "0.4.18",
"resolved": "https://registry.npmjs.org/@hazae41/echalote/-/echalote-0.4.18.tgz",
"integrity": "sha512-vHSKLH6CBez42qZPIdmiZ0IOhS1tEQaJgIygNJheC89kQmcXHpFtQ2hLqHyhiXr9ZbhxtWBt2aBGnSeIRp6fJA==",
"license": "MIT",
"dependencies": {
"@hazae41/asn1": "^1.3.31",
"@hazae41/binary": "^1.3.5",
"@hazae41/bitset": "^1.0.1",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cadenas": "^0.4.2",
"@hazae41/cascade": "^2.2.2",
"@hazae41/cursor": "^1.2.4",
"@hazae41/fleche": "^1.4.5",
"@hazae41/future": "^1.0.3",
"@hazae41/kcp": "^1.1.3",
"@hazae41/mutex": "^2.1.0",
"@hazae41/option": "^1.1.4",
"@hazae41/plume": "^3.0.5",
"@hazae41/smux": "^1.1.3",
"@hazae41/x509": "^1.2.10"
},
"peerDependencies": {
"@hazae41/aes.wasm": "^1.0.0",
"@hazae41/base16": "^1.0.18",
"@hazae41/base64": "^1.0.15",
"@hazae41/ed25519": "^2.1.21",
"@hazae41/rsa.wasm": "^1.0.10",
"@hazae41/sha1": "^1.1.14",
"@hazae41/x25519": "^2.2.9"
}
},
"node_modules/@hazae41/ed25519": {
"version": "2.1.22",
"resolved": "https://registry.npmjs.org/@hazae41/ed25519/-/ed25519-2.1.22.tgz",
"integrity": "sha512-7LAfNguTwihtqWyUwM5Vt7ERJTywV2jEfvE1cWdZVTsNyvhQNExWYezlpwTpRz5F8dCvqHQmiop0izcdstkLQQ==",
"license": "MIT",
"dependencies": {
"@hazae41/box": "^2.0.1",
"@hazae41/option": "^1.1.3",
"@hazae41/result": "^1.3.1"
},
"peerDependencies": {
"@hazae41/base64url": "^1.0.17"
}
},
"node_modules/@hazae41/ed25519.wasm": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/@hazae41/ed25519.wasm/-/ed25519.wasm-1.0.11.tgz",
"integrity": "sha512-KTAUqWl8p+aIqUeOPG/uLoBhGV1xsDsNlsOby8ylpJQQ0Y8VoEofJcMruT8wmDAM5R7vjSq88G3Ki1Vn0t87xQ==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/fleche": {
"version": "1.4.5",
"resolved": "https://registry.npmjs.org/@hazae41/fleche/-/fleche-1.4.5.tgz",
"integrity": "sha512-IKL93Tec14docV+UpvHdHp87/cGgCIAybYT462mx6y0nw+LZz9pkExeUGjI1t/dz1krWQWbAh3OJ2QqcYFbOFA==",
"license": "MIT",
"dependencies": {
"@hazae41/base64": "^1.0.15",
"@hazae41/binary": "^1.3.5",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cascade": "^2.2.2",
"@hazae41/cursor": "^1.2.4",
"@hazae41/disposer": "^2.0.20",
"@hazae41/future": "^1.0.3",
"@hazae41/signals": "^1.0.2"
},
"peerDependencies": {
"@hazae41/bitwise.wasm": "^1"
}
},
"node_modules/@hazae41/future": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@hazae41/future/-/future-1.0.3.tgz",
"integrity": "sha512-tc6xV7buZI1P8d66OTH7noD5L3fKCZpTOfyvlVMIcjqvkY/gRcBinFzegc6DmXx08ZlwfAlnebU+ZX5NO+9+iw=="
},
"node_modules/@hazae41/gardien": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@hazae41/gardien/-/gardien-0.1.1.tgz",
"integrity": "sha512-mY3g+XgJZ5plg6NQlfCP/gqED7ZdE9CxVZi/n+I8LI0RsI/4vTlSFcbhkmV+4f5HVh6rzxu6alldo45/rFFfWQ==",
"license": "MIT"
},
"node_modules/@hazae41/glacier": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@hazae41/glacier/-/glacier-2.1.2.tgz",
"integrity": "sha512-2zz86lsatI4CfwFDuwcba/bj9w3zIRAF60VubByAhwEENUeETohytixLZBL369dz19lJSshxZ1X9zaEeIhT6iQ==",
"license": "MIT",
"dependencies": {
"@hazae41/base64": "^1.0.15",
"@hazae41/bytes": "^1.2.11",
"@hazae41/mutex": "^2.1.0",
"@hazae41/option": "^1.1.4",
"@hazae41/plume": "^3.0.5",
"@hazae41/result": "^1.3.2",
"@hazae41/serac": "^1.0.5"
},
"peerDependencies": {
"react": ">=18.3.1"
}
},
"node_modules/@hazae41/immutable": {
"version": "1.0.13",
"resolved": "https://registry.npmjs.org/@hazae41/immutable/-/immutable-1.0.13.tgz",
"integrity": "sha512-eSXfaGRDzgU43Ab1rlOa95XR0GjNvcfpbHAMVzT9lENuDaE6/M5HCM2711XPIh8fissBXlThx1quHg7a3InYMw==",
"license": "MIT",
"dependencies": {
"@hazae41/future": "^1.0.3",
"@hazae41/option": "^1.0.27"
}
},
"node_modules/@hazae41/jsonrpc": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/@hazae41/jsonrpc/-/jsonrpc-1.1.6.tgz",
"integrity": "sha512-BV/tVQMNGsQHb+D5YiJcycfWeMndM3qKw6CLpr7NRhaYSrlOU2tvSj3vgWIPhcFCY39EtsdP6/YFzM2pxgv+iQ==",
"license": "MIT",
"dependencies": {
"@hazae41/result": "^1.3.1"
}
},
"node_modules/@hazae41/kcp": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@hazae41/kcp/-/kcp-1.1.3.tgz",
"integrity": "sha512-Q/l1vZ1NYeElTHrgIxjDUsI5U2Bfkj5lCFyRyEXiya66bCxKTXYXDguGh+qi/bS0onPX6/TSipLHeyYXXHGAIA==",
"license": "MIT",
"dependencies": {
"@hazae41/binary": "^1.3.5",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cascade": "^2.2.2",
"@hazae41/cursor": "^1.2.4",
"@hazae41/future": "^1.0.3"
}
},
"node_modules/@hazae41/keccak256": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/@hazae41/keccak256/-/keccak256-1.0.10.tgz",
"integrity": "sha512-HdlqaAOFOX8OIBGe6giMhYMExLwxBL5uLr/2btiilD3rCh3HpMppzyORjhsUxAATDscLMqmMYMBbsZfREOV8Nw==",
"license": "MIT",
"dependencies": {
"@hazae41/box": "^2.0.1",
"@hazae41/option": "^1.1.3"
}
},
"node_modules/@hazae41/latrine": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@hazae41/latrine/-/latrine-1.1.4.tgz",
"integrity": "sha512-+Mnrky8u5RSh65jGETMqM9TLOD1aDK9NSMu3f2/ns8gyOYt8Hxs5A1cBZju459xYe+ZQCl0kPLdCQQv01rT9UQ==",
"license": "MIT",
"dependencies": {
"@hazae41/binary": "^1.3.5",
"@hazae41/box": "^2.0.1",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cursor": "^1.2.4",
"@hazae41/future": "^1.0.3",
"@hazae41/jsonrpc": "^1.0.8",
"@hazae41/option": "^1.1.4",
"@hazae41/plume": "^3.0.5",
"@hazae41/result": "^1.3.1"
},
"peerDependencies": {
"@hazae41/base16": "^1.0.18",
"@hazae41/base58": "^1.0.7",
"@hazae41/base64": "^1.0.15",
"@hazae41/base64url": "^1.0.17",
"@hazae41/chacha20poly1305": "^1.0.8",
"@hazae41/ed25519": "^2.1.21",
"@hazae41/x25519": "^2.2.9"
}
},
"node_modules/@hazae41/ledger": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/@hazae41/ledger/-/ledger-0.1.4.tgz",
"integrity": "sha512-EAr3Qtc+9SIZDZ/eIQ0E5SnmS4sGy5zBqoNGAxlwtR8pNo7qdGhgYcJPuPM8M5uHmo0XQamLtoGtxbT4TX+J/w==",
"license": "MIT",
"dependencies": {
"@hazae41/apdu": "^1.0.1",
"@hazae41/binary": "^1.3.5",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cubane": "^0.2.1",
"@hazae41/cursor": "^1.2.4"
}
},
"node_modules/@hazae41/memory.wasm": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/@hazae41/memory.wasm/-/memory.wasm-1.0.9.tgz",
"integrity": "sha512-bI7zYPODlQsRm2006WIBD/Vno9ONFwr5Gvkq89qUUSS+e2Qv56+RMl6Xcmsnhb9x622DPx4ty3QImD4WVknsMQ==",
"license": "Unlicense",
"peer": true
},
"node_modules/@hazae41/mutex": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@hazae41/mutex/-/mutex-2.1.0.tgz",
"integrity": "sha512-69PEhdpLNuuOshb14pvK2gmOAvtJApz2vIzEgRtvVNffeGrUxXO2GyPKXqjjZ80Bvy4WA9Ov0BDIdeeqOyqwMQ==",
"license": "MIT",
"dependencies": {
"@hazae41/future": "^1.0.3"
}
},
"node_modules/@hazae41/network.wasm": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@hazae41/network.wasm/-/network.wasm-1.0.2.tgz",
"integrity": "sha512-qhItw4vRq3G5TaZgx6znwtUkFzXa30gzhHNeLKvzw1TxCfnYnchW2gRVF2N/udTMn49POHL4y3KtXdlUTvMimw==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/base16.wasm": "^1.0.4",
"@hazae41/memory.wasm": "^1.0.9",
"@hazae41/sha3.wasm": "^1.0.3"
}
},
"node_modules/@hazae41/next-sidebuild": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@hazae41/next-sidebuild/-/next-sidebuild-1.0.2.tgz",
"integrity": "sha512-76YizrsCk6eBOGoUqF9HaR6UtYBAqdGOI5r843hJ2SiVCAJoJxCqS7sEMAO23MB7hX/GhVzAa4E7c0H1xrhGVw==",
"dev": true,
"license": "MIT",
"peerDependencies": {
"next": ">=14",
"webpack": ">=5"
}
},
"node_modules/@hazae41/option": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@hazae41/option/-/option-1.1.4.tgz",
"integrity": "sha512-ZGAVkOJJw2YIeihG8PaWs4R3KDloCgWGNDPqbATvT3kTtoyU+dJmya/UCM2P+ZwCfWYpE7nGiYJbBTlpp929Qg==",
"license": "MIT",
"dependencies": {
"@hazae41/result": "^1.3.0"
}
},
"node_modules/@hazae41/phobos": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/@hazae41/phobos/-/phobos-1.0.10.tgz",
"integrity": "sha512-ZCZx2YXnRAmMxQhBSg1/GW3wll8UVXGJm8ADWaGk9sJRnXE0zISAHz1mRZIHXHAq+MUBOQF7d6AeCAckc2xYlQ==",
"dev": true
},
"node_modules/@hazae41/piscine": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@hazae41/piscine/-/piscine-2.1.4.tgz",
"integrity": "sha512-S9RW6IDN2/kjidrxjjJVFviw0AstzaNrhQNt8KSHAoQ77PgttEAWwffYIwS+hJgIIkDabl7Ls7UN9w/9nzr6HA==",
"license": "MIT",
"dependencies": {
"@hazae41/arrays": "^1.1.5",
"@hazae41/box": "^2.0.1",
"@hazae41/disposer": "^2.0.20",
"@hazae41/mutex": "^2.1.0",
"@hazae41/option": "^1.1.4",
"@hazae41/plume": "^3.0.5",
"@hazae41/result": "^1.3.1",
"@hazae41/signals": "^1.0.2"
}
},
"node_modules/@hazae41/plume": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/@hazae41/plume/-/plume-3.0.5.tgz",
"integrity": "sha512-Kx6dP09Fj/34RTLHXJ3nlTgPv9TLPsY9O0h1MjbKW8/DB4S3RhmFWLcbLeoJ870do4b0zuRQWNPDAPvSkK6AAA==",
"license": "MIT",
"dependencies": {
"@hazae41/disposer": "^2.0.20",
"@hazae41/future": "^1.0.3",
"@hazae41/signals": "^1.0.2"
},
"peerDependencies": {
"@hazae41/option": "^1.1.4"
}
},
"node_modules/@hazae41/react-close-context": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@hazae41/react-close-context/-/react-close-context-1.0.2.tgz",
"integrity": "sha512-cV25s/IZxXi4jz9V1ySazQE0Rho0MBfZjlWpoQRLafmFLvZ6XffrPer0xblKkZ1G060TNlb5d9joty7E+L4vmQ==",
"license": "MIT",
"dependencies": {
"@hazae41/option": "^1.1.3"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@hazae41/result": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/@hazae41/result/-/result-1.3.2.tgz",
"integrity": "sha512-X2RdjCC4DypMZFN3aZ7P5Zh8kEMN6SEqcMARRa/CraEU7Es/hj0yBh1Pt5eAYrRkpnWiE9+ohKSU4s7nL5L1gg==",
"license": "MIT",
"dependencies": {
"@hazae41/option": "^1.1.3"
}
},
"node_modules/@hazae41/rimraf": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@hazae41/rimraf/-/rimraf-1.0.1.tgz",
"integrity": "sha512-EmzbyXflKMxnfiEAsE2jn84Bo2WeTxPasdasQ0JP4gisCa3n9qrB2tiR9fmRsrkS6wH/H16oBsu4dkyfaJiKQw==",
"dev": true,
"bin": {
"rimraf": "dist/index.mjs"
}
},
"node_modules/@hazae41/ripemd.wasm": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@hazae41/ripemd.wasm/-/ripemd.wasm-1.0.6.tgz",
"integrity": "sha512-FCGwMr8xj0SK6wK1Cn3tL1oW6jh9ZjmrdLlvry8E91yBHISsX3HwXXyLsLCFTgv/qOfrTrDz5l3RVWnDab6O3w==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/ripemd160": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@hazae41/ripemd160/-/ripemd160-1.0.3.tgz",
"integrity": "sha512-Zom/lqSc6hHjpokwjoGBaEnGJIW/vrseCQqnx3K+t70rxfB39ZuIveREyOx+cuchx6b1xpsGNyq+4Wbw2Igx+Q==",
"license": "MIT",
"dependencies": {
"@hazae41/box": "^2.0.1",
"@hazae41/option": "^1.1.3",
"@hazae41/result": "^1.3.1"
}
},
"node_modules/@hazae41/rsa.wasm": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/@hazae41/rsa.wasm/-/rsa.wasm-1.0.10.tgz",
"integrity": "sha512-pREGQX7tDM/lzlGRId38rXR9yzY30p2MERbzcCW9l4QvEmRo7dEL9bmn6Jysj529aglSNkYXD5wMJh9khZDLwQ==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/saumon": {
"version": "0.2.14",
"resolved": "https://registry.npmjs.org/@hazae41/saumon/-/saumon-0.2.14.tgz",
"integrity": "sha512-h2xlhg6f8STAQS0J6is1NkL5FvSW37lEuzVAXr5qvQ1DaR5LG2oGn7WUiVN1ZBkuZhIZ3zeeLptEYCul/9RWAw==",
"dev": true,
"license": "MIT",
"bin": {
"saumon": "dist/cli/index.cli.mjs"
}
},
"node_modules/@hazae41/secp256k1": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@hazae41/secp256k1/-/secp256k1-1.0.1.tgz",
"integrity": "sha512-/EbyXqCPUkV1dnIpVkHlKrP3WbY4PpqoyjkU3lUyCzEfDRy6+limAJh/rLE/2GCzZMw/LFPuJSqYdFa7OifjQw==",
"license": "MIT",
"dependencies": {
"@hazae41/box": "^2.0.1",
"@hazae41/option": "^1.1.3"
}
},
"node_modules/@hazae41/secp256k1.wasm": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/@hazae41/secp256k1.wasm/-/secp256k1.wasm-1.0.10.tgz",
"integrity": "sha512-En3mF7eRRg10mXJJPCS7JnUBFEJ8iDe+esrx0rKxQY/MhA1+LUfWl3u3HosWcZwAcQutjWgvqqRwfRSs4PEqgg==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/serac": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@hazae41/serac/-/serac-1.0.5.tgz",
"integrity": "sha512-pHaDR5VfsHjL5baC8ebbKdhbAs+nrZckimXBxbkDmG58jjMN+4250iR869+7x481McwkJdqQniGZUfA1PU00MQ==",
"license": "MIT"
},
"node_modules/@hazae41/sha1": {
"version": "1.1.14",
"resolved": "https://registry.npmjs.org/@hazae41/sha1/-/sha1-1.1.14.tgz",
"integrity": "sha512-I5f2SDHVVw6TZGt06ov/dxRglozxEt0WCU0u2rr6Q7PktAYcLUNAV/CGy/TyQBgS+oMb8ucS6U/inzb8FlhEzA==",
"license": "MIT",
"dependencies": {
"@hazae41/box": "^2.0.1",
"@hazae41/option": "^1.1.3"
}
},
"node_modules/@hazae41/sha1.wasm": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@hazae41/sha1.wasm/-/sha1.wasm-1.0.5.tgz",
"integrity": "sha512-1/ZM4ySA9VPLlDcUMKNARoqKEj8zhW+XgVyeRHUqu7QTmumCDUNicSjMQfEQYbt9mavoSAd4LTOtnF/moFaIHA==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/sha3.wasm": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@hazae41/sha3.wasm/-/sha3.wasm-1.0.4.tgz",
"integrity": "sha512-qF0QiRk7sDeVl7mIWd+WZWJ6H+KYoBgVLSn/Y9ja7j+nOEJk5dcxQd1MmOPysS8dyxUGhiavAekW9kNqOWZoBQ==",
"license": "Unlicense",
"peer": true,
"peerDependencies": {
"@hazae41/memory.wasm": "^1.0.9"
}
},
"node_modules/@hazae41/signals": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@hazae41/signals/-/signals-1.0.2.tgz",
"integrity": "sha512-vgcjmjyMtN5l61D8a+GWqQfhvTA5aEcgEPK5RKDPe66dTgj10M/xOgQV/McJuwgDRf0gvEvpUMStMs+OfVEIxA==",
"license": "MIT",
"dependencies": {
"@hazae41/disposer": "^2.0.20",
"@hazae41/future": "^1.0.3"
}
},
"node_modules/@hazae41/smux": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@hazae41/smux/-/smux-1.1.3.tgz",
"integrity": "sha512-2xe71M//WSGaZ6O06TF0E/4pQBG9p56Ufx/hEoxY970Sn4spWEd45iXvNbMr3muFt3j9QUITt8DBWmlTSRfFdw==",
"license": "MIT",
"dependencies": {
"@hazae41/binary": "^1.3.5",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cascade": "^2.2.2",
"@hazae41/cursor": "^1.2.4",
"@hazae41/future": "^1.0.3"
}
},
"node_modules/@hazae41/symbol-dispose-polyfill": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@hazae41/symbol-dispose-polyfill/-/symbol-dispose-polyfill-1.0.2.tgz",
"integrity": "sha512-Jjlfw/K3A4Abl2QijyaAq4Xx+FN8Xu6132vqGUnNj3pFzPg+bGq6pytalvTEzU0o/VEOn7/hDnJ5v1NlCjUXkQ=="
},
"node_modules/@hazae41/webauthnstorage": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@hazae41/webauthnstorage/-/webauthnstorage-1.0.1.tgz",
"integrity": "sha512-SiT/V1kCgF4Zu6xOO+sUrFICIRE688Ojdz2N+jBHUdtY0c6ch0tfDODGixeA9fDFU0Eq9/mk+4jz7h6tztyhDw=="
},
"node_modules/@hazae41/worker-online-polyfill": {
"version": "1.0.0",