-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage-lock.json
12599 lines (12599 loc) · 452 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": "did-web-polyfill",
"version": "0.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "did-web-polyfill",
"version": "0.0.1",
"license": "Apache 2",
"dependencies": {
"@decentralized-identity/ion-tools": "0.1.0",
"@nano-sql/core": "2.3.7",
"@transmute/json-web-signature": "0.7.0-unstable.35",
"@transmute/vc.js": "0.7.0-unstable.35",
"acebase": "1.14.0"
},
"devDependencies": {
"fs-extra": "9.0.1",
"gulp": "4.0.2",
"gulp-clean-css": "4.3.0",
"gulp-concat": "2.6.1",
"gulp-nunjucks-render": "2.2.3",
"gulp-terser": "2.1.0",
"merge-stream": "2.0.0"
}
},
"node_modules/@bitauth/libauth": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@bitauth/libauth/-/libauth-1.19.0.tgz",
"integrity": "sha512-UtfCijrCcPCQdstlxiv29hBNuYs/1hqeDMgS6CPjxps7r7/y/0p9TRGDx65fczlO12Pa5rQdWO/GzwsXo03uIg==",
"engines": {
"node": ">=8.9"
}
},
"node_modules/@decentralized-identity/ion-sdk": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/@decentralized-identity/ion-sdk/-/ion-sdk-0.5.0.tgz",
"integrity": "sha512-W6Cd3KXd8Mqv8dgFvUEt1Jj3jKUtursmOhr50o1nG3J0LbVw8inCrkrmd7R9C5zpBPP+1EwpUya+A9JU5nbp7w==",
"dependencies": {
"@transmute/did-key-secp256k1": "^0.2.1-unstable.35",
"@waiting/base64": "4.2.9",
"canonicalize": "1.0.1",
"multihashes": "0.4.14",
"randombytes": "2.1.0",
"uri-js": "4.4.0"
}
},
"node_modules/@decentralized-identity/ion-sdk/node_modules/canonicalize": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/canonicalize/-/canonicalize-1.0.1.tgz",
"integrity": "sha512-N3cmB3QLhS5TJ5smKFf1w42rJXWe6C1qP01z4dxJiI5v269buii4fLHWETDyf7yEd0azGLNC63VxNMiPd2u0Cg=="
},
"node_modules/@decentralized-identity/ion-tools": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@decentralized-identity/ion-tools/-/ion-tools-0.1.0.tgz",
"integrity": "sha512-huAxeVtOeRJiAUcqSxI+JGSQef0rSISdRP2QebH19yt2IN0rNGsnyVYPurRqJ+36LhIGoPLrGXb686IgVUDlpw==",
"dependencies": {
"@decentralized-identity/ion-sdk": "0.5.0",
"@transmute/did-key-bls12381": "^0.2.1-unstable.42",
"@transmute/did-key-ed25519": "^0.2.1-unstable.42",
"@transmute/did-key-p384": "^0.2.1-unstable.20",
"@transmute/did-key-secp256k1": "^0.2.1-unstable.42",
"@transmute/did-key-x25519": "^0.2.1-unstable.42",
"@transmute/did-key.js": "^0.2.1-unstable.42",
"cross-fetch": "^3.1.4",
"ion-pow-sdk": "^1.0.15",
"randombytes": "^2.1.0"
},
"engines": {
"node": ">=0.12"
}
},
"node_modules/@digitalbazaar/http-client": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@digitalbazaar/http-client/-/http-client-1.2.0.tgz",
"integrity": "sha512-W9KQQ5pUJcaR0I4c2HPJC0a7kRbZApIorZgPnEDwMBgj16iQzutGLrCXYaZOmxqVLVNqqlQ4aUJh+HBQZy4W6Q==",
"dependencies": {
"esm": "^3.2.22",
"ky": "^0.25.1",
"ky-universal": "^0.8.2"
},
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@mattrglobal/bbs-signatures": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/@mattrglobal/bbs-signatures/-/bbs-signatures-0.5.0.tgz",
"integrity": "sha512-4te4TpacAmeCM8aa/kHkU0i1IJwsO1x/Tez6/YLUWg6rK6bfGA1NNO7IBc12u9ETkoTsiU32UmsiYWXcw9QwKQ==",
"optionalDependencies": {
"@mattrglobal/node-bbs-signatures": "0.11.0"
}
},
"node_modules/@mattrglobal/bls12381-key-pair": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/@mattrglobal/bls12381-key-pair/-/bls12381-key-pair-0.5.0.tgz",
"integrity": "sha512-eXAtke0HOEr9RcT+NEI1MERE50gUnnLm1mYBJkUugk9REP3MfKXtX2Mo4FXyCH/IR4Oxj2jCcfNYW/h0Q3x5sg==",
"dependencies": {
"@mattrglobal/bbs-signatures": "0.5.0",
"bs58": "4.0.1",
"rfc4648": "1.4.0"
}
},
"node_modules/@mattrglobal/node-bbs-signatures": {
"version": "0.11.0",
"resolved": "https://registry.npmjs.org/@mattrglobal/node-bbs-signatures/-/node-bbs-signatures-0.11.0.tgz",
"integrity": "sha512-V0wcY0ZewrPOiMOrL3wam0oYL1SLbF2ihgAM6JQvLrAKw1MckYiJ8T4vL+nOBs2hf1PA1TZI+USe5mqMWuVKTw==",
"hasInstallScript": true,
"optional": true,
"dependencies": {
"neon-cli": "0.4.0",
"node-pre-gyp": "0.14.0"
},
"engines": {
"node": ">=10",
"yarn": "1.x"
}
},
"node_modules/@nano-sql/core": {
"version": "2.3.7",
"resolved": "https://registry.npmjs.org/@nano-sql/core/-/core-2.3.7.tgz",
"integrity": "sha512-B9nniPPRhPf5Hf2cyvy72SNEg4iKQEW6pig9nwrM4DJlmOMZudifOMPBoJuK6JcTaLATIOGRPkclfosNUALnLQ==",
"dependencies": {
"fast-deep-equal": "^2.0.1",
"levenshtein-edit-distance": "^2.0.4",
"really-small-events": "^1.1.0",
"snap-db": "^1.1.1"
},
"bin": {
"nsql": "lib/cli.js"
},
"optionalDependencies": {
"chalk": "^2.4.2",
"chokidar": "^3.0.2",
"command-line-args": "^5.1.1"
}
},
"node_modules/@nano-sql/core/node_modules/anymatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
"integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
"optional": true,
"dependencies": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nano-sql/core/node_modules/binary-extensions": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
"integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
"optional": true,
"engines": {
"node": ">=8"
}
},
"node_modules/@nano-sql/core/node_modules/braces": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
"optional": true,
"dependencies": {
"fill-range": "^7.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@nano-sql/core/node_modules/chokidar": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
"integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
"optional": true,
"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"
},
"engines": {
"node": ">= 8.10.0"
},
"optionalDependencies": {
"fsevents": "~2.3.2"
}
},
"node_modules/@nano-sql/core/node_modules/fill-range": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
"optional": true,
"dependencies": {
"to-regex-range": "^5.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@nano-sql/core/node_modules/fsevents": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
"hasInstallScript": true,
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
"node_modules/@nano-sql/core/node_modules/glob-parent": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"optional": true,
"dependencies": {
"is-glob": "^4.0.1"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/@nano-sql/core/node_modules/is-binary-path": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
"optional": true,
"dependencies": {
"binary-extensions": "^2.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@nano-sql/core/node_modules/is-number": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"optional": true,
"engines": {
"node": ">=0.12.0"
}
},
"node_modules/@nano-sql/core/node_modules/readdirp": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
"optional": true,
"dependencies": {
"picomatch": "^2.2.1"
},
"engines": {
"node": ">=8.10.0"
}
},
"node_modules/@nano-sql/core/node_modules/to-regex-range": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
"optional": true,
"dependencies": {
"is-number": "^7.0.0"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@peculiar/asn1-schema": {
"version": "2.0.44",
"resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.0.44.tgz",
"integrity": "sha512-uaCnjQ9A9WwQSMuDJcNOCYEPXTahgKbFMvI7eMOMd8lXgx0J1eU7F3BoMsK5PFxa3dVUxjSQbaOjfgGoeHGgoQ==",
"dependencies": {
"@types/asn1js": "^2.0.2",
"asn1js": "^2.1.1",
"pvtsutils": "^1.2.1",
"tslib": "^2.3.0"
}
},
"node_modules/@peculiar/json-schema": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz",
"integrity": "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==",
"dependencies": {
"tslib": "^2.0.0"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/@peculiar/webcrypto": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.2.3.tgz",
"integrity": "sha512-q7wDfZy3k/tpnsYB23/MyyDkjn6IdHh8w+xwoVMS5cu6CjVoFzngXDZEOOuSE4zus2yO6ciQhhHxd4XkLpwVnQ==",
"dependencies": {
"@peculiar/asn1-schema": "^2.0.44",
"@peculiar/json-schema": "^1.1.12",
"pvtsutils": "^1.2.1",
"tslib": "^2.3.1",
"webcrypto-core": "^1.4.0"
},
"engines": {
"node": ">=10.12.0"
}
},
"node_modules/@stablelib/aead": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/aead/-/aead-1.0.1.tgz",
"integrity": "sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg=="
},
"node_modules/@stablelib/aes": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/aes/-/aes-1.0.1.tgz",
"integrity": "sha512-bMiezJDeFONDHbMEa+Kic26962+bwkZfsHPAmcqTjLaHCAhEQuK3i1H0POPOkcHCdj75oVRIqFCraCA0cyHPvw==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/blockcipher": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/aes-kw": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/aes-kw/-/aes-kw-1.0.1.tgz",
"integrity": "sha512-KrOkiRex1tQTbWk+hFB5fFw4vqKhNnTUtlCRf1bhUEOFp7hadWe49/sLa/P4X4FBQVoh3Z9Lj0zS1OWu/AHA1w==",
"dependencies": {
"@stablelib/aes": "^1.0.1",
"@stablelib/binary": "^1.0.1",
"@stablelib/blockcipher": "^1.0.1",
"@stablelib/constant-time": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"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/blockcipher": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/blockcipher/-/blockcipher-1.0.1.tgz",
"integrity": "sha512-4bkpV8HUAv0CgI1fUqkPUEEvv3RXQ3qBkuZaSWhshXGAz1JCpriesgiO9Qs4f0KzBJkCtvcho5n7d/RKvnHbew=="
},
"node_modules/@stablelib/bytes": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/bytes/-/bytes-1.0.1.tgz",
"integrity": "sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ=="
},
"node_modules/@stablelib/chacha": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/chacha/-/chacha-1.0.1.tgz",
"integrity": "sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/chacha20poly1305": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/chacha20poly1305/-/chacha20poly1305-1.0.1.tgz",
"integrity": "sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==",
"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"
}
},
"node_modules/@stablelib/constant-time": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/constant-time/-/constant-time-1.0.1.tgz",
"integrity": "sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg=="
},
"node_modules/@stablelib/ed25519": {
"version": "1.0.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/keyagreement": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/keyagreement/-/keyagreement-1.0.1.tgz",
"integrity": "sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==",
"dependencies": {
"@stablelib/bytes": "^1.0.1"
}
},
"node_modules/@stablelib/poly1305": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/poly1305/-/poly1305-1.0.1.tgz",
"integrity": "sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==",
"dependencies": {
"@stablelib/constant-time": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/random": {
"version": "1.0.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/@stablelib/x25519": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/x25519/-/x25519-1.0.1.tgz",
"integrity": "sha512-nmyUI2ZArxYDh1PhdoSCPEtlTYE0DYugp2qqx8OtjrX3Hmh7boIlDsD0X71ihAxzxqJf3TyQqN/p58ToWhnp+Q==",
"dependencies": {
"@stablelib/keyagreement": "^1.0.1",
"@stablelib/random": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/xchacha20": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/xchacha20/-/xchacha20-1.0.1.tgz",
"integrity": "sha512-1YkiZnFF4veUwBVhDnDYwo6EHeKzQK4FnLiO7ezCl/zu64uG0bCCAUROJaBkaLH+5BEsO3W7BTXTguMbSLlWSw==",
"dependencies": {
"@stablelib/binary": "^1.0.1",
"@stablelib/chacha": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@stablelib/xchacha20poly1305": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/xchacha20poly1305/-/xchacha20poly1305-1.0.1.tgz",
"integrity": "sha512-B1Abj0sMJ8h3HNmGnJ7vHBrAvxuNka6cJJoZ1ILN7iuacXp7sUYcgOVEOTLWj+rtQMpspY9tXSCRLPmN1mQNWg==",
"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"
}
},
"node_modules/@transmute/bls12381-key-pair": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/bls12381-key-pair/-/bls12381-key-pair-0.7.0-unstable.35.tgz",
"integrity": "sha512-zKIDTxROCsH6ubJWpw9R6mQZVVOocjZGPwq9s/NFUI3kTC0D5rTr4emn0CvHd1DxmRVqN5CXYPNNfpF01tYD6g==",
"dependencies": {
"@mattrglobal/bls12381-key-pair": "^0.5.0",
"@transmute/ld-key-pair": "^0.7.0-unstable.35"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/bls12381-key-pair/node_modules/@transmute/ld-key-pair": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/ld-key-pair/-/ld-key-pair-0.7.0-unstable.35.tgz",
"integrity": "sha512-NYYHDUB7/t3eHP6q14o/RRxiVNK9pi2/suH582gg+V+dTQUjLzPOUwMdg5GsOT+HgWctxRhH8inNkLvMalyvpg=="
},
"node_modules/@transmute/did-key-bls12381": {
"version": "0.2.1-unstable.42",
"resolved": "https://registry.npmjs.org/@transmute/did-key-bls12381/-/did-key-bls12381-0.2.1-unstable.42.tgz",
"integrity": "sha512-NYe8Sp09+M20BtXEd/GhVeqzVksdl5pKf71nCMpvjZHHKG5FPAcGc5uYpbk/CbY5Xb/2lH76lTndim0IMU6IIQ==",
"dependencies": {
"@mattrglobal/bbs-signatures": "^0.5.0",
"@mattrglobal/bls12381-key-pair": "^0.5.0",
"base64url": "^3.0.1",
"bs58": "^4.0.1"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/did-key-cipher": {
"version": "0.2.1-unstable.42",
"resolved": "https://registry.npmjs.org/@transmute/did-key-cipher/-/did-key-cipher-0.2.1-unstable.42.tgz",
"integrity": "sha512-drD/G7R2yQkK6PnGkmLOlOieL3ybtiEXsubaebaBayoRsWqBRX/IJ0ufGwjRgohTvvlSoKWd4Ustyyhi9kK+Mw==",
"dependencies": {
"@peculiar/webcrypto": "^1.1.3",
"@stablelib/aes-kw": "^1.0.0",
"@stablelib/xchacha20poly1305": "^1.0.0",
"@transmute/did-key-common": "^0.2.1-unstable.42",
"web-streams-polyfill": "^3.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/did-key-common": {
"version": "0.2.1-unstable.42",
"resolved": "https://registry.npmjs.org/@transmute/did-key-common/-/did-key-common-0.2.1-unstable.42.tgz",
"integrity": "sha512-mJ58IKEBxa6SorCrIBSPu0OcEj94Y5+0/qUKqbNTTqfCOsPi6E5BEzMIgpf3Unrb59u+u5JBL0T/Sy7coOSO1A==",
"dependencies": {
"base64url": "^3.0.1",
"borc": "^2.1.2",
"canonicalize": "^1.0.3",
"cbor": "^5.1.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/did-key-ed25519": {
"version": "0.2.1-unstable.42",
"resolved": "https://registry.npmjs.org/@transmute/did-key-ed25519/-/did-key-ed25519-0.2.1-unstable.42.tgz",
"integrity": "sha512-FObeBtLd5Dl2rng8pBXQ0ddGAUpv9Upl07mDNWanfCWNxsO3csLv1JskLgp5ZTKwDaoWkUMMU+DTOQVVcHKpPw==",
"dependencies": {
"@stablelib/ed25519": "^1.0.1",
"@transmute/did-key-common": "^0.2.1-unstable.42",
"@transmute/did-key-x25519": "^0.2.1-unstable.42",
"@trust/keyto": "^1.0.1",
"base64url": "^3.0.1",
"bs58": "^4.0.1",
"canonicalize": "^1.0.1"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/did-key-p384": {
"version": "0.2.1-unstable.20",
"resolved": "https://registry.npmjs.org/@transmute/did-key-p384/-/did-key-p384-0.2.1-unstable.20.tgz",
"integrity": "sha512-gbsuw835jSvKUfhgCx0XrvAQrE7pbL6rNy9hipZ4LVJRY3yPT59tDqnPCcP2EHfc7ihjtVKf8TMevxA9kb81QQ==",
"dependencies": {
"base64url": "^3.0.1",
"bs58": "^4.0.1",
"canonicalize": "^1.0.1",
"node-webcrypto-ossl": "^2.1.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/did-key-secp256k1": {
"version": "0.2.1-unstable.42",
"resolved": "https://registry.npmjs.org/@transmute/did-key-secp256k1/-/did-key-secp256k1-0.2.1-unstable.42.tgz",
"integrity": "sha512-pLHsxVEeJYUz2jaUWznGJHRaRE+Fg3A4DiArWYpRSozYaSW5x2AhXELN+08qvU4E8FjiQmqInf8KqeS0hlUJoQ==",
"dependencies": {
"@transmute/did-key-common": "^0.2.1-unstable.42",
"@trust/keyto": "^1.0.1",
"base64url": "^3.0.1",
"bs58": "^4.0.1",
"canonicalize": "^1.0.1",
"secp256k1": "^4.0.1"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/did-key-web-crypto": {
"version": "0.2.1-unstable.42",
"resolved": "https://registry.npmjs.org/@transmute/did-key-web-crypto/-/did-key-web-crypto-0.2.1-unstable.42.tgz",
"integrity": "sha512-GaD320cZxPJAVdQtSrxgTn91T1M/2qwSMQgowVdnY5HKEik2BS3o1kU7DYAJpUPdU2WNKg9W3Rr+C/dRY0Q0rQ==",
"dependencies": {
"@transmute/web-crypto-key-pair": "^0.6.1-unstable.18"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/did-key-x25519": {
"version": "0.2.1-unstable.42",
"resolved": "https://registry.npmjs.org/@transmute/did-key-x25519/-/did-key-x25519-0.2.1-unstable.42.tgz",
"integrity": "sha512-pInHZaepvjmfym1fBDrdbL5isUVbYHR1nYBsH3uD9EPn7SwZfEBe0Vg9hUop81b4x/6+VVWuGm2dIhpVBxsRPQ==",
"dependencies": {
"@stablelib/ed25519": "^1.0.1",
"@stablelib/x25519": "^1.0.0",
"@transmute/did-key-cipher": "^0.2.1-unstable.42",
"@transmute/did-key-common": "^0.2.1-unstable.42",
"@trust/keyto": "^1.0.1",
"base64url": "^3.0.1",
"bs58": "^4.0.1",
"canonicalize": "^1.0.1"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/did-key.js": {
"version": "0.2.1-unstable.42",
"resolved": "https://registry.npmjs.org/@transmute/did-key.js/-/did-key.js-0.2.1-unstable.42.tgz",
"integrity": "sha512-vqwkJeAIkpekSCszKztIOVGFuWZMF8GJfiSHMv+vsS0cgLqzHer8WCUCudWt76rc2s90uK7FdlkvdwoZgGRl6g==",
"dependencies": {
"@transmute/did-key-bls12381": "^0.2.1-unstable.42",
"@transmute/did-key-ed25519": "^0.2.1-unstable.42",
"@transmute/did-key-secp256k1": "^0.2.1-unstable.42",
"@transmute/did-key-web-crypto": "^0.2.1-unstable.42",
"@transmute/did-key-x25519": "^0.2.1-unstable.42"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/ed25519-key-pair": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/ed25519-key-pair/-/ed25519-key-pair-0.7.0-unstable.35.tgz",
"integrity": "sha512-qZ3QBqfMFHB2lClwB5ed0IN2riJ+EW/T9QFODUmpTSJ//y4VE9QC+CrFRBtrSCaDeCgWdAGZGgwyFOFqukfBqQ==",
"dependencies": {
"@stablelib/ed25519": "^1.0.1",
"@transmute/ld-key-pair": "^0.7.0-unstable.35",
"@transmute/x25519-key-pair": "^0.7.0-unstable.35"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/ed25519-key-pair/node_modules/@transmute/ld-key-pair": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/ld-key-pair/-/ld-key-pair-0.7.0-unstable.35.tgz",
"integrity": "sha512-NYYHDUB7/t3eHP6q14o/RRxiVNK9pi2/suH582gg+V+dTQUjLzPOUwMdg5GsOT+HgWctxRhH8inNkLvMalyvpg=="
},
"node_modules/@transmute/jose-ld": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/jose-ld/-/jose-ld-0.7.0-unstable.35.tgz",
"integrity": "sha512-aWakD1s973/yWKa7cC4jZVHtBJWQSJq2yaYXk2Ly9g9uWxZ+tQH3Braf6x/H0uU1saAzHbLh3x2Tci/B3oYTIA==",
"dependencies": {
"@peculiar/webcrypto": "^1.1.6",
"@stablelib/aes-kw": "^1.0.0",
"@stablelib/xchacha20poly1305": "^1.0.0",
"base64url": "^3.0.1",
"web-streams-polyfill": "^3.0.3"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/json-web-signature": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/json-web-signature/-/json-web-signature-0.7.0-unstable.35.tgz",
"integrity": "sha512-Enxc8kWKakjyRzmdT857ndPmAncKFy+saX0MuzaOagewefadME2pybNowoC1B8QLFVLDHZ/dXB54f5RxxlMB9w==",
"dependencies": {
"@transmute/bls12381-key-pair": "^0.7.0-unstable.35",
"@transmute/ed25519-key-pair": "^0.7.0-unstable.35",
"@transmute/jose-ld": "^0.7.0-unstable.35",
"@transmute/secp256k1-key-pair": "^0.7.0-unstable.35",
"@transmute/security-context": "^0.7.0-unstable.35",
"@transmute/web-crypto-key-pair": "^0.7.0-unstable.35",
"jsonld": "^5.2.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/json-web-signature/node_modules/@transmute/ld-key-pair": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/ld-key-pair/-/ld-key-pair-0.7.0-unstable.35.tgz",
"integrity": "sha512-NYYHDUB7/t3eHP6q14o/RRxiVNK9pi2/suH582gg+V+dTQUjLzPOUwMdg5GsOT+HgWctxRhH8inNkLvMalyvpg=="
},
"node_modules/@transmute/json-web-signature/node_modules/@transmute/web-crypto-key-pair": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/web-crypto-key-pair/-/web-crypto-key-pair-0.7.0-unstable.35.tgz",
"integrity": "sha512-mju+aVIKLp4EWb+Xsnvbih+YJmDmEzWJKE5wJJcplHUbATmAAjGkJiveLE8L5X6w4HTA6h8Z8d6wWLHcXcZOqA==",
"dependencies": {
"@peculiar/webcrypto": "^1.1.6",
"@transmute/ld-key-pair": "^0.7.0-unstable.35",
"big-integer": "^1.6.48"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/jsonld-schema": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/jsonld-schema/-/jsonld-schema-0.7.0-unstable.35.tgz",
"integrity": "sha512-xSFFQo9UG4xazL/NtaNlohBYL8iwQrcIqNNwD9B4sk5s2w5SeK670R5I9KrlYvA9LhxvGR7z9/jOba4zuzv1Ig==",
"dependencies": {
"ajv": "^8.6.1",
"genson-js": "0.0.5",
"jsonld": "^5.2.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/ld-key-pair": {
"version": "0.6.1-unstable.37",
"resolved": "https://registry.npmjs.org/@transmute/ld-key-pair/-/ld-key-pair-0.6.1-unstable.37.tgz",
"integrity": "sha512-DcTpEruAQBfOd2laZkg3uCQ+67Y7dw2hsvo42NAQ5tItCIx5AClP7zccri7T2JUcfDUFaE32z/BLTMEKYt3XZQ=="
},
"node_modules/@transmute/linked-data-proof": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/linked-data-proof/-/linked-data-proof-0.7.0-unstable.35.tgz",
"integrity": "sha512-+yWNAnNZrtIUetqQ1k3Wox16G38sUDU9aZcuNqVHeoktgIW6VmmNBcs3Ea3xwC1cL1VBtKLO7ZZwT+sR2W0/jQ==",
"dependencies": {
"serialize-error": "^7.0.1"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/secp256k1-key-pair": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/secp256k1-key-pair/-/secp256k1-key-pair-0.7.0-unstable.35.tgz",
"integrity": "sha512-0T9i4U40L8xOMv2ECkOXmH3lkeTSYIrwzMrtembllH1KdLCsxdfQaHn/CMXybQOVkmwOaWBkPSIFn8SB2/Oqcw==",
"dependencies": {
"@bitauth/libauth": "^1.18.1",
"@transmute/ld-key-pair": "^0.7.0-unstable.35",
"secp256k1": "^4.0.2"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/secp256k1-key-pair/node_modules/@transmute/ld-key-pair": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/ld-key-pair/-/ld-key-pair-0.7.0-unstable.35.tgz",
"integrity": "sha512-NYYHDUB7/t3eHP6q14o/RRxiVNK9pi2/suH582gg+V+dTQUjLzPOUwMdg5GsOT+HgWctxRhH8inNkLvMalyvpg=="
},
"node_modules/@transmute/security-context": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/security-context/-/security-context-0.7.0-unstable.35.tgz",
"integrity": "sha512-eDlfo0sDS/YO3soz9oTCcbBzSeaFIDiDaJwVY8APlAKGfSjmWRrMzR9e/59mlsH8KmUNDjkwrvZYY4RHCcc0gQ=="
},
"node_modules/@transmute/vc.js": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/vc.js/-/vc.js-0.7.0-unstable.35.tgz",
"integrity": "sha512-G5z7H3/Jf0QGM4n9SJ2eATEVQ2VscC8uAHfwxgHH1Ug1TcKPM01xrtveFMk1hLpx+yhKXAys25S6/rOwbA2YGw==",
"dependencies": {
"@transmute/json-web-signature": "^0.7.0-unstable.35",
"@transmute/jsonld-schema": "^0.7.0-unstable.35",
"@transmute/linked-data-proof": "^0.7.0-unstable.35",
"jsonld": "^5.2.0",
"moment": "^2.29.1"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/web-crypto-key-pair": {
"version": "0.6.1-unstable.37",
"resolved": "https://registry.npmjs.org/@transmute/web-crypto-key-pair/-/web-crypto-key-pair-0.6.1-unstable.37.tgz",
"integrity": "sha512-BVN5ECm3t5ldJiyixsdoXaptr14p2PxOOGWvyBm5eqWlVy/kiWQiVh43wZgEbHtjOkacTfw+BaVAtYkyGn2tpw==",
"dependencies": {
"@peculiar/webcrypto": "^1.1.6",
"@transmute/ld-key-pair": "^0.6.1-unstable.37",
"big-integer": "^1.6.48"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/x25519-key-pair": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/x25519-key-pair/-/x25519-key-pair-0.7.0-unstable.35.tgz",
"integrity": "sha512-+SaW6Skm9EILCmXbEnzZAMhBuPVDla704Kedx1yaPyS6VSGDRf7an9Jr52pTAN1JmVd9Jqm9JOO4bXGcPWZVCA==",
"dependencies": {
"@stablelib/x25519": "^1.0.0",
"@transmute/ld-key-pair": "^0.7.0-unstable.35"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@transmute/x25519-key-pair/node_modules/@transmute/ld-key-pair": {
"version": "0.7.0-unstable.35",
"resolved": "https://registry.npmjs.org/@transmute/ld-key-pair/-/ld-key-pair-0.7.0-unstable.35.tgz",
"integrity": "sha512-NYYHDUB7/t3eHP6q14o/RRxiVNK9pi2/suH582gg+V+dTQUjLzPOUwMdg5GsOT+HgWctxRhH8inNkLvMalyvpg=="
},
"node_modules/@trust/keyto": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@trust/keyto/-/keyto-1.0.1.tgz",
"integrity": "sha512-OXTmKkrnkwktCX86XA7eWs1TQ6u64enm0syzAfNhjigbuGLy5aLhbhRYWtjt4zzdG/irWudluheRZ9Ic9pCwsA==",
"dependencies": {
"asn1.js": "^5.2.0",
"base64url": "^3.0.1",
"elliptic": "^6.5.2"
}
},
"node_modules/@types/asn1js": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@types/asn1js/-/asn1js-2.0.2.tgz",
"integrity": "sha512-t4YHCgtD+ERvH0FyxvNlYwJ2ezhqw7t+Ygh4urQ7dJER8i185JPv6oIM3ey5YQmGN6Zp9EMbpohkjZi9t3UxwA=="
},
"node_modules/@waiting/base64": {
"version": "4.2.9",
"resolved": "https://registry.npmjs.org/@waiting/base64/-/base64-4.2.9.tgz",
"integrity": "sha512-yzt9ih63oePux/sQM8Df6DTv1IeXGByaHrFiJoPszk0LaJwIGJ3IKhKhT/O6YMo2RignlP2cfxoo1lGmKZPIgQ==",
"engines": {
"node": ">=10.4.0"
}
},
"node_modules/a-sync-waterfall": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz",
"integrity": "sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==",
"dev": true
},
"node_modules/abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
"optional": true
},
"node_modules/abort-controller": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
"dependencies": {
"event-target-shim": "^5.0.0"
},
"engines": {
"node": ">=6.5"
}
},
"node_modules/acebase": {
"version": "1.14.0",
"resolved": "https://registry.npmjs.org/acebase/-/acebase-1.14.0.tgz",
"integrity": "sha512-vYyPti2c/f0qJHz198GVJxkfEaKYTNKTF/ECHuRLCSNdRV6OIXsoVRGDb1/69YdukmcR4J5ETkbEI66TFmGyDg==",
"funding": [
{
"type": "GitHub sponsoring",
"url": "https://github.com/sponsors/appy-one"
},
{
"type": "Buy me coffee",
"url": "https://www.buymeacoffee.com/appyone"
},
{
"type": "PayPal",
"url": "https://paypal.me/theappyone"
}
],
"dependencies": {
"acebase-core": "^1.12.0",
"unidecode": "^0.1.8"
}
},
"node_modules/acebase-core": {
"version": "1.12.0",
"resolved": "https://registry.npmjs.org/acebase-core/-/acebase-core-1.12.0.tgz",
"integrity": "sha512-YH1urToEU+6keAzHQ44lwNRK5t2MwL5nil7U8RZ6MDZ3YhtVOOENSP9AchwCTsP9xrcW8EJ/g5dh8eT3tklFmw=="
},
"node_modules/ajv": {
"version": "8.9.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz",
"integrity": "sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/ajv/node_modules/fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
},
"node_modules/ansi-colors": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz",
"integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==",
"dev": true,
"dependencies": {
"ansi-wrap": "^0.1.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ansi-escape-sequences": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-4.1.0.tgz",
"integrity": "sha512-dzW9kHxH011uBsidTXd14JXgzye/YLb2LzeKZ4bsgl/Knwx8AtbSFkkGxagdNOoh0DlqHCmfiEjWKBaqjOanVw==",
"optional": true,
"dependencies": {
"array-back": "^3.0.1"
},
"engines": {
"node": ">=8.0.0"
}
},
"node_modules/ansi-escapes": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
"integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
"optional": true,
"engines": {
"node": ">=4"
}
},
"node_modules/ansi-gray": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz",
"integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=",
"dev": true,
"dependencies": {
"ansi-wrap": "0.1.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/ansi-regex": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
"devOptional": true,
"engines": {
"node": ">=0.10.0"
}
},
"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==",
"optional": true,
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/ansi-wrap": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz",
"integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/anymatch": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
"integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
"dev": true,
"dependencies": {
"micromatch": "^3.1.4",
"normalize-path": "^2.1.1"
}
},
"node_modules/anymatch/node_modules/normalize-path": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
"integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
"dev": true,
"dependencies": {
"remove-trailing-separator": "^1.0.1"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/append-buffer": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz",
"integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=",
"dev": true,
"dependencies": {
"buffer-equal": "^1.0.0"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/aproba": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
"integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",