forked from Discovery-Labs/dCompass-Gitbook-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
3214 lines (2764 loc) · 127 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@actions/core@^1.4.0":
"integrity" "sha512-NB1UAZomZlCV/LmJqkLhNTqtKfFXJZAUPcfl/zqG7EfsQdeUJtaWO98SGbuQ3pydJ3fHl2CvI/51OKYlCYYcaw=="
"resolved" "https://registry.npmjs.org/@actions/core/-/core-1.6.0.tgz"
"version" "1.6.0"
dependencies:
"@actions/http-client" "^1.0.11"
"@actions/github@^5.0.0":
"integrity" "sha512-QvE9eAAfEsS+yOOk0cylLBIO/d6WyWIOvsxxzdrPFaud39G6BOkUwScXZn1iBzQzHyu9SBkkLSWlohDWdsasAQ=="
"resolved" "https://registry.npmjs.org/@actions/github/-/github-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"@actions/http-client" "^1.0.11"
"@octokit/core" "^3.4.0"
"@octokit/plugin-paginate-rest" "^2.13.3"
"@octokit/plugin-rest-endpoint-methods" "^5.1.1"
"@actions/http-client@^1.0.11":
"integrity" "sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg=="
"resolved" "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.11.tgz"
"version" "1.0.11"
dependencies:
"tunnel" "0.0.6"
"@assemblyscript/loader@^0.9.4":
"integrity" "sha512-HazVq9zwTVwGmqdwYzu7WyQ6FQVZ7SwET0KKQuKm55jD0IfUpZgN0OPIiZG3zV1iSrVYcN0bdwLRXI/VNCYsUA=="
"resolved" "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.9.4.tgz"
"version" "0.9.4"
"@babel/code-frame@^7.0.0":
"integrity" "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/highlight" "^7.16.0"
"@babel/helper-validator-identifier@^7.15.7":
"integrity" "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"
"version" "7.15.7"
"@babel/highlight@^7.16.0":
"integrity" "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-validator-identifier" "^7.15.7"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@ceramicnetwork/3id-did-resolver@^1.2.7", "@ceramicnetwork/3id-did-resolver@^1.4.9":
"integrity" "sha512-UVDUxfKc3fV2+eeBF1tGgQgcZs2aToZlcgwxfUJY0j9i3he+VAwG//k8lPFbeAWRMjNUUi9XDHGynxN8gTZS+Q=="
"resolved" "https://registry.npmjs.org/@ceramicnetwork/3id-did-resolver/-/3id-did-resolver-1.4.9.tgz"
"version" "1.4.9"
dependencies:
"@ceramicnetwork/common" "^1.8.0"
"@ceramicnetwork/stream-tile" "^1.5.0"
"@ceramicnetwork/streamid" "^1.3.4"
"cids" "~1.1.6"
"cross-fetch" "^3.1.4"
"lru_map" "^0.4.1"
"uint8arrays" "^2.0.5"
"@ceramicnetwork/common@^1.8.0":
"integrity" "sha512-i16bDukmQ3bHkaJH/B5ANrlomRJNKSCUgoljV3H6v1FH4cKtEo+gmJd79OPwM1jmIbQZ4H67r+Q/XHbIKJrkCQ=="
"resolved" "https://registry.npmjs.org/@ceramicnetwork/common/-/common-1.8.0.tgz"
"version" "1.8.0"
dependencies:
"@ceramicnetwork/streamid" "^1.3.4"
"@overnightjs/logger" "^1.2.0"
"cids" "~1.1.6"
"cross-fetch" "^3.1.4"
"flat" "^5.0.2"
"lodash.clonedeep" "^4.5.0"
"logfmt" "^1.3.2"
"rxjs" "^7.0.0"
"uint8arrays" "^2.0.5"
"@ceramicnetwork/http-client@^1.5.0":
"integrity" "sha512-2fbIaGxz+gwBx9ZX9l2V8UdkpTPdnAMTYaHzeEgA99N+eyML1Ec6gNDl8qp3IkA2ELXVR6IcDaLykm6BkLaccw=="
"resolved" "https://registry.npmjs.org/@ceramicnetwork/http-client/-/http-client-1.5.0.tgz"
"version" "1.5.0"
dependencies:
"@ceramicnetwork/common" "^1.8.0"
"@ceramicnetwork/stream-caip10-link" "^1.2.2"
"@ceramicnetwork/stream-tile" "^1.5.0"
"@ceramicnetwork/streamid" "^1.3.4"
"query-string" "7.0.1"
"rxjs" "^7.0.0"
"@ceramicnetwork/stream-caip10-link@^1.2.2":
"integrity" "sha512-OQjIpBiYrmXOQGQN7eONL0YEiOzSjZkTca7svydEfzk9Yo1UE61xf1V4kV1vD9d4DhvPvrqSXhQgXn/LKdEILw=="
"resolved" "https://registry.npmjs.org/@ceramicnetwork/stream-caip10-link/-/stream-caip10-link-1.2.2.tgz"
"version" "1.2.2"
dependencies:
"@ceramicnetwork/common" "^1.8.0"
"@ceramicnetwork/streamid" "^1.3.4"
"caip" "~0.9.2"
"did-resolver" "^3.1.3"
"@ceramicnetwork/stream-tile@^1.3.0", "@ceramicnetwork/stream-tile@^1.5.0":
"integrity" "sha512-m2pwy0V2SGQ0AqMaxzquJylPBkGeo9XnnwWdxlz4Jrlc8nkac6+LfiPtp1E3zbmyPDuofVHRtOallFf/KYJPXA=="
"resolved" "https://registry.npmjs.org/@ceramicnetwork/stream-tile/-/stream-tile-1.5.0.tgz"
"version" "1.5.0"
dependencies:
"@ceramicnetwork/common" "^1.8.0"
"@ceramicnetwork/streamid" "^1.3.4"
"@stablelib/random" "^1.0.0"
"fast-json-patch" "^2.2.1"
"uint8arrays" "^2.0.5"
"@ceramicnetwork/streamid@^1.3.3", "@ceramicnetwork/streamid@^1.3.4":
"integrity" "sha512-dXzYMnRuZpgb4yCbNizt+jMr+6wAlmEDfL7GzAgMW5/dPX63FtLy/Lq58/YsWEcjIXCsmRPB8GKZl1dJc6Z2IQ=="
"resolved" "https://registry.npmjs.org/@ceramicnetwork/streamid/-/streamid-1.3.4.tgz"
"version" "1.3.4"
dependencies:
"cids" "~1.1.6"
"ipld-dag-cbor" "^0.17.0"
"multibase" "~4.0.2"
"typescript-memoize" "^1.0.0-alpha.4"
"uint8arrays" "^2.0.5"
"varint" "^6.0.0"
"@discovery-decrypted/schemas@^0.1.11":
"integrity" "sha512-akChZekEoMzDpHI6JK7UaxQ8cTqV2sWhs3UNXWI5zFlHhcdLYVpfNn53olPTm7TnvCoyq6Py48MRLEG2cs7eOQ=="
"resolved" "https://registry.npmjs.org/@discovery-decrypted/schemas/-/schemas-0.1.21.tgz"
"version" "0.1.21"
"@glazed/constants@^0.1.1":
"integrity" "sha512-lV9FmQ7xVNoAbegLs6dfv0gPOlrS0t6NU6qPD9xggU12Kiaqa4nQ7ufn2mVh1WYmVLDqP5fUs3/kTq6hbFtjzA=="
"resolved" "https://registry.npmjs.org/@glazed/constants/-/constants-0.1.1.tgz"
"version" "0.1.1"
"@glazed/datamodel@^0.2.0":
"integrity" "sha512-/xI+J6wyx6CE26vrM8aNizfswSBK+mj/09hzNuczKsDiHlADbJ2r8BT57Rr3HX0BxCkqe/HZiCjFS3vqrv9z3w=="
"resolved" "https://registry.npmjs.org/@glazed/datamodel/-/datamodel-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"@glazed/tile-loader" "^0.1.0"
"@glazed/did-datastore@^0.2.1":
"integrity" "sha512-zs79OTtO8s/dlJ6iI2KHF5G9D3sKS13X3lJUP+dDBUYqcDVlWCYZUcD26ove/4Q8UNRHWu7lypzvxoKiOSoBsw=="
"resolved" "https://registry.npmjs.org/@glazed/did-datastore/-/did-datastore-0.2.1.tgz"
"version" "0.2.1"
dependencies:
"@ceramicnetwork/streamid" "^1.3.3"
"@glazed/constants" "^0.1.1"
"@glazed/datamodel" "^0.2.0"
"@glazed/tile-loader" "^0.1.0"
"@glazed/tile-loader@^0.1.0", "@glazed/tile-loader@^0.1.2":
"integrity" "sha512-w8ejDdyCmEJ1WKzfZnOvD/z8g2DZ7+pIKi21edHikiH/HKYzHFqv+xjBMMbBX1heh4RV0aGxOwicFLcaLmdKOg=="
"resolved" "https://registry.npmjs.org/@glazed/tile-loader/-/tile-loader-0.1.2.tgz"
"version" "0.1.2"
dependencies:
"@ceramicnetwork/stream-tile" "^1.3.0"
"dataloader" "^2.0.0"
"setimmediate" "^1.0.5"
"@ipld/car@^3.0.1", "@ipld/car@^3.1.4":
"integrity" "sha512-MknLHLTlLlnwMg0oAX6rjlSvg5wETJEWq1OH1Xn3xcTxmRoTAxSI38d8F7LCMekzgFGa2234y1P6X8PKDBv8/A=="
"resolved" "https://registry.npmjs.org/@ipld/car/-/car-3.1.21.tgz"
"version" "3.1.21"
dependencies:
"@ipld/dag-cbor" "^6.0.0"
"@types/varint" "^6.0.0"
"multiformats" "^9.0.0"
"varint" "^6.0.0"
"@ipld/dag-cbor@^6.0.0", "@ipld/dag-cbor@^6.0.3", "@ipld/dag-cbor@^6.0.4":
"integrity" "sha512-Gv1EEXLCao0v1XhLgrkAN7z8Pe83puquQ9Cq+gQ3kby4kZHP7+Pq+9on+PKl5juB0hDtzgtxEnKSQqLrdcemaw=="
"resolved" "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-6.0.14.tgz"
"version" "6.0.14"
dependencies:
"cborg" "^1.2.1"
"multiformats" "^9.0.0"
"@ipld/dag-pb@^2.0.2":
"integrity" "sha512-as5VT3JlXnreHiXJqdKPuOLJoZ/ZsJQsYaNcVNwe72J5KaotzqBwOumEpON3hsL07TSU139G5avKC8CJNdsNpA=="
"resolved" "https://registry.npmjs.org/@ipld/dag-pb/-/dag-pb-2.1.14.tgz"
"version" "2.1.14"
dependencies:
"multiformats" "^9.0.0"
"@multiformats/base-x@^4.0.1":
"integrity" "sha512-eMk0b9ReBbV23xXU693TAIrLyeO5iTgBZGSJfpqriG8UkYvr/hC9u9pyMlAakDNHWmbhMZCDs6KQO0jzKD8OTw=="
"resolved" "https://registry.npmjs.org/@multiformats/base-x/-/base-x-4.0.1.tgz"
"version" "4.0.1"
"@multiformats/murmur3@^1.0.3":
"integrity" "sha512-E7MYLn0ED0Nt+j0fMw8mWOz9PunPbV7jpNWKzEZCuNoffnf+tagrGSJlcu/7bjGoIezFqqmRCGu+bKesx4trwg=="
"resolved" "https://registry.npmjs.org/@multiformats/murmur3/-/murmur3-1.0.6.tgz"
"version" "1.0.6"
dependencies:
"multiformats" "^9.4.1"
"murmurhash3js-revisited" "^3.0.0"
"@octokit/auth-token@^2.4.4":
"integrity" "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g=="
"resolved" "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@octokit/types" "^6.0.3"
"@octokit/core@^3.4.0", "@octokit/core@>=2", "@octokit/core@>=3":
"integrity" "sha512-omncwpLVxMP+GLpLPgeGJBF6IWJFjXDS5flY5VbppePYX9XehevbDykRH9PdCdvqt9TS5AOTiDide7h0qrkHjw=="
"resolved" "https://registry.npmjs.org/@octokit/core/-/core-3.5.1.tgz"
"version" "3.5.1"
dependencies:
"@octokit/auth-token" "^2.4.4"
"@octokit/graphql" "^4.5.8"
"@octokit/request" "^5.6.0"
"@octokit/request-error" "^2.0.5"
"@octokit/types" "^6.0.3"
"before-after-hook" "^2.2.0"
"universal-user-agent" "^6.0.0"
"@octokit/endpoint@^6.0.1":
"integrity" "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA=="
"resolved" "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz"
"version" "6.0.12"
dependencies:
"@octokit/types" "^6.0.3"
"is-plain-object" "^5.0.0"
"universal-user-agent" "^6.0.0"
"@octokit/graphql@^4.5.8":
"integrity" "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg=="
"resolved" "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz"
"version" "4.8.0"
dependencies:
"@octokit/request" "^5.6.0"
"@octokit/types" "^6.0.3"
"universal-user-agent" "^6.0.0"
"@octokit/openapi-types@^11.2.0":
"integrity" "sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA=="
"resolved" "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz"
"version" "11.2.0"
"@octokit/plugin-paginate-rest@^2.13.3":
"integrity" "sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw=="
"resolved" "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.17.0.tgz"
"version" "2.17.0"
dependencies:
"@octokit/types" "^6.34.0"
"@octokit/plugin-rest-endpoint-methods@^5.1.1":
"integrity" "sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA=="
"resolved" "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.13.0.tgz"
"version" "5.13.0"
dependencies:
"@octokit/types" "^6.34.0"
"deprecation" "^2.3.1"
"@octokit/request-error@^2.0.5", "@octokit/request-error@^2.1.0":
"integrity" "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg=="
"resolved" "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"@octokit/types" "^6.0.3"
"deprecation" "^2.0.0"
"once" "^1.4.0"
"@octokit/request@^5.6.0":
"integrity" "sha512-je66CvSEVf0jCpRISxkUcCa0UkxmFs6eGDRSbfJtAVwbLH5ceqF+YEyC8lj8ystKyZTy8adWr0qmkY52EfOeLA=="
"resolved" "https://registry.npmjs.org/@octokit/request/-/request-5.6.2.tgz"
"version" "5.6.2"
dependencies:
"@octokit/endpoint" "^6.0.1"
"@octokit/request-error" "^2.1.0"
"@octokit/types" "^6.16.1"
"is-plain-object" "^5.0.0"
"node-fetch" "^2.6.1"
"universal-user-agent" "^6.0.0"
"@octokit/types@^6.0.3", "@octokit/types@^6.16.1", "@octokit/types@^6.34.0":
"integrity" "sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw=="
"resolved" "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz"
"version" "6.34.0"
dependencies:
"@octokit/openapi-types" "^11.2.0"
"@overnightjs/logger@^1.2.0":
"integrity" "sha512-ssLUjjj/DXl6m4oydyA6vgVHyJcis4Ui0hS7+EyOxZVMXbiVZeGOficfJfgELTNqTbHLmTb3TBVyJspNDkqbLw=="
"resolved" "https://registry.npmjs.org/@overnightjs/logger/-/logger-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"colors" "^1.3.3"
"util" "^0.11.1"
"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2":
"integrity" "sha1-m4sMxmPWaafY9vXQiToU00jzD78="
"resolved" "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz"
"version" "1.1.2"
"@protobufjs/base64@^1.1.2":
"integrity" "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg=="
"resolved" "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz"
"version" "1.1.2"
"@protobufjs/codegen@^2.0.4":
"integrity" "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg=="
"resolved" "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz"
"version" "2.0.4"
"@protobufjs/eventemitter@^1.1.0":
"integrity" "sha1-NVy8mLr61ZePntCV85diHx0Ga3A="
"resolved" "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz"
"version" "1.1.0"
"@protobufjs/fetch@^1.1.0":
"integrity" "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU="
"resolved" "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"@protobufjs/aspromise" "^1.1.1"
"@protobufjs/inquire" "^1.1.0"
"@protobufjs/float@^1.0.2":
"integrity" "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E="
"resolved" "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz"
"version" "1.0.2"
"@protobufjs/inquire@^1.1.0":
"integrity" "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik="
"resolved" "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz"
"version" "1.1.0"
"@protobufjs/path@^1.1.2":
"integrity" "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0="
"resolved" "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz"
"version" "1.1.2"
"@protobufjs/pool@^1.1.0":
"integrity" "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q="
"resolved" "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz"
"version" "1.1.0"
"@protobufjs/utf8@^1.1.0":
"integrity" "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA="
"resolved" "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz"
"version" "1.1.0"
"@self.id/core@^0.2.0":
"integrity" "sha512-q2Jp0pMHvwkAJ0q8DTPl34EKBlD7vTeJQt+IvbB9CKzOafmuo9fH+PsXfuk4dOTuwq1vzKklAeeAeSeDu8Xmww=="
"resolved" "https://registry.npmjs.org/@self.id/core/-/core-0.2.0.tgz"
"version" "0.2.0"
dependencies:
"@ceramicnetwork/3id-did-resolver" "^1.4.9"
"@ceramicnetwork/http-client" "^1.5.0"
"@ceramicnetwork/stream-caip10-link" "^1.2.2"
"@glazed/datamodel" "^0.2.0"
"@glazed/did-datastore" "^0.2.1"
"@glazed/tile-loader" "^0.1.2"
"caip" "^0.9.2"
"did-resolver" "^3.1.3"
"key-did-resolver" "^1.4.0"
"@sindresorhus/is@^0.14.0":
"integrity" "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
"resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz"
"version" "0.14.0"
"@stablelib/aead@^1.0.1":
"integrity" "sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg=="
"resolved" "https://registry.npmjs.org/@stablelib/aead/-/aead-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/binary@^1.0.1":
"integrity" "sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q=="
"resolved" "https://registry.npmjs.org/@stablelib/binary/-/binary-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/int" "^1.0.1"
"@stablelib/bytes@^1.0.1":
"integrity" "sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ=="
"resolved" "https://registry.npmjs.org/@stablelib/bytes/-/bytes-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/chacha@^1.0.1":
"integrity" "sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg=="
"resolved" "https://registry.npmjs.org/@stablelib/chacha/-/chacha-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/binary" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/chacha20poly1305@^1.0.1":
"integrity" "sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA=="
"resolved" "https://registry.npmjs.org/@stablelib/chacha20poly1305/-/chacha20poly1305-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/aead" "^1.0.1"
"@stablelib/binary" "^1.0.1"
"@stablelib/chacha" "^1.0.1"
"@stablelib/constant-time" "^1.0.1"
"@stablelib/poly1305" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/constant-time@^1.0.1":
"integrity" "sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg=="
"resolved" "https://registry.npmjs.org/@stablelib/constant-time/-/constant-time-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/ed25519@^1.0.1", "@stablelib/ed25519@^1.0.2":
"integrity" "sha512-FtnvUwvKbp6l1dNcg4CswMAVFVu/nzLK3oC7/PRtjYyHbWsIkD8j+5cjXHmwcCpdCpRCaTGACkEhhMQ1RcdSOQ=="
"resolved" "https://registry.npmjs.org/@stablelib/ed25519/-/ed25519-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"@stablelib/random" "^1.0.1"
"@stablelib/sha512" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/hash@^1.0.1":
"integrity" "sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg=="
"resolved" "https://registry.npmjs.org/@stablelib/hash/-/hash-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/int@^1.0.1":
"integrity" "sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w=="
"resolved" "https://registry.npmjs.org/@stablelib/int/-/int-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/keyagreement@^1.0.1":
"integrity" "sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg=="
"resolved" "https://registry.npmjs.org/@stablelib/keyagreement/-/keyagreement-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/bytes" "^1.0.1"
"@stablelib/poly1305@^1.0.1":
"integrity" "sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA=="
"resolved" "https://registry.npmjs.org/@stablelib/poly1305/-/poly1305-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/constant-time" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/random@^1.0.0", "@stablelib/random@^1.0.1":
"integrity" "sha512-zOh+JHX3XG9MSfIB0LZl/YwPP9w3o6WBiJkZvjPoKKu5LKFW4OLV71vMxWp9qG5T43NaWyn0QQTWgqCdO+yOBQ=="
"resolved" "https://registry.npmjs.org/@stablelib/random/-/random-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/binary" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/sha256@^1.0.1":
"integrity" "sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ=="
"resolved" "https://registry.npmjs.org/@stablelib/sha256/-/sha256-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/binary" "^1.0.1"
"@stablelib/hash" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/sha512@^1.0.1":
"integrity" "sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw=="
"resolved" "https://registry.npmjs.org/@stablelib/sha512/-/sha512-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/binary" "^1.0.1"
"@stablelib/hash" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/wipe@^1.0.1":
"integrity" "sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg=="
"resolved" "https://registry.npmjs.org/@stablelib/wipe/-/wipe-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/x25519@^1.0.1":
"integrity" "sha512-nmyUI2ZArxYDh1PhdoSCPEtlTYE0DYugp2qqx8OtjrX3Hmh7boIlDsD0X71ihAxzxqJf3TyQqN/p58ToWhnp+Q=="
"resolved" "https://registry.npmjs.org/@stablelib/x25519/-/x25519-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/keyagreement" "^1.0.1"
"@stablelib/random" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/xchacha20@^1.0.1":
"integrity" "sha512-1YkiZnFF4veUwBVhDnDYwo6EHeKzQK4FnLiO7ezCl/zu64uG0bCCAUROJaBkaLH+5BEsO3W7BTXTguMbSLlWSw=="
"resolved" "https://registry.npmjs.org/@stablelib/xchacha20/-/xchacha20-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/binary" "^1.0.1"
"@stablelib/chacha" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/xchacha20poly1305@^1.0.1":
"integrity" "sha512-B1Abj0sMJ8h3HNmGnJ7vHBrAvxuNka6cJJoZ1ILN7iuacXp7sUYcgOVEOTLWj+rtQMpspY9tXSCRLPmN1mQNWg=="
"resolved" "https://registry.npmjs.org/@stablelib/xchacha20poly1305/-/xchacha20poly1305-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/aead" "^1.0.1"
"@stablelib/chacha20poly1305" "^1.0.1"
"@stablelib/constant-time" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/xchacha20" "^1.0.1"
"@szmarczak/http-timer@^1.1.2":
"integrity" "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="
"resolved" "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"defer-to-connect" "^1.0.1"
"@types/long@^4.0.1":
"integrity" "sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w=="
"resolved" "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz"
"version" "4.0.1"
"@types/minimatch@^3.0.4":
"integrity" "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="
"resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"
"version" "3.0.5"
"@types/minimist@^1.2.0":
"integrity" "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ=="
"resolved" "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz"
"version" "1.2.2"
"@types/node@*", "@types/node@>=13.7.0":
"integrity" "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz"
"version" "16.11.10"
"@types/normalize-package-data@^2.4.0":
"integrity" "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw=="
"resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"
"version" "2.4.1"
"@types/retry@^0.12.0":
"integrity" "sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g=="
"resolved" "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz"
"version" "0.12.1"
"@types/varint@^6.0.0":
"integrity" "sha512-2jBazyxGl4644tvu3VAez8UA/AtrcEetT9HOeAbqZ/vAcRVL/ZDFQjSS7rkWusU5cyONQVUz+nwwrNZdMva4ow=="
"resolved" "https://registry.npmjs.org/@types/varint/-/varint-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"@types/node" "*"
"@web-std/blob@^2.1.0", "@web-std/blob@^2.1.1":
"integrity" "sha512-K94rkZpa8yDEylkniNmK0aCYpkZe7wWn8GHNpyM+ckBQuRqhRmX0NG9d1b1f4pX3FKdLcfp7vTj6FjfdcjO3rQ=="
"resolved" "https://registry.npmjs.org/@web-std/blob/-/blob-2.1.3.tgz"
"version" "2.1.3"
dependencies:
"web-encoding" "1.1.5"
"web-streams-polyfill" "3.0.3"
"@web-std/fetch@^2.0.2", "@web-std/fetch@^2.0.3":
"integrity" "sha512-EKbhp3XNNymdfGG8k1PHTWVHDIOMycdNj3tigvFKvtk2dTqoxCRp8fvXzqLaXCBWC/uE6eie5XG+LmlQAa43Sw=="
"resolved" "https://registry.npmjs.org/@web-std/fetch/-/fetch-2.1.2.tgz"
"version" "2.1.2"
dependencies:
"@web-std/blob" "^2.1.0"
"@web-std/form-data" "^2.1.0"
"@web3-storage/multipart-parser" "^1.0.0"
"data-uri-to-buffer" "^3.0.1"
"web-streams-polyfill" "^3.1.1"
"@web-std/file@^1.1.0":
"integrity" "sha512-oQ/qgKpuJn8DaPl4kfhItD1hflKGwQ27I21Cq0Rf0ENfirxV10ipyiixn392W3z6WsDJ5d6CDLAFoWUCCCu2BQ=="
"resolved" "https://registry.npmjs.org/@web-std/file/-/file-1.1.4.tgz"
"version" "1.1.4"
dependencies:
"@web-std/blob" "^2.1.0"
"@web-std/form-data@^2.1.0":
"integrity" "sha512-YN8L2xDU3258+9cB4DG2CfC+FvOmEL5cnO/RjB4hsPPffnehbj39SP1UVn9AI3Ep/ERJwT1ec9TS4jTH4xAAPQ=="
"resolved" "https://registry.npmjs.org/@web-std/form-data/-/form-data-2.1.2.tgz"
"version" "2.1.2"
dependencies:
"web-encoding" "1.1.5"
"web-streams-polyfill" "3.0.3"
"@web3-storage/multipart-parser@^1.0.0":
"integrity" "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw=="
"resolved" "https://registry.npmjs.org/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz"
"version" "1.0.0"
"@zxing/text-encoding@0.9.0":
"integrity" "sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA=="
"resolved" "https://registry.npmjs.org/@zxing/text-encoding/-/text-encoding-0.9.0.tgz"
"version" "0.9.0"
"abbrev@1":
"integrity" "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
"resolved" "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"
"version" "1.1.1"
"abort-controller@*", "abort-controller@^3.0.0":
"integrity" "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="
"resolved" "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"event-target-shim" "^5.0.0"
"ansi-align@^3.0.0":
"integrity" "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w=="
"resolved" "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"string-width" "^4.1.0"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0", "ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"any-signal@^2.1.0", "any-signal@^2.1.2":
"integrity" "sha512-B+rDnWasMi/eWcajPcCWSlYc7muXOrcYrqgyzcdKisl2H/WTlQ0gip1KyQfr0ZlxJdsuWCj/LWwQm7fhyhRfIQ=="
"resolved" "https://registry.npmjs.org/any-signal/-/any-signal-2.1.2.tgz"
"version" "2.1.2"
dependencies:
"abort-controller" "^3.0.0"
"native-abort-controller" "^1.0.3"
"anymatch@~3.1.2":
"integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"normalize-path" "^3.0.0"
"picomatch" "^2.0.4"
"arrify@^1.0.1":
"integrity" "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
"resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
"version" "1.0.1"
"available-typed-arrays@^1.0.5":
"integrity" "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="
"resolved" "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"
"version" "1.0.5"
"balanced-match@^1.0.0":
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"base64-js@^1.3.1":
"integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
"resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
"version" "1.5.1"
"bech32@^2.0.0":
"integrity" "sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg=="
"resolved" "https://registry.npmjs.org/bech32/-/bech32-2.0.0.tgz"
"version" "2.0.0"
"before-after-hook@^2.2.0":
"integrity" "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ=="
"resolved" "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz"
"version" "2.2.2"
"bignumber.js@^9.0.0":
"integrity" "sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA=="
"resolved" "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.1.tgz"
"version" "9.0.1"
"binary-extensions@^2.0.0":
"integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
"resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
"version" "2.2.0"
"bl@^5.0.0":
"integrity" "sha512-8vxFNZ0pflFfi0WXA3WQXlj6CaMEwsmh63I1CNp0q+wWv8sD0ARx1KovSQd0l2GkwrMIOyedq0EF1FxI+RCZLQ=="
"resolved" "https://registry.npmjs.org/bl/-/bl-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"buffer" "^6.0.3"
"inherits" "^2.0.4"
"readable-stream" "^3.4.0"
"blakejs@^1.1.0":
"integrity" "sha512-bLG6PHOCZJKNshTjGRBvET0vTciwQE6zFKOKKXPDJfwFBd4Ac0yBfPZqcGvGJap50l7ktvlpFqc2jGVaUgbJgg=="
"resolved" "https://registry.npmjs.org/blakejs/-/blakejs-1.1.1.tgz"
"version" "1.1.1"
"blob-to-it@^1.0.1":
"integrity" "sha512-iCmk0W4NdbrWgRRuxOriU8aM5ijeVLI61Zulsmg/lUHNr7pYjoj+U77opLefNagevtrrbMt3JQ5Qip7ar178kA=="
"resolved" "https://registry.npmjs.org/blob-to-it/-/blob-to-it-1.0.4.tgz"
"version" "1.0.4"
dependencies:
"browser-readablestream-to-it" "^1.0.3"
"bn.js@^4.11.9":
"integrity" "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
"resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz"
"version" "4.12.0"
"borc@^2.1.2":
"integrity" "sha512-Sy9eoUi4OiKzq7VovMn246iTo17kzuyHJKomCfpWMlI6RpfN1gk95w7d7gH264nApVLg0HZfcpz62/g4VH1Y4w=="
"resolved" "https://registry.npmjs.org/borc/-/borc-2.1.2.tgz"
"version" "2.1.2"
dependencies:
"bignumber.js" "^9.0.0"
"buffer" "^5.5.0"
"commander" "^2.15.0"
"ieee754" "^1.1.13"
"iso-url" "~0.4.7"
"json-text-sequence" "~0.1.0"
"readable-stream" "^3.6.0"
"boxen@^5.0.0":
"integrity" "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ=="
"resolved" "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"ansi-align" "^3.0.0"
"camelcase" "^6.2.0"
"chalk" "^4.1.0"
"cli-boxes" "^2.2.1"
"string-width" "^4.2.2"
"type-fest" "^0.20.2"
"widest-line" "^3.1.0"
"wrap-ansi" "^7.0.0"
"brace-expansion@^1.1.7":
"integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
"resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"braces@~3.0.2":
"integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
"resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"fill-range" "^7.0.1"
"brorand@^1.1.0":
"integrity" "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8="
"resolved" "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz"
"version" "1.1.0"
"browser-readablestream-to-it@^1.0.1", "browser-readablestream-to-it@^1.0.2", "browser-readablestream-to-it@^1.0.3":
"integrity" "sha512-+12sHB+Br8HIh6VAMVEG5r3UXCyESIgDW7kzk3BjIXa43DVqVwL7GC5TW3jeh+72dtcH99pPVpw0X8i0jt+/kw=="
"resolved" "https://registry.npmjs.org/browser-readablestream-to-it/-/browser-readablestream-to-it-1.0.3.tgz"
"version" "1.0.3"
"buffer@^5.5.0":
"integrity" "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="
"resolved" "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
"version" "5.7.1"
dependencies:
"base64-js" "^1.3.1"
"ieee754" "^1.1.13"
"buffer@^6.0.1":
"integrity" "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="
"resolved" "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz"
"version" "6.0.3"
dependencies:
"base64-js" "^1.3.1"
"ieee754" "^1.2.1"
"buffer@^6.0.3":
"integrity" "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="
"resolved" "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz"
"version" "6.0.3"
dependencies:
"base64-js" "^1.3.1"
"ieee754" "^1.2.1"
"cacheable-request@^6.0.0":
"integrity" "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg=="
"resolved" "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz"
"version" "6.1.0"
dependencies:
"clone-response" "^1.0.2"
"get-stream" "^5.1.0"
"http-cache-semantics" "^4.0.0"
"keyv" "^3.0.0"
"lowercase-keys" "^2.0.0"
"normalize-url" "^4.1.0"
"responselike" "^1.0.2"
"caip@^0.9.2", "caip@~0.9.2":
"integrity" "sha512-o4aIUSR9lkn7B9lIw8Xgkj+hDh+S1PtsBphoSqP2Dt95gRWPniaqEpnPwiUEhaPQr84JzWIEm4Cck3lMZtIkTA=="
"resolved" "https://registry.npmjs.org/caip/-/caip-0.9.2.tgz"
"version" "0.9.2"
"call-bind@^1.0.0", "call-bind@^1.0.2":
"integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="
"resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"function-bind" "^1.1.1"
"get-intrinsic" "^1.0.2"
"camelcase-keys@^6.2.2":
"integrity" "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg=="
"resolved" "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz"
"version" "6.2.2"
dependencies:
"camelcase" "^5.3.1"
"map-obj" "^4.0.0"
"quick-lru" "^4.0.1"
"camelcase@^5.3.1":
"integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
"version" "5.3.1"
"camelcase@^6.2.0":
"integrity" "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA=="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.1.tgz"
"version" "6.2.1"
"canonicalize@^1.0.5":
"integrity" "sha512-mAjKJPIyP0xqqv6IAkvso07StOmz6cmGtNDg3pXCSzXVZOqka7StIkAhJl/zHOi4M2CgpYfD6aeRWbnrmtvBEA=="
"resolved" "https://registry.npmjs.org/canonicalize/-/canonicalize-1.0.5.tgz"
"version" "1.0.5"
"carbites@^1.0.6":
"integrity" "sha512-dS9IQvnrb5VIRvSTNz5Ff+mB9d2MFfi5mojtJi7Rlss79VeF190jr0sZdA7eW0CGHotvHkZaWuM6wgfD9PEFRg=="
"resolved" "https://registry.npmjs.org/carbites/-/carbites-1.0.6.tgz"
"version" "1.0.6"
dependencies:
"@ipld/car" "^3.0.1"
"@ipld/dag-cbor" "^6.0.3"
"@ipld/dag-pb" "^2.0.2"
"multiformats" "^9.0.4"
"cborg@^1.2.1":
"integrity" "sha512-iUweYinQpR48eXxcmEoZlixY2eo+vDCGc5utNwXV0oYhmowHU/2DwcSiJ4xU1l7niwXOR91pcE3zEgZl4VoFAQ=="
"resolved" "https://registry.npmjs.org/cborg/-/cborg-1.5.3.tgz"
"version" "1.5.3"
"chalk@^2.0.0":
"integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"ansi-styles" "^3.2.1"
"escape-string-regexp" "^1.0.5"
"supports-color" "^5.3.0"
"chalk@^4.1.0":
"integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"chokidar@^3.5.2":
"integrity" "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="
"resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"
"version" "3.5.2"
dependencies:
"anymatch" "~3.1.2"
"braces" "~3.0.2"
"glob-parent" "~5.1.2"
"is-binary-path" "~2.1.0"
"is-glob" "~4.0.1"
"normalize-path" "~3.0.0"
"readdirp" "~3.6.0"
optionalDependencies:
"fsevents" "~2.3.2"
"ci-info@^2.0.0":
"integrity" "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="
"resolved" "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz"
"version" "2.0.0"
"cids@^1.0.0", "cids@^1.1.6", "cids@~1.1.6":
"integrity" "sha512-l11hWRfugIcbGuTZwAM5PwpjPPjyb6UZOGwlHSnOBV5o07XhQ4gNpBN67FbODvpjyHtd+0Xs6KNvUcGBiDRsdg=="
"resolved" "https://registry.npmjs.org/cids/-/cids-1.1.9.tgz"
"version" "1.1.9"
dependencies:
"multibase" "^4.0.1"
"multicodec" "^3.0.1"
"multihashes" "^4.0.1"
"uint8arrays" "^3.0.0"
"cli-boxes@^2.2.1":
"integrity" "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw=="
"resolved" "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz"
"version" "2.2.1"
"clone-response@^1.0.2":
"integrity" "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws="
"resolved" "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"mimic-response" "^1.0.0"
"color-convert@^1.9.0":
"integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
"version" "1.9.3"
dependencies:
"color-name" "1.1.3"
"color-convert@^2.0.1":
"integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"color-name" "~1.1.4"
"color-name@~1.1.4":
"integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
"version" "1.1.4"
"color-name@1.1.3":
"integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
"version" "1.1.3"
"colors@^1.3.3":
"integrity" "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA=="
"resolved" "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz"
"version" "1.4.0"
"commander@^2.15.0":
"integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
"resolved" "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"
"version" "2.20.3"
"concat-map@0.0.1":
"integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
"resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
"version" "0.0.1"
"configstore@^5.0.1":
"integrity" "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA=="
"resolved" "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz"
"version" "5.0.1"
dependencies:
"dot-prop" "^5.2.0"
"graceful-fs" "^4.1.2"
"make-dir" "^3.0.0"
"unique-string" "^2.0.0"
"write-file-atomic" "^3.0.0"
"xdg-basedir" "^4.0.0"
"cross-fetch@^3.1.4":
"integrity" "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ=="
"resolved" "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"node-fetch" "2.6.1"
"crypto-random-string@^2.0.0":
"integrity" "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="
"resolved" "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz"
"version" "2.0.0"
"dag-jose-utils@^0.1.1":
"integrity" "sha512-fFRgalfWAgz1zwjxEwlrQY0p+23zLRpvQm7IfPTiMUEXL7zrW/PBmNvmcs9KQphRP7icRzNM0nFxKNbpK2v4aw=="
"resolved" "https://registry.npmjs.org/dag-jose-utils/-/dag-jose-utils-0.1.1.tgz"
"version" "0.1.1"
dependencies:
"cids" "^1.1.6"
"ipld-dag-cbor" "^0.17.1"
"multihashes" "^4.0.2"
"uint8arrays" "^2.1.4"
"varint" "^6.0.0"
"data-uri-to-buffer@^3.0.1":
"integrity" "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og=="
"resolved" "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz"
"version" "3.0.1"
"dataloader@^2.0.0":
"integrity" "sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ=="
"resolved" "https://registry.npmjs.org/dataloader/-/dataloader-2.0.0.tgz"
"version" "2.0.0"
"debug@^3.2.7":
"integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="
"resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
"version" "3.2.7"