-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
3324 lines (3324 loc) · 130 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
{
"requires": true,
"lockfileVersion": 1,
"dependencies": {
"@babel/code-frame": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
"integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
"dev": true,
"requires": {
"@babel/highlight": "^7.10.4"
}
},
"@babel/helper-plugin-utils": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
"integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
"dev": true
},
"@babel/helper-validator-identifier": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
"integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
"dev": true
},
"@babel/highlight": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
"integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/plugin-syntax-import-meta": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
"integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.10.4"
}
},
"@consento/sync-randombytes": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@consento/sync-randombytes/-/sync-randombytes-1.0.5.tgz",
"integrity": "sha512-mPJ2XvrTLQGEdhleDuSIkWtVWnvmhREOC1FjorV1nlK49t/52Z9X1d618gTj6nlQghRLiYvcd8oL4vZ2YZuDIQ==",
"requires": {
"buffer": "^5.4.3",
"seedrandom": "^3.0.5"
}
},
"@ethersproject/abi": {
"version": "5.0.7",
"resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.0.7.tgz",
"integrity": "sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==",
"requires": {
"@ethersproject/address": "^5.0.4",
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/constants": "^5.0.4",
"@ethersproject/hash": "^5.0.4",
"@ethersproject/keccak256": "^5.0.3",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/properties": "^5.0.3",
"@ethersproject/strings": "^5.0.4"
}
},
"@ethersproject/abstract-provider": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.0.5.tgz",
"integrity": "sha512-i/CjElAkzV7vQBAeoz+IpjGfcFYEP9eD7j3fzZ0fzTq03DO7PPnR+xkEZ1IoDXGwDS+55aLM1xvLDwB/Lx6IOQ==",
"requires": {
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/networks": "^5.0.3",
"@ethersproject/properties": "^5.0.3",
"@ethersproject/transactions": "^5.0.5",
"@ethersproject/web": "^5.0.6"
}
},
"@ethersproject/abstract-signer": {
"version": "5.0.7",
"resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.0.7.tgz",
"integrity": "sha512-8W8gy/QutEL60EoMEpvxZ8MFAEWs/JvH5nmZ6xeLXoZvmBCasGmxqHdYjo2cxg0nevkPkq9SeenSsBBZSCx+SQ==",
"requires": {
"@ethersproject/abstract-provider": "^5.0.4",
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/properties": "^5.0.3"
}
},
"@ethersproject/address": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.0.5.tgz",
"integrity": "sha512-DpkQ6rwk9jTefrRsJzEm6nhRiJd9pvhn1xN0rw5N/jswXG5r7BLk/GVA0mMAVWAsYfvi2xSc5L41FMox43RYEA==",
"requires": {
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/keccak256": "^5.0.3",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/rlp": "^5.0.3",
"bn.js": "^4.4.0"
}
},
"@ethersproject/base64": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.0.4.tgz",
"integrity": "sha512-4KRykQ7BQMeOXfvio1YITwHjxwBzh92UoXIdzxDE1p53CK28bbHPdsPNYo0wl0El7lJAMpT2SOdL0hhbWRnyIA==",
"requires": {
"@ethersproject/bytes": "^5.0.4"
}
},
"@ethersproject/basex": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.0.4.tgz",
"integrity": "sha512-ixIr/kKiAoSzOnSc777AGIOAhKai5Ivqr4HO/Gz+YG+xkfv6kqD6AW4ga9vM20Wwb0QBhh3LoRWTu4V1K+x9Ew==",
"requires": {
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/properties": "^5.0.3"
}
},
"@ethersproject/bignumber": {
"version": "5.0.8",
"resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.0.8.tgz",
"integrity": "sha512-KXFVAFKS1jdTXYN8BE5Oj+ZfPMh28iRdFeNGBVT6cUFdtiPVqeXqc0ggvBqA3A1VoFFGgM7oAeaagA393aORHA==",
"requires": {
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/logger": "^5.0.5",
"bn.js": "^4.4.0"
}
},
"@ethersproject/bytes": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.0.5.tgz",
"integrity": "sha512-IEj9HpZB+ACS6cZ+QQMTqmu/cnUK2fYNE6ms/PVxjoBjoxc6HCraLpam1KuRvreMy0i523PLmjN8OYeikRdcUQ==",
"requires": {
"@ethersproject/logger": "^5.0.5"
}
},
"@ethersproject/constants": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.0.5.tgz",
"integrity": "sha512-foaQVmxp2+ik9FrLUCtVrLZCj4M3Ibgkqvh+Xw/vFRSerkjVSYePApaVE5essxhoSlF1U9oXfWY09QI2AXtgKA==",
"requires": {
"@ethersproject/bignumber": "^5.0.7"
}
},
"@ethersproject/contracts": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.0.5.tgz",
"integrity": "sha512-tFI255lFbmbqMkgnuyhDWHl3yWqttPlReplYuVvDCT/SuvBjLR4ad2uipBlh1fh5X1ipK9ettAoV4S0HKim4Kw==",
"requires": {
"@ethersproject/abi": "^5.0.5",
"@ethersproject/abstract-provider": "^5.0.4",
"@ethersproject/abstract-signer": "^5.0.4",
"@ethersproject/address": "^5.0.4",
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/constants": "^5.0.4",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/properties": "^5.0.3"
}
},
"@ethersproject/hash": {
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.0.6.tgz",
"integrity": "sha512-Gvh57v6BWhwnud6l7tMfQm32PRQ2DYx2WaAAQmAxAfYvmzUkpQCBstnGeNMXIL8/2wdkvcB2u+WZRWaZtsFuUQ==",
"requires": {
"@ethersproject/abstract-signer": "^5.0.6",
"@ethersproject/address": "^5.0.5",
"@ethersproject/bignumber": "^5.0.8",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/keccak256": "^5.0.3",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/properties": "^5.0.4",
"@ethersproject/strings": "^5.0.4"
}
},
"@ethersproject/hdnode": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.0.5.tgz",
"integrity": "sha512-Ho4HZaK+KijE5adayvjAGusWMnT0mgwGa5hGMBofBOgX9nqiKf6Wxx68SXBGI1/L3rmKo6mlAjxUd8gefs0teQ==",
"requires": {
"@ethersproject/abstract-signer": "^5.0.4",
"@ethersproject/basex": "^5.0.3",
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/pbkdf2": "^5.0.3",
"@ethersproject/properties": "^5.0.3",
"@ethersproject/sha2": "^5.0.3",
"@ethersproject/signing-key": "^5.0.4",
"@ethersproject/strings": "^5.0.4",
"@ethersproject/transactions": "^5.0.5",
"@ethersproject/wordlists": "^5.0.4"
}
},
"@ethersproject/json-wallets": {
"version": "5.0.7",
"resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.0.7.tgz",
"integrity": "sha512-dgOn9JtGgjT28mDXs4LYY2rT4CzS6bG/rxoYuPq3TLHIf6nmvBcr33Fee6RrM/y8UAx4gyIkf6wb2cXsOctvQQ==",
"requires": {
"@ethersproject/abstract-signer": "^5.0.4",
"@ethersproject/address": "^5.0.4",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/hdnode": "^5.0.4",
"@ethersproject/keccak256": "^5.0.3",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/pbkdf2": "^5.0.3",
"@ethersproject/properties": "^5.0.3",
"@ethersproject/random": "^5.0.3",
"@ethersproject/strings": "^5.0.4",
"@ethersproject/transactions": "^5.0.5",
"aes-js": "3.0.0",
"scrypt-js": "3.0.1"
}
},
"@ethersproject/keccak256": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.0.4.tgz",
"integrity": "sha512-GNpiOUm9PGUxFNqOxYKDQBM0u68bG9XC9iOulEQ8I0tOx/4qUpgVzvgXL6ugxr0RY554Gz/NQsVqknqPzUcxpQ==",
"requires": {
"@ethersproject/bytes": "^5.0.4",
"js-sha3": "0.5.7"
},
"dependencies": {
"js-sha3": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz",
"integrity": "sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc="
}
}
},
"@ethersproject/logger": {
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.0.6.tgz",
"integrity": "sha512-FrX0Vnb3JZ1md/7GIZfmJ06XOAA8r3q9Uqt9O5orr4ZiksnbpXKlyDzQtlZ5Yv18RS8CAUbiKH9vwidJg1BPmQ=="
},
"@ethersproject/networks": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.0.4.tgz",
"integrity": "sha512-/wHDTRms5mpJ09BoDrbNdFWINzONe05wZRgohCXvEv39rrH/Gd/yAnct8wC0RsW3tmFOgjgQxuBvypIxuUynTw==",
"requires": {
"@ethersproject/logger": "^5.0.5"
}
},
"@ethersproject/pbkdf2": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.0.4.tgz",
"integrity": "sha512-9jVBjHXQKfr9+3bkCg01a8Cd1H9e+7Kw3ZMIvAxD0lZtuzrXsJxm1hVwY9KA+PRUvgS/9tTP4viXQYwLAax7zg==",
"requires": {
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/sha2": "^5.0.3"
}
},
"@ethersproject/properties": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.0.4.tgz",
"integrity": "sha512-UdyX3GqBxFt15B0uSESdDNmhvEbK3ACdDXl2soshoPcneXuTswHDeA0LoPlnaZzhbgk4p6jqb4GMms5C26Qu6A==",
"requires": {
"@ethersproject/logger": "^5.0.5"
}
},
"@ethersproject/providers": {
"version": "5.0.14",
"resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.0.14.tgz",
"integrity": "sha512-K9QRRkkHWyprm3g4L8U9aPx5uyivznL4RYemkN2shCQumyGqFJ5SO+OtQrgebVm0JpGwFAUGugnhRUh49sjErw==",
"requires": {
"@ethersproject/abstract-provider": "^5.0.4",
"@ethersproject/abstract-signer": "^5.0.4",
"@ethersproject/address": "^5.0.4",
"@ethersproject/basex": "^5.0.3",
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/constants": "^5.0.4",
"@ethersproject/hash": "^5.0.4",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/networks": "^5.0.3",
"@ethersproject/properties": "^5.0.3",
"@ethersproject/random": "^5.0.3",
"@ethersproject/rlp": "^5.0.3",
"@ethersproject/sha2": "^5.0.3",
"@ethersproject/strings": "^5.0.4",
"@ethersproject/transactions": "^5.0.5",
"@ethersproject/web": "^5.0.6",
"bech32": "1.1.4",
"ws": "7.2.3"
},
"dependencies": {
"ws": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.2.3.tgz",
"integrity": "sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ=="
}
}
},
"@ethersproject/random": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.0.4.tgz",
"integrity": "sha512-AIZJhqs6Ba4/+U3lOjt3QZbP6b/kuuGLJUYFUonAgWmkTHwqsCwYnFvnHKQSUuHbXHvErp7WFXFlztx+yMn3kQ==",
"requires": {
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/logger": "^5.0.5"
}
},
"@ethersproject/rlp": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.0.4.tgz",
"integrity": "sha512-5qrrZad7VTjofxSsm7Zg/7Dr4ZOln4S2CqiDdOuTv6MBKnXj0CiBojXyuDy52M8O3wxH0CyE924hXWTDV1PQWQ==",
"requires": {
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/logger": "^5.0.5"
}
},
"@ethersproject/sha2": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.0.4.tgz",
"integrity": "sha512-0yFhf1mspxAfWdXXoPtK94adUeu1R7/FzAa+DfEiZTc76sz/vHXf0LSIazoR3znYKFny6haBxME+usbvvEcF3A==",
"requires": {
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/logger": "^5.0.5",
"hash.js": "1.1.3"
},
"dependencies": {
"hash.js": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz",
"integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==",
"requires": {
"inherits": "^2.0.3",
"minimalistic-assert": "^1.0.0"
}
}
}
},
"@ethersproject/signing-key": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.0.5.tgz",
"integrity": "sha512-Z1wY7JC1HVO4CvQWY2TyTTuAr8xK3bJijZw1a9G92JEmKdv1j255R/0YLBBcFTl2J65LUjtXynNJ2GbArPGi5g==",
"requires": {
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/properties": "^5.0.3",
"elliptic": "6.5.3"
}
},
"@ethersproject/solidity": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.0.5.tgz",
"integrity": "sha512-DMFQ0ouXmNVoKWbGEUFGi8Urli4SJip9jXafQyFHWPRr5oJUqDVkNfwcyC37k+mhBG93k7qrYXCH2xJnGEOxHg==",
"requires": {
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/keccak256": "^5.0.3",
"@ethersproject/sha2": "^5.0.3",
"@ethersproject/strings": "^5.0.4"
}
},
"@ethersproject/strings": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.0.5.tgz",
"integrity": "sha512-JED6WaIV00xM/gvj8vSnd+0VWtDYdidTmavFRCTQakqfz+4tDo6Jz5LHgG+dd45h7ah7ykCHW0C7ZXWEDROCXQ==",
"requires": {
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/constants": "^5.0.4",
"@ethersproject/logger": "^5.0.5"
}
},
"@ethersproject/transactions": {
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.0.6.tgz",
"integrity": "sha512-htsFhOD+NMBxx676A8ehSuwVV49iqpSB+CkjPZ02tpNew0K6p8g0CZ46Z1ZP946gIHAU80xQ0NACHYrjIUaCFA==",
"requires": {
"@ethersproject/address": "^5.0.4",
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/constants": "^5.0.4",
"@ethersproject/keccak256": "^5.0.3",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/properties": "^5.0.3",
"@ethersproject/rlp": "^5.0.3",
"@ethersproject/signing-key": "^5.0.4"
}
},
"@ethersproject/units": {
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.0.6.tgz",
"integrity": "sha512-tsJuy4mipppdmooukRfhXt8fGx9nxvfvG6Xdy0RDm7LzHsjghjwQ69m2bCpId6SDSR1Uq1cQ9irPiUBSyWolUA==",
"requires": {
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/constants": "^5.0.4",
"@ethersproject/logger": "^5.0.5"
}
},
"@ethersproject/wallet": {
"version": "5.0.7",
"resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.0.7.tgz",
"integrity": "sha512-n2GX1+2Tc0qV8dguUcLkjNugINKvZY7u/5fEsn0skW9rz5+jHTR5IKMV6jSfXA+WjQT8UCNMvkI3CNcdhaPbTQ==",
"requires": {
"@ethersproject/abstract-provider": "^5.0.4",
"@ethersproject/abstract-signer": "^5.0.4",
"@ethersproject/address": "^5.0.4",
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/hash": "^5.0.4",
"@ethersproject/hdnode": "^5.0.4",
"@ethersproject/json-wallets": "^5.0.6",
"@ethersproject/keccak256": "^5.0.3",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/properties": "^5.0.3",
"@ethersproject/random": "^5.0.3",
"@ethersproject/signing-key": "^5.0.4",
"@ethersproject/transactions": "^5.0.5",
"@ethersproject/wordlists": "^5.0.4"
}
},
"@ethersproject/web": {
"version": "5.0.9",
"resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.0.9.tgz",
"integrity": "sha512-//QNlv1MSkOII1hv3+HQwWoiVFS+BMVGI0KYeUww4cyrEktnx1QIez5bTSab9s9fWTFaWKNmQNBwMbxAqPuYDw==",
"requires": {
"@ethersproject/base64": "^5.0.3",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/properties": "^5.0.3",
"@ethersproject/strings": "^5.0.4"
}
},
"@ethersproject/wordlists": {
"version": "5.0.5",
"resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.0.5.tgz",
"integrity": "sha512-XA3ycFltVrCTQt04w5nHu3Xq5Z6HjqWsXaAYQHFdqtugyUsIumaO9S5MOwFFuUYTNkZUoT3jCRa/OBS+K4tLfA==",
"requires": {
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/hash": "^5.0.4",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/properties": "^5.0.3",
"@ethersproject/strings": "^5.0.4"
}
},
"@improbable-eng/grpc-web": {
"version": "0.13.0",
"resolved": "https://registry.npmjs.org/@improbable-eng/grpc-web/-/grpc-web-0.13.0.tgz",
"integrity": "sha512-vaxxT+Qwb7GPqDQrBV4vAAfH0HywgOLw6xGIKXd9Q8hcV63CQhmS3p4+pZ9/wVvt4Ph3ZDK9fdC983b9aGMUFg==",
"requires": {
"browser-headers": "^0.4.0"
}
},
"@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=="
},
"@npmcli/move-file": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.0.1.tgz",
"integrity": "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==",
"dev": true,
"requires": {
"mkdirp": "^1.0.4"
}
},
"@rollup/plugin-alias": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-3.1.1.tgz",
"integrity": "sha512-hNcQY4bpBUIvxekd26DBPgF7BT4mKVNDF5tBG4Zi+3IgwLxGYRY0itHs9D0oLVwXM5pvJDWJlBQro+au8WaUWw==",
"dev": true,
"requires": {
"slash": "^3.0.0"
}
},
"@rollup/plugin-commonjs": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-14.0.0.tgz",
"integrity": "sha512-+PSmD9ePwTAeU106i9FRdc+Zb3XUWyW26mo5Atr2mk82hor8+nPwkztEjFo8/B1fJKfaQDg9aM2bzQkjhi7zOw==",
"dev": true,
"requires": {
"@rollup/pluginutils": "^3.0.8",
"commondir": "^1.0.1",
"estree-walker": "^1.0.1",
"glob": "^7.1.2",
"is-reference": "^1.1.2",
"magic-string": "^0.25.2",
"resolve": "^1.11.0"
}
},
"@rollup/plugin-json": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz",
"integrity": "sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==",
"dev": true,
"requires": {
"@rollup/pluginutils": "^3.0.8"
}
},
"@rollup/plugin-node-resolve": {
"version": "8.4.0",
"resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-8.4.0.tgz",
"integrity": "sha512-LFqKdRLn0ShtQyf6SBYO69bGE1upV6wUhBX0vFOUnLAyzx5cwp8svA0eHUnu8+YU57XOkrMtfG63QOpQx25pHQ==",
"dev": true,
"requires": {
"@rollup/pluginutils": "^3.1.0",
"@types/resolve": "1.17.1",
"builtin-modules": "^3.1.0",
"deep-freeze": "^0.0.1",
"deepmerge": "^4.2.2",
"is-module": "^1.0.0",
"resolve": "^1.17.0"
}
},
"@rollup/plugin-replace": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.3.3.tgz",
"integrity": "sha512-XPmVXZ7IlaoWaJLkSCDaa0Y6uVo5XQYHhiMFzOd5qSv5rE+t/UJToPIOE56flKIxBFQI27ONsxb7dqHnwSsjKQ==",
"dev": true,
"requires": {
"@rollup/pluginutils": "^3.0.8",
"magic-string": "^0.25.5"
}
},
"@rollup/pluginutils": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz",
"integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==",
"dev": true,
"requires": {
"@types/estree": "0.0.39",
"estree-walker": "^1.0.1",
"picomatch": "^2.2.2"
}
},
"@sindresorhus/is": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-3.1.0.tgz",
"integrity": "sha512-n4J+zu52VdY43kdi/XdI9DzuMr1Mur8zFL5ZRG2opCans9aiFwkPxHYFEb5Xgy7n1Z4K6WfI4FpqUqsh3E8BPQ==",
"dev": true
},
"@snowpack/plugin-build-script": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@snowpack/plugin-build-script/-/plugin-build-script-2.0.0.tgz",
"integrity": "sha512-NdUcXKG60EWN3/TMLLEVghQ8FM4+ksvE3o/GKJ+tBtjsQTqtjVcBLtFUNO+IQ43aCtnlhi10igQ8yYVBA7fKRw==",
"dev": true,
"requires": {
"execa": "^4.0.3",
"npm-run-path": "^4.0.1"
}
},
"@snowpack/plugin-run-script": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@snowpack/plugin-run-script/-/plugin-run-script-2.0.0.tgz",
"integrity": "sha512-lQsnzqAQzC60Swr80+iUL4eSduZQx96XTUj3pDn0zg1HeP4H38UJkSFEqCeuXm3gygx7Kjhr55zvQGtMoWi+ug==",
"dev": true,
"requires": {
"execa": "^4.0.3",
"npm-run-path": "^4.0.1"
}
},
"@szmarczak/http-timer": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz",
"integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==",
"dev": true,
"requires": {
"defer-to-connect": "^2.0.0"
}
},
"@textile/buckets": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@textile/buckets/-/buckets-1.1.1.tgz",
"integrity": "sha512-Qa0VBjWE6ktjuVKrRbDlUFzU12QQ19nuXFoRUCHQHuosXdOV+axpE0FwpqvvqboZginvfTXJy+P8WoyOAH9GaQ==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@textile/buckets-grpc": "2.1.0",
"@textile/context": "^0.7.0",
"@textile/crypto": "^0.1.2",
"@textile/grpc-authentication": "^0.2.3",
"@textile/grpc-connection": "^0.1.5",
"@textile/grpc-transport": "^0.0.5",
"@textile/hub-grpc": "2.0.1",
"@textile/hub-threads-client": "^1.0.1",
"@textile/security": "^0.3.0",
"@textile/threads-id": "^0.1.15",
"@types/next-tick": "^1.0.0",
"abort-controller": "^3.0.0",
"cids": "^0.8.0",
"event-iterator": "^2.0.0",
"it-block": "^2.0.0",
"loglevel": "^1.6.8",
"next-tick": "^1.1.0"
}
},
"@textile/buckets-grpc": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@textile/buckets-grpc/-/buckets-grpc-2.1.0.tgz",
"integrity": "sha512-pfKgjSdFcskqYS3wY9IJIrvN8+aJ20rRlJSIXOL77zgea8KAVwLOSkcGiAFL9Sz8kALOMPUJt7wV3Ss/+FVFSQ==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@types/google-protobuf": "^3.7.3",
"google-protobuf": "^3.13.0"
}
},
"@textile/context": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@textile/context/-/context-0.7.0.tgz",
"integrity": "sha512-GwpYZh4dvf2BQ3eWovVVQT7TxyiKhupJZuftg5IksN4FiqfPXTXsc4RlqVWQwigodTVltTK6qdibAUxnhYW3dg==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@textile/security": "^0.3.0"
}
},
"@textile/crypto": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/@textile/crypto/-/crypto-0.1.2.tgz",
"integrity": "sha512-vHmxLlTfPliq1LgaTwih5h9YPCJf5zotas2ld2TX8S6uOYY2jRoLTPR60ddAMfDxPmtuXvFaPz/aRJsHuqgwUA==",
"requires": {
"@types/ed2curve": "^0.2.2",
"@types/multibase": "^0.6.0",
"ed2curve": "^0.3.0",
"multibase": "^3.0.0",
"tweetnacl": "^1.0.3"
},
"dependencies": {
"multibase": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/multibase/-/multibase-3.0.1.tgz",
"integrity": "sha512-MRU5WpnSg81/vYO977MweoeUAxBdXl7+F5Af2Es+X6Vcgfk/g/EjIqXTgm3kb+xO3m1Kzr+aIV14oRX7nv5Z9w==",
"requires": {
"@multiformats/base-x": "^4.0.1",
"web-encoding": "^1.0.2"
}
}
}
},
"@textile/grpc-authentication": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@textile/grpc-authentication/-/grpc-authentication-0.2.3.tgz",
"integrity": "sha512-mYmjLt+xGQqyw1w0g5QgXzPNyllQT3KbjhDTvItNpfXnuNrECZVdtjPORIMNG7Fn0tk0OhMhBHQOQqdDa2PTjA==",
"requires": {
"@textile/context": "^0.7.0",
"@textile/crypto": "^0.1.2",
"@textile/grpc-connection": "^0.1.5",
"@textile/hub-threads-client": "^1.0.1",
"@textile/security": "^0.2.7"
},
"dependencies": {
"@textile/security": {
"version": "0.2.8",
"resolved": "https://registry.npmjs.org/@textile/security/-/security-0.2.8.tgz",
"integrity": "sha512-jTcsewrpmeXPEGSJo3IacHz89rRnR5r7mq2xRex45qkHpj0Hu8lGZPEcc8ATCdtQoMkr1AvWyLwK6zZD5hXKaA==",
"requires": {
"@types/multibase": "^0.6.0",
"fast-sha256": "^1.3.0",
"multibase": "^1.0.0"
}
}
}
},
"@textile/grpc-connection": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/@textile/grpc-connection/-/grpc-connection-0.1.5.tgz",
"integrity": "sha512-YT2r99Qa8A1vOo2fPxIJvB9mxW7L5yOAjK1c9nZG/9n2qu4wdXL5wpKwEkrnijDOm20MYJPjmdQ3Xa8+cKrYNg==",
"requires": {
"@improbable-eng/grpc-web": "^0.12.0",
"@textile/context": "^0.7.0",
"@textile/grpc-transport": "^0.0.3"
},
"dependencies": {
"@improbable-eng/grpc-web": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/@improbable-eng/grpc-web/-/grpc-web-0.12.0.tgz",
"integrity": "sha512-uJjgMPngreRTYPBuo6gswMj1gK39Wbqre/RgE0XnSDXJRg6ST7ZhuS53dFE6Vc2CX4jxgl+cO+0B3op8LA4Q0Q==",
"requires": {
"browser-headers": "^0.4.0"
}
},
"@textile/grpc-transport": {
"version": "0.0.3",
"resolved": "https://registry.npmjs.org/@textile/grpc-transport/-/grpc-transport-0.0.3.tgz",
"integrity": "sha512-COBgLEzBMC3gioD16QoWXyc20KXezMyll4/YKyMannkMShPL8pOc9G4SE9z5li0v0e5v0Nv/R3pL/jFPFqLwOw==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@types/ws": "^7.2.6",
"isomorphic-ws": "^4.0.1",
"loglevel": "^1.6.6",
"ws": "^7.2.1"
},
"dependencies": {
"@improbable-eng/grpc-web": {
"version": "0.13.0",
"resolved": "https://registry.npmjs.org/@improbable-eng/grpc-web/-/grpc-web-0.13.0.tgz",
"integrity": "sha512-vaxxT+Qwb7GPqDQrBV4vAAfH0HywgOLw6xGIKXd9Q8hcV63CQhmS3p4+pZ9/wVvt4Ph3ZDK9fdC983b9aGMUFg==",
"requires": {
"browser-headers": "^0.4.0"
}
}
}
}
}
},
"@textile/grpc-powergate-client": {
"version": "0.6.8",
"resolved": "https://registry.npmjs.org/@textile/grpc-powergate-client/-/grpc-powergate-client-0.6.8.tgz",
"integrity": "sha512-cBWyLMGRilQgFq9VZI9hN6sPO7xc+m+zoxIfab2AEUGFhfDa2Q39qnUKUDYkNc4BcT+BOj66dWpD2kYzq5D2/A==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@types/google-protobuf": "^3.7.3",
"google-protobuf": "^3.13.0"
}
},
"@textile/grpc-transport": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@textile/grpc-transport/-/grpc-transport-0.0.5.tgz",
"integrity": "sha512-Re/fmMY0KfvMUoduPl8xvrjO8bkEAXkYWOis/I0jorUWW9Tc7V4r6g6xW7Weos2ktAExqNZlb3wVfXA6Vszhyg==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@types/ws": "^7.2.6",
"isomorphic-ws": "^4.0.1",
"loglevel": "^1.6.6",
"ws": "^7.2.1"
}
},
"@textile/hub": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@textile/hub/-/hub-1.1.1.tgz",
"integrity": "sha512-aAkan9gYae4tQ4jf46OkhXRDaGO4QSZBeK95x8hd+QOa47xu5c4lQkl60w2npNvFS6Ui78axJTUalIBfZ/bbBg==",
"requires": {
"@textile/buckets": "^1.1.1",
"@textile/crypto": "^0.1.2",
"@textile/grpc-authentication": "^0.2.3",
"@textile/hub-grpc": "2.0.1",
"@textile/hub-threads-client": "^1.0.1",
"@textile/pow": "^1.0.2",
"@textile/security": "^0.3.0",
"@textile/threads-id": "^0.1.15",
"@textile/users": "^1.0.1",
"cids": "^0.8.0",
"loglevel": "^1.6.8",
"multihashes": "0.4.19"
}
},
"@textile/hub-grpc": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@textile/hub-grpc/-/hub-grpc-2.0.1.tgz",
"integrity": "sha512-bvEvsPGN38I0qwSKVXz6SLC8nWoazs2u1Y/hkVEztaYMu4GhF74N084rztKTvzSBeslYb+3fptFTOJrVqAdE2g==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@types/google-protobuf": "^3.7.3",
"google-protobuf": "^3.13.0"
}
},
"@textile/hub-threads-client": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@textile/hub-threads-client/-/hub-threads-client-1.0.1.tgz",
"integrity": "sha512-HTVV3gyzTD27bw9ET8mNMIH3FUUnqXhUg8joQqw7QvoT3aM/zzHvfFUwVCnT2BpnNgBFVwn6tHIEfn503xnjkg==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@textile/context": "^0.7.0",
"@textile/hub-grpc": "2.0.1",
"@textile/security": "^0.3.0",
"@textile/threads-client": "^1.0.0",
"@textile/threads-id": "^0.1.15",
"@textile/users-grpc": "2.1.0",
"cids": "^0.8.0",
"loglevel": "^1.7.0",
"multihashes": "0.4.19"
}
},
"@textile/multiaddr": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@textile/multiaddr/-/multiaddr-0.1.0.tgz",
"integrity": "sha512-ZSzIk7vMfER4RyXXZFZpjTFW+KSWOcG2u4ur1fE0Hxf7qZ9XwOcbv9blO3J5Ptt4wP66ftJ91RTPoaLDA6Hvhg==",
"requires": {
"@textile/threads-id": "^0.1.16",
"@types/bs58": "^4.0.1",
"@types/multiaddr": "^7.2.0",
"@types/multibase": "^0.6.0",
"@types/varint": "^5.0.0",
"bs58": "^4.0.1",
"buffer": "^5.6.0",
"cids": "^1.0.1",
"multiaddr": "^7.4.2",
"varint": "^6.0.0"
},
"dependencies": {
"cids": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/cids/-/cids-1.0.2.tgz",
"integrity": "sha512-ohCcYyEHh0Z5Hl+O1IML4kt6Kx5GPho1ybxtqK4zyk6DeV5CvOLoT/mqDh0cgKcAvsls3vcVa9HjZc7RQr3geA==",
"requires": {
"class-is": "^1.1.0",
"multibase": "^3.0.1",
"multicodec": "^2.0.1",
"multihashes": "^3.0.1",
"uint8arrays": "^1.1.0"
}
},
"multibase": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/multibase/-/multibase-3.0.1.tgz",
"integrity": "sha512-MRU5WpnSg81/vYO977MweoeUAxBdXl7+F5Af2Es+X6Vcgfk/g/EjIqXTgm3kb+xO3m1Kzr+aIV14oRX7nv5Z9w==",
"requires": {
"@multiformats/base-x": "^4.0.1",
"web-encoding": "^1.0.2"
}
},
"multihashes": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/multihashes/-/multihashes-3.0.1.tgz",
"integrity": "sha512-fFY67WOtb0359IjDZxaCU3gJILlkwkFbxbwrK9Bej5+NqNaYztzLOj8/NgMNMg/InxmhK+Uu8S/U4EcqsHzB7Q==",
"requires": {
"multibase": "^3.0.0",
"uint8arrays": "^1.0.0",
"varint": "^5.0.0"
},
"dependencies": {
"varint": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/varint/-/varint-5.0.2.tgz",
"integrity": "sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow=="
}
}
}
}
},
"@textile/pow": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@textile/pow/-/pow-1.0.2.tgz",
"integrity": "sha512-F4vXIssud/dcKNfunXDdmIM7cJoI5/CXVm5hrdVioSw8jpD1v3KQM+a4oJMjwqLNb7K8HwMGGKaGZ4Samaa8LQ==",
"requires": {
"@improbable-eng/grpc-web": "^0.12.0",
"@textile/context": "^0.7.0",
"@textile/crypto": "^0.1.2",
"@textile/grpc-authentication": "^0.2.3",
"@textile/grpc-connection": "^0.1.5",
"@textile/grpc-powergate-client": "0.6.8",
"@textile/hub-grpc": "2.0.1",
"@types/next-tick": "^1.0.0",
"cids": "^0.8.0",
"event-iterator": "^2.0.0",
"loglevel": "^1.6.8",
"next-tick": "^1.1.0"
},
"dependencies": {
"@improbable-eng/grpc-web": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/@improbable-eng/grpc-web/-/grpc-web-0.12.0.tgz",
"integrity": "sha512-uJjgMPngreRTYPBuo6gswMj1gK39Wbqre/RgE0XnSDXJRg6ST7ZhuS53dFE6Vc2CX4jxgl+cO+0B3op8LA4Q0Q==",
"requires": {
"browser-headers": "^0.4.0"
}
}
}
},
"@textile/security": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@textile/security/-/security-0.3.0.tgz",
"integrity": "sha512-XsA3A5sliWaXxR+ICqNGkFClvZdXxYE+NeHu/Jp28xBvmnPqLHlpM8P6NrEYUxGsrEbQVrJc3g8+IuiX+16V0Q==",
"requires": {
"@consento/sync-randombytes": "^1.0.5",
"@types/multibase": "^0.6.0",
"fast-sha256": "^1.3.0",
"multibase": "^1.0.0"
}
},
"@textile/threads-client": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@textile/threads-client/-/threads-client-1.1.0.tgz",
"integrity": "sha512-c9vcUkCxEBa37dL2t5SzgdH6cckcXD1NbhCQKnA7RIqpyUZdlqhw/b6GQee37zpq4J85Cws514+P3QuHIUVqxg==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@textile/context": "^0.8.0",
"@textile/crypto": "^0.1.0",
"@textile/grpc-transport": "^0.0.6",
"@textile/multiaddr": "^0.1.0",
"@textile/security": "^0.4.0",
"@textile/threads-client-grpc": "^1.0.0",
"@textile/threads-id": "^0.1.16",
"@types/to-json-schema": "^0.2.0",
"to-json-schema": "^0.2.5"
},
"dependencies": {
"@textile/context": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/@textile/context/-/context-0.8.0.tgz",
"integrity": "sha512-Ayn8/kM+EyUwLheQqWgyBsFwhvAqVSKGkKDnwsc4Yu3Iwj5y4GJwEvZwtIsT62T+AeCLgnlsl7ZIom9E8iqFuA==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@textile/security": "^0.4.0"
}
},
"@textile/grpc-transport": {
"version": "0.0.6",
"resolved": "https://registry.npmjs.org/@textile/grpc-transport/-/grpc-transport-0.0.6.tgz",
"integrity": "sha512-4feefQ6hLilPPXMaJAJYqtWKJQe/ff+ju/fV67wRSKkZHNS1WuF5NCeJfBFItuaokSHmTGbLT5uqmJYpIVmxDA==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@types/ws": "^7.2.6",
"isomorphic-ws": "^4.0.1",
"loglevel": "^1.6.6",
"ws": "^7.2.1"
}
},
"@textile/security": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@textile/security/-/security-0.4.0.tgz",
"integrity": "sha512-jzfCyz61qLectcigIYcO74uJ1mzv84LEr2Rq4p5wwkjxC2+nbWbXyG7pnhonc90oDeWo4Psfg1doWv2qtx4E9Q==",
"requires": {
"@consento/sync-randombytes": "^1.0.5",
"@types/multibase": "^0.6.0",
"fast-sha256": "^1.3.0",
"multibase": "^1.0.0"
}
}
}
},
"@textile/threads-client-grpc": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@textile/threads-client-grpc/-/threads-client-grpc-1.0.0.tgz",
"integrity": "sha512-8k8QQQR3AZRfeXWF8GZRdKAcANKzYPUjBfXBsURQwaU/Fc+HDJqn3CfL9saO71LfqVypSiXkce1JqQrb4bwCWA==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@types/google-protobuf": "^3.7.3",
"google-protobuf": "^3.13.0"
}
},
"@textile/threads-id": {
"version": "0.1.16",
"resolved": "https://registry.npmjs.org/@textile/threads-id/-/threads-id-0.1.16.tgz",
"integrity": "sha512-7QDHNLX7yLdnZYbBCX+dxJ+Rj4s0m8msknjZ0regafZ76oG0cgfs3gPC9q9sawWS6dzdDy2W5TjDZKFbkec6Hw==",
"requires": {
"@consento/sync-randombytes": "^1.0.4",
"@types/multibase": "^0.6.0",
"@types/varint": "^5.0.0",
"multibase": "^1.0.1",
"varint": "^6.0.0"
}
},
"@textile/users": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@textile/users/-/users-1.0.1.tgz",
"integrity": "sha512-sIrqCUTwPgANrzuP3OsQuNHhJCyoyGLuBkqVji4OshxZnrft9uLllJ9xK8wlCOf+W+02xvtcHI+jVg4632GKew==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@textile/buckets-grpc": "2.0.1",
"@textile/context": "^0.7.0",
"@textile/crypto": "^0.1.2",
"@textile/grpc-authentication": "^0.2.3",
"@textile/grpc-connection": "^0.1.5",
"@textile/grpc-transport": "^0.0.5",
"@textile/hub-grpc": "2.0.1",
"@textile/hub-threads-client": "^1.0.1",
"@textile/security": "^0.3.0",
"@textile/threads-id": "^0.1.15",
"@textile/users-grpc": "2.1.0",
"@types/next-tick": "^1.0.0",
"cids": "^0.8.0",
"event-iterator": "^2.0.0",
"loglevel": "^1.7.0",
"next-tick": "^1.1.0"
},
"dependencies": {
"@textile/buckets-grpc": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@textile/buckets-grpc/-/buckets-grpc-2.0.1.tgz",
"integrity": "sha512-H/1XzlMvYLbyP8fsjQmFkAJSv59pcfjCB3PfYwgcvZwq+LOlf8i62q06ZNei4CTbMSFKhe7mDgOWCGzJpHVrjQ==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@types/google-protobuf": "^3.7.3",
"google-protobuf": "^3.13.0"
}
}
}
},
"@textile/users-grpc": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@textile/users-grpc/-/users-grpc-2.1.0.tgz",
"integrity": "sha512-ar+NtLA0kMLt1ram9jt9XZ9gDlrbqzkCsA1tbPFMNY5os+tIrNa7uLohE27uPpgBz6/BiQTR/223zZcYpAUnow==",
"requires": {
"@improbable-eng/grpc-web": "^0.13.0",
"@types/google-protobuf": "^3.7.3",
"google-protobuf": "^3.13.0"
}
},
"@types/bs58": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@types/bs58/-/bs58-4.0.1.tgz",
"integrity": "sha512-yfAgiWgVLjFCmRv8zAcOIHywYATEwiTVccTLnRp6UxTNavT55M9d/uhK3T03St/+8/z/wW+CRjGKUNmEqoHHCA==",
"requires": {
"base-x": "^3.0.6"
}
},
"@types/cacheable-request": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz",
"integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==",