-
Notifications
You must be signed in to change notification settings - Fork 17
/
package-lock.json
17728 lines (17728 loc) · 687 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-profiles",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "tezos-profiles",
"version": "1.0.0",
"license": "Apache-2.0",
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"@spruceid/tzprofiles": "^1.0.1",
"@taquito/beacon-wallet": "^13.0.1",
"@taquito/local-forging": "^13.0.1",
"@taquito/taquito": "^13.0.1",
"@taquito/tzip16": "^13.0.1",
"@taquito/utils": "^13.0.1",
"crypto-browserify": "^3.12.0",
"didkit-wasm": "^0.1.9",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"kepler-sdk": "^0.9.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.1",
"style-loader": "^2.0.0",
"svelte-navigator": "^3.1.5",
"url": "^0.11.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tsconfig/svelte": "^1.0.10",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"autoprefixer": "^10.2.5",
"base64-loader": "^1.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"eslint": "^7.23.0",
"eslint-plugin-svelte3": "^3.1.2",
"mini-css-extract-plugin": "^1.5.1",
"postcss": "^8.2.8",
"postcss-load-config": "^3.0.1",
"postcss-loader": "^5.2.0",
"precss": "^4.0.0",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"process": "^0.11.10",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"svelte": "^3.31.2",
"svelte-check": "^1.0.46",
"svelte-loader": "^3.0.0",
"svelte-preprocess": "^4.7.0",
"tailwindcss": "^2.0.4",
"ts-loader": "^8.0.4",
"tslib": "^2.0.1",
"typescript": "^4.0.3",
"webassembly-loader": "^1.1.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^4.3.1"
}
},
"node_modules/@airgap/beacon-core": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@airgap/beacon-core/-/beacon-core-3.1.3.tgz",
"integrity": "sha512-AU8VCS5DeK4aXLIeiW6ie377gwEXkuxDS+UiH60yID5VYGc4YgD+kTrjh0BawCJbQumj/+H5OphGl6n+XJX6Ww==",
"dependencies": {
"@airgap/beacon-types": "^3.1.3",
"@airgap/beacon-utils": "^3.1.2",
"@types/libsodium-wrappers": "0.7.9",
"bs58check": "2.1.2",
"libsodium-wrappers": "0.7.9"
}
},
"node_modules/@airgap/beacon-dapp": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@airgap/beacon-dapp/-/beacon-dapp-3.1.3.tgz",
"integrity": "sha512-iyXZK9VTL/YRxY2JQDJSWT1+wHuVJ28+JL5ArmQRoOlhEUTVSBKdtSYX34ojOSsqQEGUuW9MTLIM/0vrWQYR3Q==",
"dependencies": {
"@airgap/beacon-core": "^3.1.3",
"@airgap/beacon-transport-matrix": "^3.1.3",
"@airgap/beacon-transport-postmessage": "^3.1.3",
"@airgap/beacon-ui": "^3.1.3",
"qrcode-generator": "1.4.4"
}
},
"node_modules/@airgap/beacon-sdk": {
"version": "2.3.13",
"resolved": "https://registry.npmjs.org/@airgap/beacon-sdk/-/beacon-sdk-2.3.13.tgz",
"integrity": "sha512-yA6yFQ3YPKvb3TEWiNmhwf1OmhbB6Jf/u/pfA5Aj4bAcoOopy2FVkep/MUVDKzcJZQIh4EvJq7MTn/306cIFYw==",
"dependencies": {
"@types/chrome": "0.0.115",
"@types/libsodium-wrappers": "0.7.7",
"axios": "0.21.1",
"bignumber.js": "9.0.0",
"bs58check": "2.1.2",
"libsodium-wrappers": "0.7.8",
"qrcode-generator": "1.4.4"
}
},
"node_modules/@airgap/beacon-sdk/node_modules/@types/chrome": {
"version": "0.0.115",
"resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.115.tgz",
"integrity": "sha512-pNoYoYgGuI1/kiz53kjrXrKIjn2H8YWOI+vxVTOubX6arCHk/m/jInoyflKiP2qZHZf8+P+hh6d2y9tjaG4BPQ==",
"dependencies": {
"@types/filesystem": "*",
"@types/har-format": "*"
}
},
"node_modules/@airgap/beacon-sdk/node_modules/@types/libsodium-wrappers": {
"version": "0.7.7",
"resolved": "https://registry.npmjs.org/@types/libsodium-wrappers/-/libsodium-wrappers-0.7.7.tgz",
"integrity": "sha512-Li91pVKcLvQJK3ZolwCPo85oxf2gKBCApgnesRxYg4OVYchLXcJB2eivX8S87vfQVv6ZRnyCO1lLDosZGJfpRg=="
},
"node_modules/@airgap/beacon-sdk/node_modules/axios": {
"version": "0.21.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz",
"integrity": "sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==",
"dependencies": {
"follow-redirects": "^1.10.0"
}
},
"node_modules/@airgap/beacon-sdk/node_modules/bignumber.js": {
"version": "9.0.0",
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz",
"integrity": "sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A==",
"engines": {
"node": "*"
}
},
"node_modules/@airgap/beacon-sdk/node_modules/libsodium": {
"version": "0.7.8",
"resolved": "https://registry.npmjs.org/libsodium/-/libsodium-0.7.8.tgz",
"integrity": "sha512-/Qc+APf0jbeWSaeEruH0L1/tbbT+sbf884ZL0/zV/0JXaDPBzYkKbyb/wmxMHgAHzm3t6gqe7bOOXAVwfqVikQ=="
},
"node_modules/@airgap/beacon-sdk/node_modules/libsodium-wrappers": {
"version": "0.7.8",
"resolved": "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.8.tgz",
"integrity": "sha512-PDhPWXBqd/SaqAFUBgH2Ux7b3VEEJgyD6BQB+VdNFJb9PbExGr/T/myc/MBoSvl8qLzfm0W0IVByOQS5L1MrCg==",
"dependencies": {
"libsodium": "0.7.8"
}
},
"node_modules/@airgap/beacon-transport-matrix": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@airgap/beacon-transport-matrix/-/beacon-transport-matrix-3.1.3.tgz",
"integrity": "sha512-pbehQ4IfMU4lR5mkLTYU5QorrbMvxvOXiWisqziIG0XCAj7FwiZVx30ljT22vWiqygGSTrVGGTwUuhbqX6aKtA==",
"dependencies": {
"@airgap/beacon-core": "^3.1.3",
"@airgap/beacon-utils": "^3.1.2",
"axios": "0.24.0"
}
},
"node_modules/@airgap/beacon-transport-matrix/node_modules/axios": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz",
"integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==",
"dependencies": {
"follow-redirects": "^1.14.4"
}
},
"node_modules/@airgap/beacon-transport-postmessage": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@airgap/beacon-transport-postmessage/-/beacon-transport-postmessage-3.1.3.tgz",
"integrity": "sha512-Cv2Bjpvex5XZ1n9GVfi4iPA4l1hz8LcvBSec6iCEI0Ejjt8bYTPqJESZyxh5Z5A4VXG/gSSS2i1WhzzoyorbfA==",
"dependencies": {
"@airgap/beacon-core": "^3.1.3",
"@airgap/beacon-types": "^3.1.3",
"@airgap/beacon-utils": "^3.1.2",
"@types/libsodium-wrappers": "0.7.9",
"libsodium-wrappers": "0.7.9"
}
},
"node_modules/@airgap/beacon-types": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@airgap/beacon-types/-/beacon-types-3.1.3.tgz",
"integrity": "sha512-UCsba/Dut6cUrYIe2bnLlCOGsCyQOD/A4gQGdCuviLfqomMQv5m/XoJTtl9jKOlOIm2ytvyl8Z/zrNhK7SZMmA==",
"dependencies": {
"@types/chrome": "0.0.163"
}
},
"node_modules/@airgap/beacon-ui": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@airgap/beacon-ui/-/beacon-ui-3.1.3.tgz",
"integrity": "sha512-H6L9lynsn/JsjrKEBrN5lYr1S/d8l3aY48lciNfxJALOR1mOjVBn+tepKP/tVZPansvvf27/8yKwUTMVnp4Qwg==",
"dependencies": {
"@airgap/beacon-core": "^3.1.3",
"@airgap/beacon-transport-postmessage": "^3.1.3",
"@airgap/beacon-types": "^3.1.3",
"@airgap/beacon-utils": "^3.1.2"
}
},
"node_modules/@airgap/beacon-utils": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@airgap/beacon-utils/-/beacon-utils-3.1.2.tgz",
"integrity": "sha512-kaDFDSes54Zn/cc6Pvk9BfrrvrLwqTPNuEg15uzAQkDRsZ8e/t7SZ7KTNytw2OJPI0qG792zvd5uJwSG8a0Jdg==",
"dependencies": {
"@types/libsodium-wrappers": "0.7.9",
"bs58check": "2.1.2",
"libsodium-wrappers": "0.7.9"
}
},
"node_modules/@babel/code-frame": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
"integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
"dev": true,
"dependencies": {
"@babel/highlight": "^7.10.4"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz",
"integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
"integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
"dev": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dev": true,
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
"dev": true
},
"node_modules/@babel/highlight/node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"dev": true,
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@babel/highlight/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"dev": true,
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@csstools/convert-colors": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz",
"integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==",
"dev": true,
"engines": {
"node": ">=4.0.0"
}
},
"node_modules/@csstools/sass-import-resolve": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@csstools/sass-import-resolve/-/sass-import-resolve-1.0.0.tgz",
"integrity": "sha512-pH4KCsbtBLLe7eqUrw8brcuFO8IZlN36JjdKlOublibVdAIPHCzEnpBWOVUXK5sCf+DpBi8ZtuWtjF0srybdeA==",
"dev": true,
"engines": {
"node": ">=4.0.0"
}
},
"node_modules/@discoveryjs/json-ext": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz",
"integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==",
"dev": true,
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "0.4.3",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz",
"integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.1.1",
"espree": "^7.3.0",
"globals": "^13.9.0",
"ignore": "^4.0.6",
"import-fresh": "^3.2.1",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^10.12.0 || >=12.0.0"
}
},
"node_modules/@eslint/eslintrc/node_modules/ignore": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
"integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
"dev": true,
"engines": {
"node": ">= 4"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz",
"integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.0",
"debug": "^4.1.1",
"minimatch": "^3.0.4"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
"dev": true
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
"dependencies": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
"integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/set-array": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
"integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/source-map": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz",
"integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.0",
"@jridgewell/trace-mapping": "^0.3.9"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.14",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
"integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.14",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz",
"integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==",
"dependencies": {
"@jridgewell/resolve-uri": "^3.0.3",
"@jridgewell/sourcemap-codec": "^1.4.10"
}
},
"node_modules/@leichtgewicht/ip-codec": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz",
"integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==",
"dev": true
},
"node_modules/@metamask/detect-provider": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@metamask/detect-provider/-/detect-provider-1.2.0.tgz",
"integrity": "sha512-ocA76vt+8D0thgXZ7LxFPyqw3H7988qblgzddTDA6B8a/yU0uKV42QR/DhA+Jh11rJjxW0jKvwb5htA6krNZDQ==",
"engines": {
"node": ">= 10"
}
},
"node_modules/@multiformats/base-x": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@multiformats/base-x/-/base-x-4.0.1.tgz",
"integrity": "sha512-eMk0b9ReBbV23xXU693TAIrLyeO5iTgBZGSJfpqriG8UkYvr/hC9u9pyMlAakDNHWmbhMZCDs6KQO0jzKD8OTw=="
},
"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/@spruceid/tzprofiles": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@spruceid/tzprofiles/-/tzprofiles-1.0.1.tgz",
"integrity": "sha512-rc55TMBViSs6JE+XIMg7B5V5vp9kMT/xwXiTY5M7L/taTR8zhw9Ba2ENoTd4c4cFUblIP8I/7O5rYzLm//pRHQ==",
"dependencies": {
"@taquito/beacon-wallet": "^11.1.0",
"@taquito/rpc": "^11.1.0",
"@taquito/signer": "^11.1.0",
"@taquito/taquito": "^11.1.0",
"@taquito/tzip16": "^11.1.0",
"axios": ">=0.21.2",
"didkit-wasm-node": "^0.1.4",
"express": "^4.17.1",
"kepler-sdk": "^0.9.0",
"process": "^0.11.10",
"yargs": "^16.2.0"
}
},
"node_modules/@spruceid/tzprofiles/node_modules/@taquito/beacon-wallet": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/beacon-wallet/-/beacon-wallet-11.2.0.tgz",
"integrity": "sha512-/3TlNLacyzvseZxpagFDLfkM3BkOrEivFYKTAFspPIpRZhg4t+rQblkW9tNn9cEiAWPm1uhzA+J2qUDvShdE7w==",
"dependencies": {
"@airgap/beacon-sdk": "^2.3.9",
"@taquito/taquito": "^11.2.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@spruceid/tzprofiles/node_modules/@taquito/michel-codec": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-11.2.0.tgz",
"integrity": "sha512-ZWu1eyRl9RqOpyHP5h3JKfSPylUMN/91GTWjlJ26GhaMP9YA6mVjJ7pWDrZHFn1QXiS8JgQ7xwsmU+dBqZznSw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@spruceid/tzprofiles/node_modules/@taquito/michelson-encoder": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-11.2.0.tgz",
"integrity": "sha512-ifU3PSrJiQDovY7MT3RjrBTVToW82vGBwXeTIKIMnnoAjCnZdL/XjxFfzTrxT90jaz++ou3xcrgIabSvJrfJjg==",
"dependencies": {
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"fast-json-stable-stringify": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@spruceid/tzprofiles/node_modules/@taquito/taquito": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-11.2.0.tgz",
"integrity": "sha512-OJJYPqQiF7IoxWsBavdKDuxi2oeWHHvRph2nqeCyqVx6H+7uQLpZCf0OP5iQ4F6AxoYPyD7DzEsSFH5tOdgqNQ==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/michel-codec": "^11.2.0",
"@taquito/michelson-encoder": "^11.2.0",
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@spruceid/tzprofiles/node_modules/@taquito/tzip16": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/tzip16/-/tzip16-11.2.0.tgz",
"integrity": "sha512-j2KoY+XTOyzTclTmC1hxi61XbzfsankpuTGiMRFC+QjL5vEyoc2CJG41I/0a2hoq30wuEH4TQ1+E6U5wfL/jUw==",
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/michelson-encoder": "^11.2.0",
"@taquito/rpc": "^11.2.0",
"@taquito/taquito": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"crypto-js": "^4.1.1"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@spruceid/tzprofiles/node_modules/@taquito/utils": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-11.2.0.tgz",
"integrity": "sha512-I5LoD5fG9S2Yo4CNpW4u3vF9lUJG1PxkGLi6ntvvH49SBXwo9HJ/n/v04aoE9V7ncA0a7LUm6ucnROagIc2QQQ==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@types/bs58check": "^2.1.0",
"blakejs": "^1.1.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/@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/ed25519": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@stablelib/ed25519/-/ed25519-1.0.2.tgz",
"integrity": "sha512-FtnvUwvKbp6l1dNcg4CswMAVFVu/nzLK3oC7/PRtjYyHbWsIkD8j+5cjXHmwcCpdCpRCaTGACkEhhMQ1RcdSOQ==",
"dependencies": {
"@stablelib/random": "^1.0.1",
"@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/random": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/random/-/random-1.0.1.tgz",
"integrity": "sha512-zOh+JHX3XG9MSfIB0LZl/YwPP9w3o6WBiJkZvjPoKKu5LKFW4OLV71vMxWp9qG5T43NaWyn0QQTWgqCdO+yOBQ==",
"dependencies": {
"@stablelib/binary": "^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/@taquito/beacon-wallet": {
"version": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/beacon-wallet/-/beacon-wallet-13.0.1.tgz",
"integrity": "sha512-HBJoIwVqV4UorqCzLYaKT1QSA2OoujhBidENYhPE+Km/w7ArGLcPCTrhNvtfViw8xyhG63/hlFztLC3mm0M8iA==",
"dependencies": {
"@airgap/beacon-dapp": "^3.1.3",
"@taquito/taquito": "^13.0.1",
"libsodium-wrappers": "0.7.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/http-utils": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/http-utils/-/http-utils-11.2.0.tgz",
"integrity": "sha512-9s9l4z70ah8/pjmc5ARxdwy6GCnsqwYxMITqCqKBT4DKVgI8m8kXkdxaVg+Ob5ZGvRQoVDSgTeSeNg8TUMtc+w==",
"dependencies": {
"xhr2-cookies": "^1.1.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"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/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/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/michelson-encoder/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/michelson-encoder/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/rpc": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/rpc/-/rpc-11.2.0.tgz",
"integrity": "sha512-Hb5KIi1swUIGHg6h6cPJ+6G+6Nfi6Npat4RogOFvULpbn+WQIo+CTUecEW7aWEBuXahs7W0JBcL4a6GbqE3YGg==",
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/rpc/node_modules/@taquito/utils": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-11.2.0.tgz",
"integrity": "sha512-I5LoD5fG9S2Yo4CNpW4u3vF9lUJG1PxkGLi6ntvvH49SBXwo9HJ/n/v04aoE9V7ncA0a7LUm6ucnROagIc2QQQ==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@types/bs58check": "^2.1.0",
"blakejs": "^1.1.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": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/signer/-/signer-11.2.0.tgz",
"integrity": "sha512-OthNW7gN2hJNph8VMy9LRbZcn7bIBaKdrfC+hAy5N6yzG8EW/t6IEMAgESmNcthMhPUhuOWS37khuwMsuL1GUg==",
"dependencies": {
"@taquito/taquito": "^11.2.0",
"@taquito/utils": "^11.2.0",
"elliptic": "^6.5.4",
"libsodium-wrappers": "0.7.8",
"pbkdf2": "^3.1.2",
"typedarray-to-buffer": "^4.0.0"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/michel-codec": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michel-codec/-/michel-codec-11.2.0.tgz",
"integrity": "sha512-ZWu1eyRl9RqOpyHP5h3JKfSPylUMN/91GTWjlJ26GhaMP9YA6mVjJ7pWDrZHFn1QXiS8JgQ7xwsmU+dBqZznSw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/michelson-encoder": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/michelson-encoder/-/michelson-encoder-11.2.0.tgz",
"integrity": "sha512-ifU3PSrJiQDovY7MT3RjrBTVToW82vGBwXeTIKIMnnoAjCnZdL/XjxFfzTrxT90jaz++ou3xcrgIabSvJrfJjg==",
"dependencies": {
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.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/taquito": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/taquito/-/taquito-11.2.0.tgz",
"integrity": "sha512-OJJYPqQiF7IoxWsBavdKDuxi2oeWHHvRph2nqeCyqVx6H+7uQLpZCf0OP5iQ4F6AxoYPyD7DzEsSFH5tOdgqNQ==",
"hasInstallScript": true,
"dependencies": {
"@taquito/http-utils": "^11.2.0",
"@taquito/michel-codec": "^11.2.0",
"@taquito/michelson-encoder": "^11.2.0",
"@taquito/rpc": "^11.2.0",
"@taquito/utils": "^11.2.0",
"bignumber.js": "^9.0.2",
"rxjs": "^6.6.3"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@taquito/signer/node_modules/@taquito/utils": {
"version": "11.2.0",
"resolved": "https://registry.npmjs.org/@taquito/utils/-/utils-11.2.0.tgz",
"integrity": "sha512-I5LoD5fG9S2Yo4CNpW4u3vF9lUJG1PxkGLi6ntvvH49SBXwo9HJ/n/v04aoE9V7ncA0a7LUm6ucnROagIc2QQQ==",
"dependencies": {
"@stablelib/blake2b": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@types/bs58check": "^2.1.0",
"blakejs": "^1.1.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/node_modules/libsodium": {
"version": "0.7.8",
"resolved": "https://registry.npmjs.org/libsodium/-/libsodium-0.7.8.tgz",
"integrity": "sha512-/Qc+APf0jbeWSaeEruH0L1/tbbT+sbf884ZL0/zV/0JXaDPBzYkKbyb/wmxMHgAHzm3t6gqe7bOOXAVwfqVikQ=="
},
"node_modules/@taquito/signer/node_modules/libsodium-wrappers": {
"version": "0.7.8",
"resolved": "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.8.tgz",
"integrity": "sha512-PDhPWXBqd/SaqAFUBgH2Ux7b3VEEJgyD6BQB+VdNFJb9PbExGr/T/myc/MBoSvl8qLzfm0W0IVByOQS5L1MrCg==",
"dependencies": {
"libsodium": "0.7.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/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/taquito/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/taquito/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": "13.0.1",
"resolved": "https://registry.npmjs.org/@taquito/tzip16/-/tzip16-13.0.1.tgz",
"integrity": "sha512-k+Vr1t2j7IqR/FuK5b3e7iGTA/VfltBwH+fdJEXssRjBH3jrWQxraR+CNkNuqkspn97dKe7TwwU4cJnqbh1sLA==",
"dependencies": {
"@taquito/http-utils": "^13.0.1",
"@taquito/michelson-encoder": "^13.0.1",
"@taquito/rpc": "^13.0.1",
"@taquito/taquito": "^13.0.1",
"@taquito/utils": "^13.0.1",
"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": "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/tzip16/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/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": "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/@tsconfig/svelte": {
"version": "1.0.13",
"resolved": "https://registry.npmjs.org/@tsconfig/svelte/-/svelte-1.0.13.tgz",
"integrity": "sha512-5lYJP45Xllo4yE/RUBccBT32eBlRDbqN8r1/MIvQbKxW3aFqaYPCNgm8D5V20X4ShHcwvYWNlKg3liDh1MlBoA==",
"dev": true
},
"node_modules/@types/body-parser": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz",
"integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
"dev": true,
"dependencies": {
"@types/connect": "*",
"@types/node": "*"
}