-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage-lock.json
6836 lines (6836 loc) · 260 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": "tezos-client",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "tezos-client",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@taquito/signer": "^14.0.0",
"@taquito/taquito": "^13.0.1",
"@taquito/tezbridge-signer": "^14.0.0",
"@taquito/tzip12": "^14.0.0",
"@taquito/tzip16": "^14.0.0",
"@taquito/utils": "^14.0.0",
"axios": "^1.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"node-fetch": "^3.2.4",
"nodemon": "^2.0.16",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0"
},
"devDependencies": {
"@taqueria/plugin-metadata": "^0.20.2",
"@taqueria/plugin-smartpy": "^0.20.2"
}
},
"node_modules/@apidevtools/json-schema-ref-parser": {
"version": "9.0.9",
"resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz",
"integrity": "sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==",
"dependencies": {
"@jsdevtools/ono": "^7.1.3",
"@types/json-schema": "^7.0.6",
"call-me-maybe": "^1.0.1",
"js-yaml": "^4.1.0"
}
},
"node_modules/@apidevtools/openapi-schemas": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@apidevtools/openapi-schemas/-/openapi-schemas-2.1.0.tgz",
"integrity": "sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==",
"engines": {
"node": ">=10"
}
},
"node_modules/@apidevtools/swagger-methods": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@apidevtools/swagger-methods/-/swagger-methods-3.0.2.tgz",
"integrity": "sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg=="
},
"node_modules/@apidevtools/swagger-parser": {
"version": "10.0.2",
"resolved": "https://registry.npmjs.org/@apidevtools/swagger-parser/-/swagger-parser-10.0.2.tgz",
"integrity": "sha512-JFxcEyp8RlNHgBCE98nwuTkZT6eNFPc1aosWV6wPcQph72TSEEu1k3baJD4/x1qznU+JiDdz8F5pTwabZh+Dhg==",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.6",
"@apidevtools/openapi-schemas": "^2.0.4",
"@apidevtools/swagger-methods": "^3.0.2",
"@jsdevtools/ono": "^7.1.3",
"call-me-maybe": "^1.0.1",
"z-schema": "^4.2.3"
},
"peerDependencies": {
"openapi-types": ">=7"
}
},
"node_modules/@babel/runtime": {
"version": "7.19.4",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz",
"integrity": "sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==",
"dev": true,
"dependencies": {
"regenerator-runtime": "^0.13.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@esbuild/android-arm": {
"version": "0.15.12",
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.12.tgz",
"integrity": "sha512-IC7TqIqiyE0MmvAhWkl/8AEzpOtbhRNDo7aph47We1NbE5w2bt/Q+giAhe0YYeVpYnIhGMcuZY92qDK6dQauvA==",
"cpu": [
"arm"
],
"dev": true,
"optional": true,
"os": [
"android"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@esbuild/linux-loong64": {
"version": "0.15.12",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.12.tgz",
"integrity": "sha512-tZEowDjvU7O7I04GYvWQOS4yyP9E/7YlsB0jjw1Ycukgr2ycEzKyIk5tms5WnLBymaewc6VmRKnn5IJWgK4eFw==",
"cpu": [
"loong64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@jsdevtools/ono": {
"version": "7.1.3",
"resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz",
"integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true,
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@peculiar/asn1-schema": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.3.0.tgz",
"integrity": "sha512-DtNLAG4vmDrdSJFPe7rypkcj597chNQL7u+2dBtYo5mh7VW2+im6ke+O0NVr8W1f4re4C3F71LhoMb0Yxqa48Q==",
"dev": true,
"dependencies": {
"asn1js": "^3.0.5",
"pvtsutils": "^1.3.2",
"tslib": "^2.4.0"
}
},
"node_modules/@peculiar/json-schema": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz",
"integrity": "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==",
"dev": true,
"dependencies": {
"tslib": "^2.0.0"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/@peculiar/webcrypto": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.0.tgz",
"integrity": "sha512-U58N44b2m3OuTgpmKgf0LPDOmP3bhwNz01vAnj1mBwxBASRhptWYK+M3zG+HBkDqGQM+bFsoIihTW8MdmPXEqg==",
"dev": true,
"dependencies": {
"@peculiar/asn1-schema": "^2.1.6",
"@peculiar/json-schema": "^1.1.12",
"pvtsutils": "^1.3.2",
"tslib": "^2.4.0",
"webcrypto-core": "^1.7.4"
},
"engines": {
"node": ">=10.12.0"
}
},
"node_modules/@stablelib/binary": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/binary/-/binary-1.0.1.tgz",
"integrity": "sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==",
"dependencies": {
"@stablelib/int": "^1.0.1"
}
},
"node_modules/@stablelib/blake2b": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/blake2b/-/blake2b-1.0.1.tgz",
"integrity": "sha512-B3KyKoBAjkIFeH7romcF96i+pVFYk7K2SBQ1pZvaxV+epSBXJ+n0C66esUhyz6FF+5FbdQVm77C5fzGFcEZpKA==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/hash": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/bytes": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/bytes/-/bytes-1.0.1.tgz",
"integrity": "sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ=="
},
"node_modules/@stablelib/constant-time": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/constant-time/-/constant-time-1.0.1.tgz",
"integrity": "sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg=="
},
"node_modules/@stablelib/ed25519": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@stablelib/ed25519/-/ed25519-1.0.3.tgz",
"integrity": "sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==",
"dependencies": {
"@stablelib/random": "^1.0.2",
"@stablelib/sha512": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/hash": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/hash/-/hash-1.0.1.tgz",
"integrity": "sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg=="
},
"node_modules/@stablelib/int": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/int/-/int-1.0.1.tgz",
"integrity": "sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w=="
},
"node_modules/@stablelib/keyagreement": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/keyagreement/-/keyagreement-1.0.1.tgz",
"integrity": "sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==",
"dependencies": {
"@stablelib/bytes": "^1.0.1"
}
},
"node_modules/@stablelib/nacl": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@stablelib/nacl/-/nacl-1.0.4.tgz",
"integrity": "sha512-PJ2U/MrkXSKUM8C4qFs87WeCNxri7KQwR8Cdwm9q2sweGuAtTvOJGuW0F3N+zn+ySLPJA98SYWSSpogMJ1gCmw==",
"dependencies": {
"@stablelib/poly1305": "^1.0.1",
"@stablelib/random": "^1.0.2",
"@stablelib/wipe": "^1.0.1",
"@stablelib/x25519": "^1.0.3",
"@stablelib/xsalsa20": "^1.0.2"
}
},
"node_modules/@stablelib/poly1305": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/poly1305/-/poly1305-1.0.1.tgz",
"integrity": "sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==",
"dependencies": {
"@stablelib/constant-time": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/random": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@stablelib/random/-/random-1.0.2.tgz",
"integrity": "sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/salsa20": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@stablelib/salsa20/-/salsa20-1.0.2.tgz",
"integrity": "sha512-nfjKzw0KTKrrKBasEP+j7UP4I8Xudom8lVZIBCp0kQNARXq72IlSic0oabg2FC1NU68L4RdHrNJDd8bFwrphYA==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/constant-time": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/sha512": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/sha512/-/sha512-1.0.1.tgz",
"integrity": "sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/hash": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/wipe": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/wipe/-/wipe-1.0.1.tgz",
"integrity": "sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg=="
},
"node_modules/@stablelib/x25519": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@stablelib/x25519/-/x25519-1.0.3.tgz",
"integrity": "sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==",
"dependencies": {
"@stablelib/keyagreement": "^1.0.1",
"@stablelib/random": "^1.0.2",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/xsalsa20": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@stablelib/xsalsa20/-/xsalsa20-1.0.2.tgz",
"integrity": "sha512-7XdBGbcNgBShmuhDXv1G1WPVCkjZdkb1oPMzSidO7Fve0MHntH6TjFkj5bfLI+aRE+61weO076vYpP/jmaAYog==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/salsa20": "^1.0.2",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@taqueria/node-sdk": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@taqueria/node-sdk/-/node-sdk-0.20.2.tgz",
"integrity": "sha512-uUXI4wFZGUi/xE606XK45SlEFlQDg3AhdP0KIpn57PnuULh+3gn2iWZaWvdjir12qxwxqsjl6vr52WbHV5WAGA==",
"dev": true,
"dependencies": {
"@taqueria/protocol": "^0.20.2",
"i18next": "^21.8.4",
"project-name-generator": "^2.1.9",
"rambda": "^7.1.4",
"stacktrace-js": "^2.0.2",
"ts-pattern": "^4.0.2",
"yargs": "^17.5.1",
"zod": "^3.17.3"
}
},
"node_modules/@taqueria/plugin-metadata": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@taqueria/plugin-metadata/-/plugin-metadata-0.20.2.tgz",
"integrity": "sha512-tJZwoDsOWWUp5qPr3Yqg7RBRFrBA2Bdmr0pA5lpqcG8GQKH8hroDaeCxwNdc0G1XSSzVqGszBV1/EYc+CIN0zw==",
"dev": true,
"dependencies": {
"@taqueria/node-sdk": "^0.20.2",
"@taqueria/protocol": "^0.20.2",
"prompts": "^2.4.2"
}
},
"node_modules/@taqueria/plugin-smartpy": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@taqueria/plugin-smartpy/-/plugin-smartpy-0.20.2.tgz",
"integrity": "sha512-33FicVzvaPQw4qtdPb4A2hO3jhnJoyn0N+P1LweLY3qP/D841TTPQBSwh9wAHryDdhOgkfYozewmdloZimeBjg==",
"dev": true,
"dependencies": {
"@taqueria/node-sdk": "^0.20.2",
"fast-glob": "^3.2.11"
},
"engines": {
"node": ">=14.5"
}
},
"node_modules/@taqueria/protocol": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/@taqueria/protocol/-/protocol-0.20.2.tgz",
"integrity": "sha512-sWRxFtqw3a/94VwM/7ZoZhPU2Ht5nPGQg5IZdMycTCvEAdNZuMaLKU+iDfW7EU7gcPdutlYxo/QTmGH//Td2KA==",
"dev": true,
"dependencies": {
"@peculiar/webcrypto": "^1.4.0",
"batching-toposort": "^1.2.0",
"fluture": "^14.0.0",
"rambda": "^7.2.1",
"rambdax": "^8.1.0",
"tsup": "^6.2.3",
"zod": "^3.17.3"
}
},
"node_modules/@taquito/http-utils": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-13.0.1.tgz",
"integrity": "sha512-eHzd0HSL3qX6bOOSaQClm+0XmpbSNcJP69uzaBJwfXo7ntQR1bUfGLn6+1Hgsk/lJ0JxakD2PDA4aaeajHvyPw==",
"dependencies": {
"axios": "^0.26.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/http-utils/node_modules/axios": {
"version": "0.26.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz",
"integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
"dependencies": {
"follow-redirects": "^1.14.8"
}
},
"node_modules/@taquito/local-forging": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/local-forging/-/local-forging-13.0.1.tgz",
"integrity": "sha512-2n1ryUzHBIOHiQYRO7ELQaurjoNhJ3KUUcX0dAnFs3xVxUBugHgDPot+T+1rNZDdLVhTS6mmK796xrWDGnO6xw==",
"dependencies": {
"@taquito/utils": "^13.0.1",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/local-forging/node_modules/@taquito/utils": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-13.0.1.tgz",
"integrity": "sha512-uRtsl4EATlVJ1UnNUiAEoibFFyexGLDLz02CBHoBrcWjqrZdj3AxA+TO63E2kWn/JmT2FM0Sqaqbm555lj4tow==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@types/bs58check": "^2.1.0",
"blakejs": "^1.2.1",
"bs58check": "^2.1.2",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/michel-codec": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-13.0.1.tgz",
"integrity": "sha512-A9MxhDMdTTK31ty5Ke2wg4wkt7F/Y++tD8wq9YIFJzxt+MkpWX5b2i1f7yHXPsK/81YiGAi/LDamLtLCekY1LA==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/michelson-encoder": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-13.0.1.tgz",
"integrity": "sha512-U80vswMHlEDQUjvARZScIKrSZkIjxdYtDLvHu4oRZ9wTqTXSlj+t64G5QmZwTEJRQkbzfhsOOr6vL40ztL0tzw==",
"dependencies": {
"@taquito/rpc": "^13.0.1",
"@taquito/utils": "^13.0.1",
"bignumber.js": "^9.0.2",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/michelson-encoder/node_modules/@taquito/utils": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-13.0.1.tgz",
"integrity": "sha512-uRtsl4EATlVJ1UnNUiAEoibFFyexGLDLz02CBHoBrcWjqrZdj3AxA+TO63E2kWn/JmT2FM0Sqaqbm555lj4tow==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@types/bs58check": "^2.1.0",
"blakejs": "^1.2.1",
"bs58check": "^2.1.2",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/rpc": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-13.0.1.tgz",
"integrity": "sha512-f2Z0qzHB1ERLU5kewmXh3rAD84qIYthSjmAo04sWFbuaMgGW1HxMJKJ/EtL4s4VgoDUwahSwfATmVzmKg57BSw==",
"dependencies": {
"@taquito/http-utils": "^13.0.1",
"@taquito/utils": "^13.0.1",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/rpc/node_modules/@taquito/utils": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-13.0.1.tgz",
"integrity": "sha512-uRtsl4EATlVJ1UnNUiAEoibFFyexGLDLz02CBHoBrcWjqrZdj3AxA+TO63E2kWn/JmT2FM0Sqaqbm555lj4tow==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@types/bs58check": "^2.1.0",
"blakejs": "^1.2.1",
"bs58check": "^2.1.2",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/signer/-/signer-14.0.0.tgz",
"integrity": "sha512-vDqp/quzAsOiVikUt5MYUKhHI3S9qlasazyXs99xK9qpGLotbx6aseKcfb/dkaTo4/eoMzP4XzTVdnk0AqcCkw==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@stablelib/nacl": "^1.0.3",
"@taquito/taquito": "^14.0.0",
"@taquito/utils": "^14.0.0",
"elliptic": "^6.5.4",
"pbkdf2": "^3.1.2",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/http-utils": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-14.0.0.tgz",
"integrity": "sha512-ZWZzod/+/OEE26b9CnDRjHGfUKBJft3aXv/e/A9bTHAtvRNJqGIhofHcDg/jTaolBMarCF2b3XBYw35aOOSk4A==",
"dependencies": {
"axios": "^0.26.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/local-forging": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/local-forging/-/local-forging-14.0.0.tgz",
"integrity": "sha512-Nm0xGmS1Jzd+tU0a/8Y8XuTghbiPBgHDLo+e4141TK3OAwTzOw0an+w3xK9QVfzvxfIcZBSMjeMZzOwDdiqkJQ==",
"dependencies": {
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/michel-codec": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-14.0.0.tgz",
"integrity": "sha512-ftnBvUVddlHBqvQbGPHEb26KrS4lIcaZ1eIpYJWiz+akb4Pcfyq7j/OEsDZbB7Pl2FP9hqu7ZygOF34zY6Lrtw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/michelson-encoder": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-14.0.0.tgz",
"integrity": "sha512-KIS+xl4rKfnd6hf9LUr6W+Pb7gv8F/Qsx0fho9CtM2PodKvdef3YlvkpScBUM9QZntAlvq2XQXUVXcZkbvxygw==",
"dependencies": {
"@taquito/rpc": "^14.0.0",
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/rpc": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-14.0.0.tgz",
"integrity": "sha512-FMfb80sA+VJwNx8OTNN07boDAt2roISqLLCUgmOIwy/cFDqhII7gdS4aYWJWqlKbdPKCPqh3a3ZQD1X/jyQHOA==",
"dependencies": {
"@taquito/http-utils": "^14.0.0",
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/taquito": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-14.0.0.tgz",
"integrity": "sha512-JaXfvqOCF3dkwXxhe00Ravb8WLMC2VqJxerf4GrGUEpJw+NAkwbGEb8k/52+MQQdlxMPepZdPPru/HM3nFG0Tw==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^14.0.0",
"@taquito/local-forging": "^14.0.0",
"@taquito/michel-codec": "^14.0.0",
"@taquito/michelson-encoder": "^14.0.0",
"@taquito/rpc": "^14.0.0",
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/axios": {
"version": "0.26.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz",
"integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
"dependencies": {
"follow-redirects": "^1.14.8"
}
},
"node_modules/@taquito/taquito": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-13.0.1.tgz",
"integrity": "sha512-xNtcwKsOCHSkURO9G2VhKSeI9q0qh5/OkVuYe6KM0Fo40FthXNqq205I/FTJzu5E1Q73J7cFqA7FHqUrv276gw==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^13.0.1",
"@taquito/local-forging": "^13.0.1",
"@taquito/michel-codec": "^13.0.1",
"@taquito/michelson-encoder": "^13.0.1",
"@taquito/rpc": "^13.0.1",
"@taquito/utils": "^13.0.1",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/taquito/node_modules/@taquito/utils": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-13.0.1.tgz",
"integrity": "sha512-uRtsl4EATlVJ1UnNUiAEoibFFyexGLDLz02CBHoBrcWjqrZdj3AxA+TO63E2kWn/JmT2FM0Sqaqbm555lj4tow==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@types/bs58check": "^2.1.0",
"blakejs": "^1.2.1",
"bs58check": "^2.1.2",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tezbridge-signer": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/tezbridge-signer/-/tezbridge-signer-14.0.0.tgz",
"integrity": "sha512-/jY1WGwqYt8CVJ9UXuliyrqFGOagbr3CTKEc060B3K3S+eIeFZ+taw/gR2KL8p+8uFOfOYxc+aue3DOknhCXXA==",
"dependencies": {
"@taquito/utils": "^14.0.0",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/tzip12/-/tzip12-14.0.0.tgz",
"integrity": "sha512-CEVaSEYwowM0MDz5tiEDeaEyTG202YSNfj18uBUnSuPS02HKC6QVqDYOhuJ2NrhqmJ+iGgD5FAiRar1ihrRD5A==",
"dependencies": {
"@taquito/michelson-encoder": "^14.0.0",
"@taquito/taquito": "^14.0.0",
"@taquito/tzip16": "^14.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/http-utils": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-14.0.0.tgz",
"integrity": "sha512-ZWZzod/+/OEE26b9CnDRjHGfUKBJft3aXv/e/A9bTHAtvRNJqGIhofHcDg/jTaolBMarCF2b3XBYw35aOOSk4A==",
"dependencies": {
"axios": "^0.26.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/local-forging": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/local-forging/-/local-forging-14.0.0.tgz",
"integrity": "sha512-Nm0xGmS1Jzd+tU0a/8Y8XuTghbiPBgHDLo+e4141TK3OAwTzOw0an+w3xK9QVfzvxfIcZBSMjeMZzOwDdiqkJQ==",
"dependencies": {
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/michel-codec": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-14.0.0.tgz",
"integrity": "sha512-ftnBvUVddlHBqvQbGPHEb26KrS4lIcaZ1eIpYJWiz+akb4Pcfyq7j/OEsDZbB7Pl2FP9hqu7ZygOF34zY6Lrtw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/michelson-encoder": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-14.0.0.tgz",
"integrity": "sha512-KIS+xl4rKfnd6hf9LUr6W+Pb7gv8F/Qsx0fho9CtM2PodKvdef3YlvkpScBUM9QZntAlvq2XQXUVXcZkbvxygw==",
"dependencies": {
"@taquito/rpc": "^14.0.0",
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/rpc": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-14.0.0.tgz",
"integrity": "sha512-FMfb80sA+VJwNx8OTNN07boDAt2roISqLLCUgmOIwy/cFDqhII7gdS4aYWJWqlKbdPKCPqh3a3ZQD1X/jyQHOA==",
"dependencies": {
"@taquito/http-utils": "^14.0.0",
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/@taquito/taquito": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-14.0.0.tgz",
"integrity": "sha512-JaXfvqOCF3dkwXxhe00Ravb8WLMC2VqJxerf4GrGUEpJw+NAkwbGEb8k/52+MQQdlxMPepZdPPru/HM3nFG0Tw==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^14.0.0",
"@taquito/local-forging": "^14.0.0",
"@taquito/michel-codec": "^14.0.0",
"@taquito/michelson-encoder": "^14.0.0",
"@taquito/rpc": "^14.0.0",
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip12/node_modules/axios": {
"version": "0.26.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz",
"integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
"dependencies": {
"follow-redirects": "^1.14.8"
}
},
"node_modules/@taquito/tzip16": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/tzip16/-/tzip16-14.0.0.tgz",
"integrity": "sha512-NNmN+Ld14TszXwIq23N2mbtuc/hEyHeE8o61md3qV/J7TEV4d+upo085vIMZwFEMT7UlNXLNAUcZqI1N8YgnVQ==",
"dependencies": {
"@taquito/http-utils": "^14.0.0",
"@taquito/michelson-encoder": "^14.0.0",
"@taquito/rpc": "^14.0.0",
"@taquito/taquito": "^14.0.0",
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2",
"crypto-js": "^4.1.1"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/http-utils": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-14.0.0.tgz",
"integrity": "sha512-ZWZzod/+/OEE26b9CnDRjHGfUKBJft3aXv/e/A9bTHAtvRNJqGIhofHcDg/jTaolBMarCF2b3XBYw35aOOSk4A==",
"dependencies": {
"axios": "^0.26.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/local-forging": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/local-forging/-/local-forging-14.0.0.tgz",
"integrity": "sha512-Nm0xGmS1Jzd+tU0a/8Y8XuTghbiPBgHDLo+e4141TK3OAwTzOw0an+w3xK9QVfzvxfIcZBSMjeMZzOwDdiqkJQ==",
"dependencies": {
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/michel-codec": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-14.0.0.tgz",
"integrity": "sha512-ftnBvUVddlHBqvQbGPHEb26KrS4lIcaZ1eIpYJWiz+akb4Pcfyq7j/OEsDZbB7Pl2FP9hqu7ZygOF34zY6Lrtw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/michelson-encoder": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-14.0.0.tgz",
"integrity": "sha512-KIS+xl4rKfnd6hf9LUr6W+Pb7gv8F/Qsx0fho9CtM2PodKvdef3YlvkpScBUM9QZntAlvq2XQXUVXcZkbvxygw==",
"dependencies": {
"@taquito/rpc": "^14.0.0",
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/rpc": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-14.0.0.tgz",
"integrity": "sha512-FMfb80sA+VJwNx8OTNN07boDAt2roISqLLCUgmOIwy/cFDqhII7gdS4aYWJWqlKbdPKCPqh3a3ZQD1X/jyQHOA==",
"dependencies": {
"@taquito/http-utils": "^14.0.0",
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/@taquito/taquito": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-14.0.0.tgz",
"integrity": "sha512-JaXfvqOCF3dkwXxhe00Ravb8WLMC2VqJxerf4GrGUEpJw+NAkwbGEb8k/52+MQQdlxMPepZdPPru/HM3nFG0Tw==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^14.0.0",
"@taquito/local-forging": "^14.0.0",
"@taquito/michel-codec": "^14.0.0",
"@taquito/michelson-encoder": "^14.0.0",
"@taquito/rpc": "^14.0.0",
"@taquito/utils": "^14.0.0",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/tzip16/node_modules/axios": {
"version": "0.26.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz",
"integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
"dependencies": {
"follow-redirects": "^1.14.8"
}
},
"node_modules/@taquito/utils": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-14.0.0.tgz",
"integrity": "sha512-0RSHn/CzbcbMdldJJIlXyxOvAajwmL6iPKJ6NaRyYJqqLM2CxYjG72KpXVv716pCMV1MbIWsOAr9FKbxW73PsA==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@types/bs58check": "^2.1.0",
"bignumber.js": "^9.0.2",
"blakejs": "^1.2.1",
"bs58check": "^2.1.2",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@types/bs58check": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@types/bs58check/-/bs58check-2.1.0.tgz",
"integrity": "sha512-OxsysnJQh82vy9DRbOcw9m2j/WiyqZLn0YBhKxdQ+aCwoHj+tWzyCgpwAkr79IfDXZKxc6h7k89T9pwS78CqTQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/json-schema": {
"version": "7.0.11",
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz",
"integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="
},
"node_modules/@types/node": {
"version": "18.11.5",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.5.tgz",
"integrity": "sha512-3JRwhbjI+cHLAkUorhf8RnqUbFXajvzX4q6fMn5JwkgtuwfYtRQYI3u4V92vI6NJuTsbBQWWh3RZjFsuevyMGQ=="
},
"node_modules/abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
},
"node_modules/accepts": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
"dependencies": {
"mime-types": "~2.1.34",
"negotiator": "0.6.3"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"dependencies": {
"color-convert": "^2.0.1"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/any-promise": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
"integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
"dev": true
},
"node_modules/anymatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
"integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
"dependencies": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/argparse": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
},
"node_modules/array-flatten": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
},
"node_modules/array-union": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/asn1js": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.5.tgz",
"integrity": "sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==",
"dev": true,
"dependencies": {
"pvtsutils": "^1.3.2",
"pvutils": "^1.1.3",
"tslib": "^2.4.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
},
"node_modules/axios": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/axios/-/axios-1.1.3.tgz",
"integrity": "sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==",
"dependencies": {
"follow-redirects": "^1.15.0",
"form-data": "^4.0.0",
"proxy-from-env": "^1.1.0"
}
},
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},