forked from neocastapp/app-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
6385 lines (6385 loc) · 244 KB
/
Copy pathpackage-lock.json
File metadata and controls
6385 lines (6385 loc) · 244 KB
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": "neocast-app-v1",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "neocast-app-v1",
"version": "0.1.0",
"dependencies": {
"@cityofzion/wallet-connect-sdk-react": "^2.5.4",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@types/node": "20.2.5",
"@types/react": "18.2.9",
"@types/react-dom": "18.2.4",
"@walletconnect/sign-client": "^2.10.0",
"@walletconnect/types": "^2.10.0",
"axios": "^1.4.0",
"better-sqlite3": "^7.6.2",
"dotenv": "^16.3.1",
"eslint": "8.42.0",
"eslint-config-next": "13.4.4",
"mongodb": "^5.8.0",
"next": "13.4.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.63.2",
"typescript": "5.1.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"autoprefixer": "^10.4.15",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
"dev": true,
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@babel/runtime": {
"version": "7.22.10",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz",
"integrity": "sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@cityofzion/neo3-invoker": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@cityofzion/neo3-invoker/-/neo3-invoker-1.4.1.tgz",
"integrity": "sha512-2BNSQRydNuGZi7wam/kdvCoTw8m3wq1zbC6QBkkS9maRO/gliLEgDj0hjBazaP+slqtwR8DMdQsgbonJ9oIYEA=="
},
"node_modules/@cityofzion/neo3-signer": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@cityofzion/neo3-signer/-/neo3-signer-1.1.0.tgz",
"integrity": "sha512-mUJNF5gOuX1aGdbuOwZ+nke03y2GavzYwnti8dr8kzm6lNbn5npLsy4vSHxfgS+gt+TYEeZTtnlf87QkjkEiNQ=="
},
"node_modules/@cityofzion/neon-core": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@cityofzion/neon-core/-/neon-core-5.3.0.tgz",
"integrity": "sha512-iOHY7rFuDZavH87klFIxOYpu3PnPm6pS1xY7qhkFrRtcuTqRBMzhoZstE70XLDh01ujC5y2+gXvgz4OOpzgdXQ==",
"dependencies": {
"abort-controller": "3.0.0",
"bn.js": "5.2.0",
"bs58": "5.0.0",
"buffer": "6.0.3",
"cross-fetch": "^3.1.5",
"crypto-js": "4.1.1",
"elliptic": "6.5.4",
"lodash": "4.17.21",
"loglevel": "1.8.0",
"loglevel-plugin-prefix": "0.8.4",
"scrypt-js": "3.0.1"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core": {
"version": "2.5.4",
"resolved": "https://registry.npmjs.org/@cityofzion/wallet-connect-sdk-core/-/wallet-connect-sdk-core-2.5.4.tgz",
"integrity": "sha512-vPkwpRuPsrJ0sIGvPkbKQmVgqESpGIR2BnNatCZoBZr0k5mTi66ji+CqZi68/mbIh01AIOs0Mdg9MnXCHkmhBA==",
"dependencies": {
"@cityofzion/neo3-invoker": "1.4.1",
"@cityofzion/neo3-signer": "1.1.0",
"@cityofzion/neon-core": "5.3.0",
"@walletconnect/sign-client": "2.0.0-rc.3",
"@walletconnect/types": "2.0.0-rc.3"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/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/@cityofzion/wallet-connect-sdk-core/node_modules/@stablelib/x25519": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@stablelib/x25519/-/x25519-1.0.2.tgz",
"integrity": "sha512-wTR0t0Bp1HABLFRbYaE3vFLuco2QbAg6QvxBnzi5j9qjhYezWHW7OiCZyaWbt25UkSaoolUUT4Il0nS/2vcbSw==",
"dependencies": {
"@stablelib/keyagreement": "^1.0.1",
"@stablelib/random": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/core": {
"version": "2.0.0-rc.3",
"resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.0.0-rc.3.tgz",
"integrity": "sha512-ErnwoAZVnu8658GT9Aw3WjaOctFu1TQYyhOSL6LRF4pa+K4wvHOikiBLxPG7HsrkqyZ8ItdROmkw2ycSipmMow==",
"dependencies": {
"@walletconnect/heartbeat": "1.0.0",
"@walletconnect/jsonrpc-provider": "1.0.5",
"@walletconnect/jsonrpc-utils": "1.0.3",
"@walletconnect/jsonrpc-ws-connection": "1.0.3",
"@walletconnect/keyvaluestorage": "1.0.0",
"@walletconnect/logger": "1.0.1",
"@walletconnect/relay-api": "1.0.6",
"@walletconnect/relay-auth": "1.0.3",
"@walletconnect/safe-json": "1.0.0",
"@walletconnect/time": "1.0.1",
"@walletconnect/types": "2.0.0-rc.3",
"@walletconnect/utils": "2.0.0-rc.3",
"lodash.isequal": "4.5.0",
"pino": "6.7.0",
"pino-pretty": "4.3.0",
"uint8arrays": "3.1.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/events": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/events/-/events-1.0.0.tgz",
"integrity": "sha512-LLf8krnHo+PsObwMZbGhVaG24SvGTJM0MEtPNhrlQmp27CRV+LwYpHLh7fhABcnUon4aeo7dojCJMmx5jBNWuQ==",
"dependencies": {
"keyvaluestorage-interface": "^1.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/heartbeat": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/heartbeat/-/heartbeat-1.0.0.tgz",
"integrity": "sha512-WMWbUNHVkVd7FS38P0DMDlvR38P/kSZcda94t54h8XtC1CfI2M/Cn9TGS6mC6MNuDkZZm+cOdkekibQc+9sNdQ==",
"dependencies": {
"@walletconnect/events": "^1.0.0",
"@walletconnect/time": "^1.0.1"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/jsonrpc-provider": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.5.tgz",
"integrity": "sha512-v61u4ZIV8+p9uIHS2Kl2YRj/2idrQiHcrbrJXw3McQkEJtj9mkCofr1Hu/n419wSRM5uiNK8Z4WRS9zGTTAhWQ==",
"dependencies": {
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/safe-json": "^1.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/jsonrpc-types": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.1.tgz",
"integrity": "sha512-+6coTtOuChCqM+AoYyi4Q83p9l/laI6NvuM2/AHaZFuf0gT0NjW7IX2+86qGyizn7Ptq4AYZmfxurAxTnhefuw==",
"dependencies": {
"keyvaluestorage-interface": "^1.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/jsonrpc-utils": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.3.tgz",
"integrity": "sha512-3yb49bPk16MNLk6uIIHPSHQCpD6UAo1OMOx1rM8cW/MPEAYAzrSW5hkhG7NEUwX9SokRIgnZK3QuQkiyNzBMhQ==",
"dependencies": {
"@walletconnect/environment": "^1.0.0",
"@walletconnect/jsonrpc-types": "^1.0.1"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/jsonrpc-ws-connection": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.3.tgz",
"integrity": "sha512-+tKT3y8HvSdwXZkvF3+6FwnT9MYVdR7rxr1/x/hCPCB4DCLl4ZfDm8rP4doXbDaMJHaMrGn2JNT3RPABlOXSnw==",
"dependencies": {
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/safe-json": "^1.0.0",
"ws": "^7.5.1"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/keyvaluestorage": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.0.0.tgz",
"integrity": "sha512-dlIrX/pCjuXMUprkLdy0hw0Ibr3To9nCdG19mPqd/lRdRWsPItBL+79LClVplMxb0cuF3qlTuGTNx/hmUKYmWA==",
"dependencies": {
"localStorage": "^1.0.4",
"safe-json-utils": "^1.1.1"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "1.x",
"better-sqlite3": "7.x"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
},
"better-sqlite3": {
"optional": true
}
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/logger": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/logger/-/logger-1.0.1.tgz",
"integrity": "sha512-veJCZTA2uhJP8qS5J8FGYXSduShFZflNFIYesm80fW6zKIQ+Hvg0GR0r4LeXk5cnve5qT7QO+FUnO29v/aYtPQ==",
"dependencies": {
"pino": "^6.7.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/relay-api": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.6.tgz",
"integrity": "sha512-KW7juHNomtzZWGZy+7MuzppXlUenBOz4AvLKNwXf5c9x8T0LhpodM/NnrsJsxB+Gu3dJl5Zv5R86CcCQIqxlKg==",
"dependencies": {
"@walletconnect/jsonrpc-types": "^1.0.1"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/relay-auth": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@walletconnect/relay-auth/-/relay-auth-1.0.3.tgz",
"integrity": "sha512-73BHB4oTftTGveNIFO0g73KjAl9dSPKUZ/3hgEo4FRs7SzXORUQKjeDsZnOWFYWaDeiozH2ckaJv5GJtORI79Q==",
"dependencies": {
"@stablelib/ed25519": "^1.0.2",
"@stablelib/random": "^1.0.1",
"@walletconnect/safe-json": "^1.0.0",
"@walletconnect/time": "^1.0.1",
"uint8arrays": "^3.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/safe-json": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.0.tgz",
"integrity": "sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg=="
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/sign-client": {
"version": "2.0.0-rc.3",
"resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.0.0-rc.3.tgz",
"integrity": "sha512-M/+tmccQvNIM86CJ3RsQBZVaECSq8jH1CEj1iUDmhxuG0eEg3Zesf5yJMg41aFFNVi2vSdBCeP0zcqWCDChf/g==",
"dependencies": {
"@walletconnect/core": "2.0.0-rc.3",
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
"@walletconnect/jsonrpc-provider": "1.0.5",
"@walletconnect/jsonrpc-utils": "1.0.3",
"@walletconnect/logger": "1.0.1",
"@walletconnect/time": "1.0.1",
"@walletconnect/types": "2.0.0-rc.3",
"@walletconnect/utils": "2.0.0-rc.3",
"pino": "6.7.0",
"pino-pretty": "4.3.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/time": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/time/-/time-1.0.1.tgz",
"integrity": "sha512-LtNtHupTNranehLMh8Z/JN6xVySysSoJNjNCQ0ML+hOUkim5QX/VdvfovSpaX9qA2b95u7bIuTcq0O3UBk7Iyw=="
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/types": {
"version": "2.0.0-rc.3",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.3.tgz",
"integrity": "sha512-PkzgdBr4tSXQtyGT91P6cdQJ44dCwRRwIW4BDW6tRqsvziPcyt6aQzWYfKQiMl6i2fIMK/8fgr1oDYPcLQLvbA==",
"dependencies": {
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
"@walletconnect/jsonrpc-types": "1.0.1",
"@walletconnect/keyvaluestorage": "1.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/utils": {
"version": "2.0.0-rc.3",
"resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.0.0-rc.3.tgz",
"integrity": "sha512-ThMv+uLZiU9iSEN28cLZy98/LyQmHQ6eq29P9qsET9ZginF5QplmvTRKQvLSeLrU4K4rcRaXs/FndhxxiRhPcQ==",
"dependencies": {
"@stablelib/chacha20poly1305": "1.0.1",
"@stablelib/hkdf": "1.0.1",
"@stablelib/random": "1.0.1",
"@stablelib/sha256": "1.0.1",
"@stablelib/x25519": "1.0.2",
"@walletconnect/jsonrpc-utils": "1.0.3",
"@walletconnect/relay-api": "1.0.6",
"@walletconnect/safe-json": "1.0.0",
"@walletconnect/time": "1.0.1",
"@walletconnect/types": "2.0.0-rc.3",
"@walletconnect/window-getters": "1.0.0",
"@walletconnect/window-metadata": "1.0.0",
"detect-browser": "5.3.0",
"query-string": "7.1.1",
"uint8arrays": "3.1.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/window-getters": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.0.tgz",
"integrity": "sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA=="
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/@walletconnect/window-metadata": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/window-metadata/-/window-metadata-1.0.0.tgz",
"integrity": "sha512-9eFvmJxIKCC3YWOL97SgRkKhlyGXkrHwamfechmqszbypFspaSk+t2jQXAEU7YClHF6Qjw5eYOmy1//zFi9/GA==",
"dependencies": {
"@walletconnect/window-getters": "^1.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/pino": {
"version": "6.7.0",
"resolved": "https://registry.npmjs.org/pino/-/pino-6.7.0.tgz",
"integrity": "sha512-vPXJ4P9rWCwzlTJt+f0Ni4THc3DWyt8iDDCO4edQ8narTu6hnpzdXu8FqeSJCGndl1W6lfbYQUQihUO54y66Lw==",
"dependencies": {
"fast-redact": "^3.0.0",
"fast-safe-stringify": "^2.0.7",
"flatstr": "^1.0.12",
"pino-std-serializers": "^2.4.2",
"quick-format-unescaped": "^4.0.1",
"sonic-boom": "^1.0.2"
},
"bin": {
"pino": "bin.js"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/pino-std-serializers": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.5.0.tgz",
"integrity": "sha512-wXqbqSrIhE58TdrxxlfLwU9eDhrzppQDvGhBEr1gYbzzM4KKo3Y63gSjiDXRKLVS2UOXdPNR2v+KnQgNrs+xUg=="
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/query-string": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz",
"integrity": "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==",
"dependencies": {
"decode-uri-component": "^0.2.0",
"filter-obj": "^1.1.0",
"split-on-first": "^1.0.0",
"strict-uri-encode": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/sonic-boom": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-1.4.1.tgz",
"integrity": "sha512-LRHh/A8tpW7ru89lrlkU4AszXt1dbwSjVWguGrmlxE7tawVmDBlI1PILMkXAxJTwqhgsEeTHzj36D5CmHgQmNg==",
"dependencies": {
"atomic-sleep": "^1.0.0",
"flatstr": "^1.0.12"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-core/node_modules/uint8arrays": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.0.tgz",
"integrity": "sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==",
"dependencies": {
"multiformats": "^9.4.2"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react": {
"version": "2.5.4",
"resolved": "https://registry.npmjs.org/@cityofzion/wallet-connect-sdk-react/-/wallet-connect-sdk-react-2.5.4.tgz",
"integrity": "sha512-utBAzA8Rr5vhd2QqmvmH/67B73oVcJjxtrzgRB4swLL7Ztopxu1WrWl+sY8Kj80OcAJ2vuMf97ZxJIEsbVNnmA==",
"dependencies": {
"@cityofzion/neo3-invoker": "1.4.1",
"@cityofzion/neo3-signer": "1.1.0",
"@cityofzion/wallet-connect-sdk-core": "2.5.4",
"@walletconnect/sign-client": "2.0.0-rc.3",
"@walletconnect/types": "2.0.0-rc.3"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": "*"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/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/@cityofzion/wallet-connect-sdk-react/node_modules/@stablelib/x25519": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@stablelib/x25519/-/x25519-1.0.2.tgz",
"integrity": "sha512-wTR0t0Bp1HABLFRbYaE3vFLuco2QbAg6QvxBnzi5j9qjhYezWHW7OiCZyaWbt25UkSaoolUUT4Il0nS/2vcbSw==",
"dependencies": {
"@stablelib/keyagreement": "^1.0.1",
"@stablelib/random": "^1.0.1",
"@stablelib/wipe": "^1.0.1"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/core": {
"version": "2.0.0-rc.3",
"resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.0.0-rc.3.tgz",
"integrity": "sha512-ErnwoAZVnu8658GT9Aw3WjaOctFu1TQYyhOSL6LRF4pa+K4wvHOikiBLxPG7HsrkqyZ8ItdROmkw2ycSipmMow==",
"dependencies": {
"@walletconnect/heartbeat": "1.0.0",
"@walletconnect/jsonrpc-provider": "1.0.5",
"@walletconnect/jsonrpc-utils": "1.0.3",
"@walletconnect/jsonrpc-ws-connection": "1.0.3",
"@walletconnect/keyvaluestorage": "1.0.0",
"@walletconnect/logger": "1.0.1",
"@walletconnect/relay-api": "1.0.6",
"@walletconnect/relay-auth": "1.0.3",
"@walletconnect/safe-json": "1.0.0",
"@walletconnect/time": "1.0.1",
"@walletconnect/types": "2.0.0-rc.3",
"@walletconnect/utils": "2.0.0-rc.3",
"lodash.isequal": "4.5.0",
"pino": "6.7.0",
"pino-pretty": "4.3.0",
"uint8arrays": "3.1.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/events": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/events/-/events-1.0.0.tgz",
"integrity": "sha512-LLf8krnHo+PsObwMZbGhVaG24SvGTJM0MEtPNhrlQmp27CRV+LwYpHLh7fhABcnUon4aeo7dojCJMmx5jBNWuQ==",
"dependencies": {
"keyvaluestorage-interface": "^1.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/heartbeat": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/heartbeat/-/heartbeat-1.0.0.tgz",
"integrity": "sha512-WMWbUNHVkVd7FS38P0DMDlvR38P/kSZcda94t54h8XtC1CfI2M/Cn9TGS6mC6MNuDkZZm+cOdkekibQc+9sNdQ==",
"dependencies": {
"@walletconnect/events": "^1.0.0",
"@walletconnect/time": "^1.0.1"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/jsonrpc-provider": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.5.tgz",
"integrity": "sha512-v61u4ZIV8+p9uIHS2Kl2YRj/2idrQiHcrbrJXw3McQkEJtj9mkCofr1Hu/n419wSRM5uiNK8Z4WRS9zGTTAhWQ==",
"dependencies": {
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/safe-json": "^1.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/jsonrpc-types": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.1.tgz",
"integrity": "sha512-+6coTtOuChCqM+AoYyi4Q83p9l/laI6NvuM2/AHaZFuf0gT0NjW7IX2+86qGyizn7Ptq4AYZmfxurAxTnhefuw==",
"dependencies": {
"keyvaluestorage-interface": "^1.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/jsonrpc-utils": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.3.tgz",
"integrity": "sha512-3yb49bPk16MNLk6uIIHPSHQCpD6UAo1OMOx1rM8cW/MPEAYAzrSW5hkhG7NEUwX9SokRIgnZK3QuQkiyNzBMhQ==",
"dependencies": {
"@walletconnect/environment": "^1.0.0",
"@walletconnect/jsonrpc-types": "^1.0.1"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/jsonrpc-ws-connection": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-ws-connection/-/jsonrpc-ws-connection-1.0.3.tgz",
"integrity": "sha512-+tKT3y8HvSdwXZkvF3+6FwnT9MYVdR7rxr1/x/hCPCB4DCLl4ZfDm8rP4doXbDaMJHaMrGn2JNT3RPABlOXSnw==",
"dependencies": {
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/safe-json": "^1.0.0",
"ws": "^7.5.1"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/keyvaluestorage": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/keyvaluestorage/-/keyvaluestorage-1.0.0.tgz",
"integrity": "sha512-dlIrX/pCjuXMUprkLdy0hw0Ibr3To9nCdG19mPqd/lRdRWsPItBL+79LClVplMxb0cuF3qlTuGTNx/hmUKYmWA==",
"dependencies": {
"localStorage": "^1.0.4",
"safe-json-utils": "^1.1.1"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "1.x",
"better-sqlite3": "7.x"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
},
"better-sqlite3": {
"optional": true
}
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/logger": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/logger/-/logger-1.0.1.tgz",
"integrity": "sha512-veJCZTA2uhJP8qS5J8FGYXSduShFZflNFIYesm80fW6zKIQ+Hvg0GR0r4LeXk5cnve5qT7QO+FUnO29v/aYtPQ==",
"dependencies": {
"pino": "^6.7.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/relay-api": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.6.tgz",
"integrity": "sha512-KW7juHNomtzZWGZy+7MuzppXlUenBOz4AvLKNwXf5c9x8T0LhpodM/NnrsJsxB+Gu3dJl5Zv5R86CcCQIqxlKg==",
"dependencies": {
"@walletconnect/jsonrpc-types": "^1.0.1"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/relay-auth": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@walletconnect/relay-auth/-/relay-auth-1.0.3.tgz",
"integrity": "sha512-73BHB4oTftTGveNIFO0g73KjAl9dSPKUZ/3hgEo4FRs7SzXORUQKjeDsZnOWFYWaDeiozH2ckaJv5GJtORI79Q==",
"dependencies": {
"@stablelib/ed25519": "^1.0.2",
"@stablelib/random": "^1.0.1",
"@walletconnect/safe-json": "^1.0.0",
"@walletconnect/time": "^1.0.1",
"uint8arrays": "^3.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/safe-json": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.0.tgz",
"integrity": "sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg=="
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/sign-client": {
"version": "2.0.0-rc.3",
"resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.0.0-rc.3.tgz",
"integrity": "sha512-M/+tmccQvNIM86CJ3RsQBZVaECSq8jH1CEj1iUDmhxuG0eEg3Zesf5yJMg41aFFNVi2vSdBCeP0zcqWCDChf/g==",
"dependencies": {
"@walletconnect/core": "2.0.0-rc.3",
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
"@walletconnect/jsonrpc-provider": "1.0.5",
"@walletconnect/jsonrpc-utils": "1.0.3",
"@walletconnect/logger": "1.0.1",
"@walletconnect/time": "1.0.1",
"@walletconnect/types": "2.0.0-rc.3",
"@walletconnect/utils": "2.0.0-rc.3",
"pino": "6.7.0",
"pino-pretty": "4.3.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/time": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@walletconnect/time/-/time-1.0.1.tgz",
"integrity": "sha512-LtNtHupTNranehLMh8Z/JN6xVySysSoJNjNCQ0ML+hOUkim5QX/VdvfovSpaX9qA2b95u7bIuTcq0O3UBk7Iyw=="
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/types": {
"version": "2.0.0-rc.3",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.3.tgz",
"integrity": "sha512-PkzgdBr4tSXQtyGT91P6cdQJ44dCwRRwIW4BDW6tRqsvziPcyt6aQzWYfKQiMl6i2fIMK/8fgr1oDYPcLQLvbA==",
"dependencies": {
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
"@walletconnect/jsonrpc-types": "1.0.1",
"@walletconnect/keyvaluestorage": "1.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/utils": {
"version": "2.0.0-rc.3",
"resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.0.0-rc.3.tgz",
"integrity": "sha512-ThMv+uLZiU9iSEN28cLZy98/LyQmHQ6eq29P9qsET9ZginF5QplmvTRKQvLSeLrU4K4rcRaXs/FndhxxiRhPcQ==",
"dependencies": {
"@stablelib/chacha20poly1305": "1.0.1",
"@stablelib/hkdf": "1.0.1",
"@stablelib/random": "1.0.1",
"@stablelib/sha256": "1.0.1",
"@stablelib/x25519": "1.0.2",
"@walletconnect/jsonrpc-utils": "1.0.3",
"@walletconnect/relay-api": "1.0.6",
"@walletconnect/safe-json": "1.0.0",
"@walletconnect/time": "1.0.1",
"@walletconnect/types": "2.0.0-rc.3",
"@walletconnect/window-getters": "1.0.0",
"@walletconnect/window-metadata": "1.0.0",
"detect-browser": "5.3.0",
"query-string": "7.1.1",
"uint8arrays": "3.1.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/window-getters": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.0.tgz",
"integrity": "sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA=="
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/@walletconnect/window-metadata": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/window-metadata/-/window-metadata-1.0.0.tgz",
"integrity": "sha512-9eFvmJxIKCC3YWOL97SgRkKhlyGXkrHwamfechmqszbypFspaSk+t2jQXAEU7YClHF6Qjw5eYOmy1//zFi9/GA==",
"dependencies": {
"@walletconnect/window-getters": "^1.0.0"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/pino": {
"version": "6.7.0",
"resolved": "https://registry.npmjs.org/pino/-/pino-6.7.0.tgz",
"integrity": "sha512-vPXJ4P9rWCwzlTJt+f0Ni4THc3DWyt8iDDCO4edQ8narTu6hnpzdXu8FqeSJCGndl1W6lfbYQUQihUO54y66Lw==",
"dependencies": {
"fast-redact": "^3.0.0",
"fast-safe-stringify": "^2.0.7",
"flatstr": "^1.0.12",
"pino-std-serializers": "^2.4.2",
"quick-format-unescaped": "^4.0.1",
"sonic-boom": "^1.0.2"
},
"bin": {
"pino": "bin.js"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/pino-std-serializers": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.5.0.tgz",
"integrity": "sha512-wXqbqSrIhE58TdrxxlfLwU9eDhrzppQDvGhBEr1gYbzzM4KKo3Y63gSjiDXRKLVS2UOXdPNR2v+KnQgNrs+xUg=="
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/query-string": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz",
"integrity": "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==",
"dependencies": {
"decode-uri-component": "^0.2.0",
"filter-obj": "^1.1.0",
"split-on-first": "^1.0.0",
"strict-uri-encode": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/sonic-boom": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-1.4.1.tgz",
"integrity": "sha512-LRHh/A8tpW7ru89lrlkU4AszXt1dbwSjVWguGrmlxE7tawVmDBlI1PILMkXAxJTwqhgsEeTHzj36D5CmHgQmNg==",
"dependencies": {
"atomic-sleep": "^1.0.0",
"flatstr": "^1.0.12"
}
},
"node_modules/@cityofzion/wallet-connect-sdk-react/node_modules/uint8arrays": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.0.tgz",
"integrity": "sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==",
"dependencies": {
"multiformats": "^9.4.2"
}
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz",
"integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz",
"integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "8.42.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.42.0.tgz",
"integrity": "sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@hapi/bourne": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-2.1.0.tgz",
"integrity": "sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q=="
},
"node_modules/@headlessui/react": {
"version": "1.7.17",
"resolved": "https://registry.npmjs.org/@headlessui/react/-/react-1.7.17.tgz",
"integrity": "sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==",
"dependencies": {
"client-only": "^0.0.1"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
}
},
"node_modules/@heroicons/react": {
"version": "2.0.18",
"resolved": "https://registry.npmjs.org/@heroicons/react/-/react-2.0.18.tgz",
"integrity": "sha512-7TyMjRrZZMBPa+/5Y8lN0iyvUU/01PeMGX2+RE7cQWpEUIcb4QotzUObFkJDejj/HUH4qjP/eQ0gzzKs2f+6Yw==",
"peerDependencies": {
"react": ">= 16"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.10",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz",
"integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==",
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
"integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
"dev": true,
"dependencies": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
"integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
"dev": true,
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/set-array": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
"integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
"dev": true,
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.15",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
"dev": true
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.19",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz",
"integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==",
"dev": true,
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
"node_modules/@mongodb-js/saslprep": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.0.tgz",
"integrity": "sha512-Xfijy7HvfzzqiOAhAepF4SGN5e9leLkMvg/OPOF97XemjfVCYN/oWa75wnkc6mltMSTwY+XlbhWgUOJmkFspSw==",
"optional": true,
"dependencies": {
"sparse-bitfield": "^3.0.3"
}
},
"node_modules/@next/env": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.4.tgz",
"integrity": "sha512-q/y7VZj/9YpgzDe64Zi6rY1xPizx80JjlU2BTevlajtaE3w1LqweH1gGgxou2N7hdFosXHjGrI4OUvtFXXhGLg=="
},
"node_modules/@next/eslint-plugin-next": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.4.tgz",
"integrity": "sha512-5jnh7q6I15efnjR/rR+/TGTc9hn53g3JTbEjAMjmeQiExKqEUgIXqrHI5zlTNlNyzCPkBB860/ctxXheZaF2Vw==",
"dependencies": {
"glob": "7.1.7"
}
},
"node_modules/@next/swc-darwin-arm64": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.4.tgz",
"integrity": "sha512-xfjgXvp4KalNUKZMHmsFxr1Ug+aGmmO6NWP0uoh4G3WFqP/mJ1xxfww0gMOeMeSq/Jyr5k7DvoZ2Pv+XOITTtw==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-darwin-x64": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.4.tgz",
"integrity": "sha512-ZY9Ti1hkIwJsxGus3nlubIkvYyB0gNOYxKrfsOrLEqD0I2iCX8D7w8v6QQZ2H+dDl6UT29oeEUdDUNGk4UEpfg==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-gnu": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.4.tgz",
"integrity": "sha512-+KZnDeMShYkpkqAvGCEDeqYTRADJXc6SY1jWXz+Uo6qWQO/Jd9CoyhTJwRSxvQA16MoYzvILkGaDqirkRNctyA==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-musl": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.4.tgz",
"integrity": "sha512-evC1twrny2XDT4uOftoubZvW3EG0zs0ZxMwEtu/dDGVRO5n5pT48S8qqEIBGBUZYu/Xx4zzpOkIxx1vpWdE+9A==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-gnu": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.4.tgz",
"integrity": "sha512-PX706XcCHr2FfkyhP2lpf+pX/tUvq6/ke7JYnnr0ykNdEMo+sb7cC/o91gnURh4sPYSiZJhsF2gbIqg9rciOHQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-musl": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.4.tgz",
"integrity": "sha512-TKUUx3Ftd95JlHV6XagEnqpT204Y+IsEa3awaYIjayn0MOGjgKZMZibqarK3B1FsMSPaieJf2FEAcu9z0yT5aA==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.4.tgz",
"integrity": "sha512-FP8AadgSq4+HPtim7WBkCMGbhr5vh9FePXiWx9+YOdjwdQocwoCK5ZVC3OW8oh3TWth6iJ0AXJ/yQ1q1cwSZ3A==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-ia32-msvc": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.4.tgz",
"integrity": "sha512-3WekVmtuA2MCdcAOrgrI+PuFiFURtSyyrN1I3UPtS0ckR2HtLqyqmS334Eulf15g1/bdwMteePdK363X/Y9JMg==",
"cpu": [
"ia32"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-x64-msvc": {
"version": "13.4.4",
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.4.tgz",
"integrity": "sha512-AHRITu/CrlQ+qzoqQtEMfaTu7GHaQ6bziQln/pVWpOYC1wU+Mq6VQQFlsDtMCnDztPZtppAXdvvbNS7pcfRzlw==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"