-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
6188 lines (5355 loc) · 249 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@adraffy/[email protected]":
"integrity" "sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q=="
"resolved" "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz"
"version" "1.10.0"
"@ampproject/remapping@^2.2.0":
"integrity" "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.24"
"@assemblyscript/loader@^0.27.22":
"integrity" "sha512-ippZ7U8mcwIGf9lWlOSqvpxeB84xCRNeWbol0lDlnm9PBlKTIyIbqa+BIDm8VNMdRARJ/wRca7srOv7W8N6Ueg=="
"resolved" "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.27.29.tgz"
"version" "0.27.29"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.24.7":
"integrity" "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz"
"version" "7.24.7"
dependencies:
"@babel/highlight" "^7.24.7"
"picocolors" "^1.0.0"
"@babel/compat-data@^7.25.2":
"integrity" "sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz"
"version" "7.25.4"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.23.9", "@babel/core@^7.8.0", "@babel/core@>=7.0.0-beta.0 <8":
"integrity" "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz"
"version" "7.25.2"
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.24.7"
"@babel/generator" "^7.25.0"
"@babel/helper-compilation-targets" "^7.25.2"
"@babel/helper-module-transforms" "^7.25.2"
"@babel/helpers" "^7.25.0"
"@babel/parser" "^7.25.0"
"@babel/template" "^7.25.0"
"@babel/traverse" "^7.25.2"
"@babel/types" "^7.25.2"
"convert-source-map" "^2.0.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.3"
"semver" "^6.3.1"
"@babel/generator@^7.25.0", "@babel/generator@^7.25.4", "@babel/generator@^7.7.2":
"integrity" "sha512-abd43wyLfbWoxC6ahM8xTkqLpGB2iWBVyuKC9/srhFunCd1SDNrV1s72bBpK4hLj8KLzHBBcOblvLQZBNw9r3w=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.25.5.tgz"
"version" "7.25.5"
dependencies:
"@babel/types" "^7.25.4"
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.25"
"jsesc" "^2.5.1"
"@babel/helper-compilation-targets@^7.25.2":
"integrity" "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz"
"version" "7.25.2"
dependencies:
"@babel/compat-data" "^7.25.2"
"@babel/helper-validator-option" "^7.24.8"
"browserslist" "^4.23.1"
"lru-cache" "^5.1.1"
"semver" "^6.3.1"
"@babel/helper-module-imports@^7.24.7":
"integrity" "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz"
"version" "7.24.7"
dependencies:
"@babel/traverse" "^7.24.7"
"@babel/types" "^7.24.7"
"@babel/helper-module-transforms@^7.25.2":
"integrity" "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz"
"version" "7.25.2"
dependencies:
"@babel/helper-module-imports" "^7.24.7"
"@babel/helper-simple-access" "^7.24.7"
"@babel/helper-validator-identifier" "^7.24.7"
"@babel/traverse" "^7.25.2"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8", "@babel/helper-plugin-utils@^7.8.0":
"integrity" "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz"
"version" "7.24.8"
"@babel/helper-simple-access@^7.24.7":
"integrity" "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz"
"version" "7.24.7"
dependencies:
"@babel/traverse" "^7.24.7"
"@babel/types" "^7.24.7"
"@babel/helper-string-parser@^7.24.8":
"integrity" "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz"
"version" "7.24.8"
"@babel/helper-validator-identifier@^7.24.7":
"integrity" "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz"
"version" "7.24.7"
"@babel/helper-validator-option@^7.24.8":
"integrity" "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz"
"version" "7.24.8"
"@babel/helpers@^7.25.0":
"integrity" "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz"
"version" "7.25.0"
dependencies:
"@babel/template" "^7.25.0"
"@babel/types" "^7.25.0"
"@babel/highlight@^7.24.7":
"integrity" "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz"
"version" "7.24.7"
dependencies:
"@babel/helper-validator-identifier" "^7.24.7"
"chalk" "^2.4.2"
"js-tokens" "^4.0.0"
"picocolors" "^1.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.0", "@babel/parser@^7.25.4":
"integrity" "sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.25.4.tgz"
"version" "7.25.4"
dependencies:
"@babel/types" "^7.25.4"
"@babel/plugin-syntax-async-generators@^7.8.4":
"integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
"version" "7.8.4"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-bigint@^7.8.3":
"integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-class-properties@^7.12.13":
"integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-class-static-block@^7.14.5":
"integrity" "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-import-attributes@^7.24.7":
"integrity" "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz"
"version" "7.24.7"
dependencies:
"@babel/helper-plugin-utils" "^7.24.7"
"@babel/plugin-syntax-import-meta@^7.10.4":
"integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings@^7.8.3":
"integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-jsx@^7.7.2":
"integrity" "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz"
"version" "7.24.7"
dependencies:
"@babel/helper-plugin-utils" "^7.24.7"
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
"integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
"integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-numeric-separator@^7.10.4":
"integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
"integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
"integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-chaining@^7.8.3":
"integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-private-property-in-object@^7.14.5":
"integrity" "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-top-level-await@^7.14.5":
"integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.7.2":
"integrity" "sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz"
"version" "7.25.4"
dependencies:
"@babel/helper-plugin-utils" "^7.24.8"
"@babel/template@^7.25.0", "@babel/template@^7.3.3":
"integrity" "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz"
"version" "7.25.0"
dependencies:
"@babel/code-frame" "^7.24.7"
"@babel/parser" "^7.25.0"
"@babel/types" "^7.25.0"
"@babel/traverse@^7.24.7", "@babel/traverse@^7.25.2":
"integrity" "sha512-VJ4XsrD+nOvlXyLzmLzUs/0qjFS4sK30te5yEFlvbbUNEgKaVb2BHZUpAL+ttLPQAHNrsI3zZisbfha5Cvr8vg=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.4.tgz"
"version" "7.25.4"
dependencies:
"@babel/code-frame" "^7.24.7"
"@babel/generator" "^7.25.4"
"@babel/parser" "^7.25.4"
"@babel/template" "^7.25.0"
"@babel/types" "^7.25.4"
"debug" "^4.3.1"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.4", "@babel/types@^7.3.3":
"integrity" "sha512-zQ1ijeeCXVEh+aNL0RlmkPkG8HUiDcU2pzQQFjtbntgAczRASFzj4H+6+bV+dy1ntKR14I/DypeuRG1uma98iQ=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.25.4.tgz"
"version" "7.25.4"
dependencies:
"@babel/helper-string-parser" "^7.24.8"
"@babel/helper-validator-identifier" "^7.24.7"
"to-fast-properties" "^2.0.0"
"@bcoe/v8-coverage@^0.2.3":
"integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
"resolved" "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
"version" "0.2.3"
"@chainsafe/bls-hd-key@^0.3.0":
"integrity" "sha512-LsYYnfBEEmqGFPDm8hQN3Kc+v9wPFnhn+CToD403KEynUiUSHKLAf5B6UCY5eooShDOcaGCUgAUhIw1CmpEf3Q=="
"resolved" "https://registry.npmjs.org/@chainsafe/bls-hd-key/-/bls-hd-key-0.3.0.tgz"
"version" "0.3.0"
dependencies:
"@noble/hashes" "^1.0.0"
"@chainsafe/bls-keygen@^0.4.0":
"integrity" "sha512-wqtuj4G/sWpIugJW1mb/nSTwcTuZKqB3DS3ANUIOn7pva8EB6LfxgIL34o4qk3lti/8Mdxqtqc2n4xRszrNdzA=="
"resolved" "https://registry.npmjs.org/@chainsafe/bls-keygen/-/bls-keygen-0.4.0.tgz"
"version" "0.4.0"
dependencies:
"@chainsafe/bls-hd-key" "^0.3.0"
"@noble/hashes" "^1.0.0"
"@scure/bip39" "^1.0.0"
"@chainsafe/bls@^7.1.3":
"integrity" "sha512-d21eYdWxDSb63n7nB+viD+3U4yJW8huiKRibJyh8X7btPLoXkvtmDf7geYyHVbKfLDgbuHkc+b48pfPQkUTLxA=="
"resolved" "https://registry.npmjs.org/@chainsafe/bls/-/bls-7.1.3.tgz"
"version" "7.1.3"
dependencies:
"@chainsafe/bls-keygen" "^0.4.0"
"bls-eth-wasm" "^0.4.8"
"@chainsafe/blst@^0.2.10", "@chainsafe/blst@^0.2.4":
"integrity" "sha512-URyOLq5GtxBoxibOnd2pgLydCy0UZzbiIIBcsRAvGxAsRzjZL04TsQfwRkz5aphU3a1ebeRoMmI/HHyMCiFSQg=="
"resolved" "https://registry.npmjs.org/@chainsafe/blst/-/blst-0.2.11.tgz"
"version" "0.2.11"
dependencies:
"@types/tar" "^6.1.4"
"node-fetch" "^2.6.1"
"node-gyp" "^8.4.0"
"@chainsafe/is-ip@^2.0.1":
"integrity" "sha512-ndGqEMG1W5WkGagaqOZHpPU172AGdxr+LD15sv3WIUvT5oCFUrG1Y0CW/v2Egwj4JXEvSibaIIIqImsm98y1nA=="
"resolved" "https://registry.npmjs.org/@chainsafe/is-ip/-/is-ip-2.0.2.tgz"
"version" "2.0.2"
"@chainsafe/netmask@^2.0.0":
"integrity" "sha512-I3Z+6SWUoaljh3TBzCnCxjlUyN8tA+NAk5L6m9IxvCf1BENQTePzPMis97CoN/iMW1St3WN+AWCCRp+TTBRiDg=="
"resolved" "https://registry.npmjs.org/@chainsafe/netmask/-/netmask-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"@chainsafe/is-ip" "^2.0.1"
"@cspotcode/source-map-support@^0.8.0":
"integrity" "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="
"resolved" "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz"
"version" "0.8.1"
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
"@didtools/cacao@^3.0.0", "@didtools/cacao@^3.0.1":
"integrity" "sha512-vV1JirxqVsBf2dqdvoS/msNN8fabvMfseZB0kf1FG8TbosrHd81+hgDOlQMZit7zJbTk5g3CGkZg3b7iYKkynw=="
"resolved" "https://registry.npmjs.org/@didtools/cacao/-/cacao-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@didtools/codecs" "^3.0.0"
"@didtools/siwx" "2.0.0"
"@ipld/dag-cbor" "^9.0.7"
"caip" "^1.1.0"
"multiformats" "^13.0.0"
"uint8arrays" "^5.0.1"
"viem" "^1.21.4"
"@didtools/codecs@^3.0.0":
"integrity" "sha512-TemoVySZrs1XflMtOkwVTATtZEs42Mh2yk9SoYvBXES6Mz30PBJCm8v7U/2y1N5lrjb2cAPWs48Ryc7paetSxQ=="
"resolved" "https://registry.npmjs.org/@didtools/codecs/-/codecs-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"codeco" "^1.2.0"
"multiformats" "^13.0.0"
"uint8arrays" "^5.0.1"
"@didtools/pkh-ethereum@^0.5.0":
"integrity" "sha512-2S+TS/I2jVTNnkgyslxQvSjCzzLsCabjXD2UWjJnVkAoxeJgPE9GvY1JhTDgvVLfxLPnYwTIP/O1WR9wJcDkFg=="
"resolved" "https://registry.npmjs.org/@didtools/pkh-ethereum/-/pkh-ethereum-0.5.0.tgz"
"version" "0.5.0"
dependencies:
"@didtools/cacao" "^3.0.0"
"@noble/curves" "^1.2.0"
"@noble/hashes" "^1.3.2"
"@stablelib/random" "^1.0.2"
"caip" "^1.1.0"
"@didtools/[email protected]":
"integrity" "sha512-eqBtI5dZrptXTCyadnhvU0di/KvumoByT7F8KB/8BLU7M1lltfEmvf/c5AnsyrWO9338ygCs2u5mKz1p1Zdj5A=="
"resolved" "https://registry.npmjs.org/@didtools/siwx/-/siwx-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"codeco" "^1.2.0"
"@esbuild-plugins/node-globals-polyfill@^0.2.3":
"integrity" "sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw=="
"resolved" "https://registry.npmjs.org/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.2.3.tgz"
"version" "0.2.3"
"@esbuild-plugins/node-modules-polyfill@^0.2.2":
"integrity" "sha512-LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA=="
"resolved" "https://registry.npmjs.org/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.2.2.tgz"
"version" "0.2.2"
dependencies:
"escape-string-regexp" "^4.0.0"
"rollup-plugin-node-polyfills" "^0.2.1"
"@esbuild/[email protected]":
"integrity" "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ=="
"resolved" "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz"
"version" "0.21.5"
"@fastify/busboy@^2.0.0":
"integrity" "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA=="
"resolved" "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz"
"version" "2.1.1"
"@gar/promisify@^1.0.1":
"integrity" "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="
"resolved" "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz"
"version" "1.1.3"
"@hiveio/dhive@^1.2.8":
"integrity" "sha512-5MflC3/dMPSN5ZJ/6970PAubRTzwyHDxxb62Z6fs1NXA7Ut79yoNpFGXO9BlsdEmdcFeVsfb9vJx1e0enDQ5bQ=="
"resolved" "https://registry.npmjs.org/@hiveio/dhive/-/dhive-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"bigi" "^1.4.2"
"bs58" "^4.0.1"
"bytebuffer" "^5.0.1"
"core-js" "^3.6.4"
"cross-fetch" "^3.0.4"
"ecurve" "^1.0.6"
"https" "^1.0.0"
"jsbi" "^3.1.4"
"node-fetch" "^2.6.0"
"ripemd160" "^2.0.2"
"secp256k1" "^3.8.0"
"verror" "^1.10.0"
"whatwg-fetch" "^3.0.0"
"@ipld/dag-cbor@^9.0.0", "@ipld/dag-cbor@^9.0.7":
"integrity" "sha512-nyY48yE7r3dnJVlxrdaimrbloh4RokQaNRdI//btfTkcTEZbpmSrbYcBQ4VKTf8ZxXAOUJy4VsRpkJo+y9RTnA=="
"resolved" "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-9.2.1.tgz"
"version" "9.2.1"
dependencies:
"cborg" "^4.0.0"
"multiformats" "^13.1.0"
"@ipld/dag-json@^10.0.0":
"integrity" "sha512-NnU8HdHKwAoGyrW3S09NMa8aZw0tImLRyR64hoafpLpDpAbA9g1+fb24JsdlugbL4sXUQVwDVA+qK4Ud8V83lA=="
"resolved" "https://registry.npmjs.org/@ipld/dag-json/-/dag-json-10.2.2.tgz"
"version" "10.2.2"
dependencies:
"cborg" "^4.0.0"
"multiformats" "^13.1.0"
"@ipld/dag-pb@^4.0.0":
"integrity" "sha512-BSztO4l3C+ya9HjCaQot26Y4AVsqIKtnn6+23ubc1usucnf6yoTBme18oCCdM6gKBMxuPqju5ye3lh9WEJsdeQ=="
"resolved" "https://registry.npmjs.org/@ipld/dag-pb/-/dag-pb-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"multiformats" "^13.1.0"
"@isaacs/cliui@^8.0.2":
"integrity" "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="
"resolved" "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz"
"version" "8.0.2"
dependencies:
"string-width" "^5.1.2"
"string-width-cjs" "npm:string-width@^4.2.0"
"strip-ansi" "^7.0.1"
"strip-ansi-cjs" "npm:strip-ansi@^6.0.1"
"wrap-ansi" "^8.1.0"
"wrap-ansi-cjs" "npm:wrap-ansi@^7.0.0"
"@istanbuljs/load-nyc-config@^1.0.0":
"integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="
"resolved" "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"camelcase" "^5.3.1"
"find-up" "^4.1.0"
"get-package-type" "^0.1.0"
"js-yaml" "^3.13.1"
"resolve-from" "^5.0.0"
"@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3":
"integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="
"resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"
"version" "0.1.3"
"@jest/console@^29.7.0":
"integrity" "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg=="
"resolved" "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/types" "^29.6.3"
"@types/node" "*"
"chalk" "^4.0.0"
"jest-message-util" "^29.7.0"
"jest-util" "^29.7.0"
"slash" "^3.0.0"
"@jest/core@^29.7.0":
"integrity" "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg=="
"resolved" "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/console" "^29.7.0"
"@jest/reporters" "^29.7.0"
"@jest/test-result" "^29.7.0"
"@jest/transform" "^29.7.0"
"@jest/types" "^29.6.3"
"@types/node" "*"
"ansi-escapes" "^4.2.1"
"chalk" "^4.0.0"
"ci-info" "^3.2.0"
"exit" "^0.1.2"
"graceful-fs" "^4.2.9"
"jest-changed-files" "^29.7.0"
"jest-config" "^29.7.0"
"jest-haste-map" "^29.7.0"
"jest-message-util" "^29.7.0"
"jest-regex-util" "^29.6.3"
"jest-resolve" "^29.7.0"
"jest-resolve-dependencies" "^29.7.0"
"jest-runner" "^29.7.0"
"jest-runtime" "^29.7.0"
"jest-snapshot" "^29.7.0"
"jest-util" "^29.7.0"
"jest-validate" "^29.7.0"
"jest-watcher" "^29.7.0"
"micromatch" "^4.0.4"
"pretty-format" "^29.7.0"
"slash" "^3.0.0"
"strip-ansi" "^6.0.0"
"@jest/create-cache-key-function@^29.7.0":
"integrity" "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA=="
"resolved" "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/types" "^29.6.3"
"@jest/environment@^29.7.0":
"integrity" "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw=="
"resolved" "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/fake-timers" "^29.7.0"
"@jest/types" "^29.6.3"
"@types/node" "*"
"jest-mock" "^29.7.0"
"@jest/expect-utils@^29.7.0":
"integrity" "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA=="
"resolved" "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"jest-get-type" "^29.6.3"
"@jest/expect@^29.7.0":
"integrity" "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ=="
"resolved" "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"expect" "^29.7.0"
"jest-snapshot" "^29.7.0"
"@jest/fake-timers@^29.7.0":
"integrity" "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ=="
"resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/types" "^29.6.3"
"@sinonjs/fake-timers" "^10.0.2"
"@types/node" "*"
"jest-message-util" "^29.7.0"
"jest-mock" "^29.7.0"
"jest-util" "^29.7.0"
"@jest/globals@^29.7.0":
"integrity" "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ=="
"resolved" "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/environment" "^29.7.0"
"@jest/expect" "^29.7.0"
"@jest/types" "^29.6.3"
"jest-mock" "^29.7.0"
"@jest/reporters@^29.7.0":
"integrity" "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg=="
"resolved" "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
"@jest/console" "^29.7.0"
"@jest/test-result" "^29.7.0"
"@jest/transform" "^29.7.0"
"@jest/types" "^29.6.3"
"@jridgewell/trace-mapping" "^0.3.18"
"@types/node" "*"
"chalk" "^4.0.0"
"collect-v8-coverage" "^1.0.0"
"exit" "^0.1.2"
"glob" "^7.1.3"
"graceful-fs" "^4.2.9"
"istanbul-lib-coverage" "^3.0.0"
"istanbul-lib-instrument" "^6.0.0"
"istanbul-lib-report" "^3.0.0"
"istanbul-lib-source-maps" "^4.0.0"
"istanbul-reports" "^3.1.3"
"jest-message-util" "^29.7.0"
"jest-util" "^29.7.0"
"jest-worker" "^29.7.0"
"slash" "^3.0.0"
"string-length" "^4.0.1"
"strip-ansi" "^6.0.0"
"v8-to-istanbul" "^9.0.1"
"@jest/schemas@^29.6.3":
"integrity" "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA=="
"resolved" "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz"
"version" "29.6.3"
dependencies:
"@sinclair/typebox" "^0.27.8"
"@jest/source-map@^29.6.3":
"integrity" "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw=="
"resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz"
"version" "29.6.3"
dependencies:
"@jridgewell/trace-mapping" "^0.3.18"
"callsites" "^3.0.0"
"graceful-fs" "^4.2.9"
"@jest/test-result@^29.7.0":
"integrity" "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA=="
"resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/console" "^29.7.0"
"@jest/types" "^29.6.3"
"@types/istanbul-lib-coverage" "^2.0.0"
"collect-v8-coverage" "^1.0.0"
"@jest/test-sequencer@^29.7.0":
"integrity" "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw=="
"resolved" "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/test-result" "^29.7.0"
"graceful-fs" "^4.2.9"
"jest-haste-map" "^29.7.0"
"slash" "^3.0.0"
"@jest/transform@^29.0.0", "@jest/transform@^29.7.0":
"integrity" "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw=="
"resolved" "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@babel/core" "^7.11.6"
"@jest/types" "^29.6.3"
"@jridgewell/trace-mapping" "^0.3.18"
"babel-plugin-istanbul" "^6.1.1"
"chalk" "^4.0.0"
"convert-source-map" "^2.0.0"
"fast-json-stable-stringify" "^2.1.0"
"graceful-fs" "^4.2.9"
"jest-haste-map" "^29.7.0"
"jest-regex-util" "^29.6.3"
"jest-util" "^29.7.0"
"micromatch" "^4.0.4"
"pirates" "^4.0.4"
"slash" "^3.0.0"
"write-file-atomic" "^4.0.2"
"@jest/types@^29.0.0", "@jest/types@^29.6.3":
"integrity" "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw=="
"resolved" "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz"
"version" "29.6.3"
dependencies:
"@jest/schemas" "^29.6.3"
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
"@types/node" "*"
"@types/yargs" "^17.0.8"
"chalk" "^4.0.0"
"@jridgewell/gen-mapping@^0.3.5":
"integrity" "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz"
"version" "0.3.5"
dependencies:
"@jridgewell/set-array" "^1.2.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.24"
"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0":
"integrity" "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz"
"version" "3.1.2"
"@jridgewell/set-array@^1.2.1":
"integrity" "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz"
"version" "1.2.1"
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
"integrity" "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz"
"version" "1.5.0"
"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
"integrity" "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz"
"version" "0.3.25"
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
"@jridgewell/[email protected]":
"integrity" "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz"
"version" "0.3.9"
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@leichtgewicht/ip-codec@^2.0.1":
"integrity" "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw=="
"resolved" "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz"
"version" "2.0.5"
"@libp2p/crypto@^1.0.11":
"integrity" "sha512-Oeg0Eb/EvAho0gVkOgemXEgrVxWaT3x/DpFgkBdZ9qGxwq75w/E/oPc7souqBz+l1swfz37GWnwV7bIb4Xv5Ag=="
"resolved" "https://registry.npmjs.org/@libp2p/crypto/-/crypto-1.0.17.tgz"
"version" "1.0.17"
dependencies:
"@libp2p/interface-keys" "^1.0.2"
"@libp2p/interfaces" "^3.2.0"
"@noble/ed25519" "^1.6.0"
"@noble/secp256k1" "^1.5.4"
"multiformats" "^11.0.0"
"node-forge" "^1.1.0"
"protons-runtime" "^5.0.0"
"uint8arraylist" "^2.4.3"
"uint8arrays" "^4.0.2"
"@libp2p/interface-connection@^4.0.0":
"integrity" "sha512-6xx/NmEc84HX7QmsjSC3hHredQYjHv4Dkf4G27adAPf+qN+vnPxmQ7gaTnk243a0++DOFTbZ2gKX/15G2B6SRg=="
"resolved" "https://registry.npmjs.org/@libp2p/interface-connection/-/interface-connection-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"@libp2p/interface-peer-id" "^2.0.0"
"@libp2p/interfaces" "^3.0.0"
"@multiformats/multiaddr" "^12.0.0"
"it-stream-types" "^1.0.4"
"uint8arraylist" "^2.1.2"
"@libp2p/interface-keychain@^2.0.0":
"integrity" "sha512-mb7QNgn9fIvC7CaJCi06GJ+a6DN6RVT9TmEi0NmedZGATeCArPeWWG7r7IfxNVXb9cVOOE1RzV1swK0ZxEJF9Q=="
"resolved" "https://registry.npmjs.org/@libp2p/interface-keychain/-/interface-keychain-2.0.5.tgz"
"version" "2.0.5"
dependencies:
"@libp2p/interface-peer-id" "^2.0.0"
"multiformats" "^11.0.0"
"@libp2p/interface-keys@^1.0.2":
"integrity" "sha512-CJ1SlrwuoHMquhEEWS77E+4vv7hwB7XORkqzGQrPQmA9MRdIEZRS64bA4JqCLUDa4ltH0l+U1vp0oZHLT67NEA=="
"resolved" "https://registry.npmjs.org/@libp2p/interface-keys/-/interface-keys-1.0.8.tgz"
"version" "1.0.8"
"@libp2p/interface-peer-id@^2.0.0", "@libp2p/interface-peer-id@^2.0.2":
"integrity" "sha512-9pZp9zhTDoVwzRmp0Wtxw0Yfa//Yc0GqBCJi3EznBDE6HGIAVvppR91wSh2knt/0eYg0AQj7Y35VSesUTzMCUg=="
"resolved" "https://registry.npmjs.org/@libp2p/interface-peer-id/-/interface-peer-id-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"multiformats" "^11.0.0"
"@libp2p/interface-peer-info@^1.0.2":
"integrity" "sha512-HQlo8NwQjMyamCHJrnILEZz+YwEOXCB2sIIw3slIrhVUYeYlTaia1R6d9umaAeLHa255Zmdm4qGH8rJLRqhCcg=="
"resolved" "https://registry.npmjs.org/@libp2p/interface-peer-info/-/interface-peer-info-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"@libp2p/interface-peer-id" "^2.0.0"
"@multiformats/multiaddr" "^12.0.0"
"@libp2p/interface-pubsub@^3.0.0":
"integrity" "sha512-+c74EVUBTfw2sx1GE/z/IjsYO6dhur+ukF0knAppeZsRQ1Kgg6K5R3eECtT28fC6dBWLjFpAvW/7QGfiDAL4RA=="
"resolved" "https://registry.npmjs.org/@libp2p/interface-pubsub/-/interface-pubsub-3.0.7.tgz"
"version" "3.0.7"
dependencies:
"@libp2p/interface-connection" "^4.0.0"
"@libp2p/interface-peer-id" "^2.0.0"
"@libp2p/interfaces" "^3.0.0"
"it-pushable" "^3.0.0"
"uint8arraylist" "^2.1.2"
"@libp2p/interfaces@^3.0.0", "@libp2p/interfaces@^3.2.0":
"integrity" "sha512-p/M7plbrxLzuQchvNwww1Was7ZeGE2NaOFulMaZBYIihU8z3fhaV+a033OqnC/0NTX/yhfdNOG7znhYq3XoR/g=="
"resolved" "https://registry.npmjs.org/@libp2p/interfaces/-/interfaces-3.3.2.tgz"
"version" "3.3.2"
"@libp2p/logger@^2.0.5":
"integrity" "sha512-2UbzDPctg3cPupF6jrv6abQnAUTrbLybNOj0rmmrdGm1cN2HJ1o/hBu0sXuq4KF9P1h/eVRn1HIRbVIEKnEJrA=="
"resolved" "https://registry.npmjs.org/@libp2p/logger/-/logger-2.1.1.tgz"
"version" "2.1.1"
dependencies:
"@libp2p/interface-peer-id" "^2.0.2"
"@multiformats/multiaddr" "^12.1.3"
"debug" "^4.3.4"
"interface-datastore" "^8.2.0"
"multiformats" "^11.0.2"
"@libp2p/peer-id@^2.0.0":
"integrity" "sha512-gcOsN8Fbhj6izIK+ejiWsqiqKeJ2yWPapi/m55VjOvDa52/ptQzZszxQP8jUk93u36de92ATFXDfZR/Bi6eeUQ=="
"resolved" "https://registry.npmjs.org/@libp2p/peer-id/-/peer-id-2.0.4.tgz"
"version" "2.0.4"
dependencies:
"@libp2p/interface-peer-id" "^2.0.0"
"@libp2p/interfaces" "^3.2.0"
"multiformats" "^11.0.0"
"uint8arrays" "^4.0.2"
"@multiformats/base-x@^4.0.1":
"integrity" "sha512-eMk0b9ReBbV23xXU693TAIrLyeO5iTgBZGSJfpqriG8UkYvr/hC9u9pyMlAakDNHWmbhMZCDs6KQO0jzKD8OTw=="
"resolved" "https://registry.npmjs.org/@multiformats/base-x/-/base-x-4.0.1.tgz"
"version" "4.0.1"
"@multiformats/dns@^1.0.3":
"integrity" "sha512-nt/5UqjMPtyvkG9BQYdJ4GfLK3nMqGpFZOzf4hAmIa0sJh2LlS9YKXZ4FgwBDsaHvzZqR/rUFIywIc7pkHNNuw=="
"resolved" "https://registry.npmjs.org/@multiformats/dns/-/dns-1.0.6.tgz"
"version" "1.0.6"
dependencies:
"@types/dns-packet" "^5.6.5"
"buffer" "^6.0.3"
"dns-packet" "^5.6.1"
"hashlru" "^2.3.0"
"p-queue" "^8.0.1"
"progress-events" "^1.0.0"
"uint8arrays" "^5.0.2"
"@multiformats/multiaddr-to-uri@^9.0.1":
"integrity" "sha512-4eiN5iEiQfy2A98BxekUfW410L/ivg0sgjYSgSqmklnrBhK+QyMz4yqgfkub8xDTXOc7O5jp4+LVyM3ZqMeWNw=="
"resolved" "https://registry.npmjs.org/@multiformats/multiaddr-to-uri/-/multiaddr-to-uri-9.0.8.tgz"
"version" "9.0.8"
dependencies:
"@multiformats/multiaddr" "^12.0.0"
"@multiformats/multiaddr@^11.1.5":
"integrity" "sha512-doST0+aB7/3dGK9+U5y3mtF3jq85KGbke1QiH0KE1F5mGQ9y56mFebTeu2D9FNOm+OT6UHb8Ss8vbSnpGjeLNw=="
"resolved" "https://registry.npmjs.org/@multiformats/multiaddr/-/multiaddr-11.6.1.tgz"
"version" "11.6.1"
dependencies:
"@chainsafe/is-ip" "^2.0.1"
"dns-over-http-resolver" "^2.1.0"
"err-code" "^3.0.1"
"multiformats" "^11.0.0"
"uint8arrays" "^4.0.2"
"varint" "^6.0.0"
"@multiformats/multiaddr@^12.0.0", "@multiformats/multiaddr@^12.1.10", "@multiformats/multiaddr@^12.1.3":
"integrity" "sha512-yoGODQY4nIj41ENJClucS8FtBoe8w682bzbKldEQr9lSlfdHqAsRC+vpJAOBpiMwPps1tHua4kxrDmvprdhoDQ=="
"resolved" "https://registry.npmjs.org/@multiformats/multiaddr/-/multiaddr-12.3.1.tgz"
"version" "12.3.1"
dependencies:
"@chainsafe/is-ip" "^2.0.1"
"@chainsafe/netmask" "^2.0.0"
"@multiformats/dns" "^1.0.3"
"multiformats" "^13.0.0"
"uint8-varint" "^2.0.1"
"uint8arrays" "^5.0.0"
"@noble/ciphers@^0.4.0":
"integrity" "sha512-QCOA9cgf3Rc33owG0AYBB9wszz+Ul2kramWN8tXG44Gyciud/tbkEqvxRF/IpqQaBpRBNi9f4jdNxqB2CQCIXg=="
"resolved" "https://registry.npmjs.org/@noble/ciphers/-/ciphers-0.4.1.tgz"
"version" "0.4.1"
"@noble/curves@^1.0.0", "@noble/curves@^1.2.0":
"integrity" "sha512-J5EKamIHnKPyClwVrzmaf5wSdQXgdHcPZIZLu3bwnbeCx8/7NPK5q2ZBWF+5FvYGByjiQQsJYX6jfgB2wDPn3A=="
"resolved" "https://registry.npmjs.org/@noble/curves/-/curves-1.5.0.tgz"
"version" "1.5.0"
dependencies:
"@noble/hashes" "1.4.0"
"@noble/curves@~1.2.0":
"integrity" "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw=="
"resolved" "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz"
"version" "1.2.0"
dependencies:
"@noble/hashes" "1.3.2"
"@noble/[email protected]":
"integrity" "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw=="
"resolved" "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz"
"version" "1.2.0"
dependencies:
"@noble/hashes" "1.3.2"
"@noble/ed25519@^1.6.0":
"integrity" "sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ=="
"resolved" "https://registry.npmjs.org/@noble/ed25519/-/ed25519-1.7.3.tgz"
"version" "1.7.3"
"@noble/hashes@^1.0.0", "@noble/hashes@^1.2.0", "@noble/hashes@^1.3.0", "@noble/hashes@^1.3.2", "@noble/hashes@~1.4.0", "@noble/[email protected]":
"integrity" "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg=="
"resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz"
"version" "1.4.0"
"@noble/hashes@~1.3.0", "@noble/[email protected]":
"integrity" "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ=="
"resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz"
"version" "1.3.2"
"@noble/hashes@~1.3.2":
"integrity" "sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA=="
"resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.3.tgz"
"version" "1.3.3"
"@noble/secp256k1@^1.5.4":
"integrity" "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw=="
"resolved" "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz"
"version" "1.7.1"
"@npmcli/fs@^1.0.0":
"integrity" "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ=="
"resolved" "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"@gar/promisify" "^1.0.1"
"semver" "^7.3.5"
"@npmcli/move-file@^1.0.1":
"integrity" "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="
"resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"mkdirp" "^1.0.4"
"rimraf" "^3.0.2"
"@pkgjs/parseargs@^0.11.0":
"integrity" "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="
"resolved" "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz"
"version" "0.11.0"
"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2":
"integrity" "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ=="
"resolved" "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz"
"version" "1.1.2"
"@protobufjs/base64@^1.1.2":
"integrity" "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg=="
"resolved" "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz"
"version" "1.1.2"
"@protobufjs/codegen@^2.0.4":
"integrity" "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg=="
"resolved" "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz"
"version" "2.0.4"
"@protobufjs/eventemitter@^1.1.0":
"integrity" "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q=="
"resolved" "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz"
"version" "1.1.0"
"@protobufjs/fetch@^1.1.0":
"integrity" "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ=="
"resolved" "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"@protobufjs/aspromise" "^1.1.1"
"@protobufjs/inquire" "^1.1.0"
"@protobufjs/float@^1.0.2":
"integrity" "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ=="
"resolved" "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz"
"version" "1.0.2"
"@protobufjs/inquire@^1.1.0":
"integrity" "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q=="
"resolved" "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz"
"version" "1.1.0"
"@protobufjs/path@^1.1.2":
"integrity" "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA=="
"resolved" "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz"
"version" "1.1.2"
"@protobufjs/pool@^1.1.0":
"integrity" "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw=="
"resolved" "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz"
"version" "1.1.0"
"@protobufjs/utf8@^1.1.0":
"integrity" "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw=="
"resolved" "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz"