-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
8620 lines (7478 loc) · 345 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
"@adraffy/ens-normalize@1.9.0":
"integrity" "sha512-iowxq3U30sghZotgl4s/oJRci6WPBfNO5YYgk2cIOMCHr3LeGPcsZjCEr+33Q4N+oV3OABDAtA+pyvWjbvBifQ=="
"resolved" "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.9.0.tgz"
"version" "1.9.0"
"@alloc/quick-lru@^5.2.0":
"integrity" "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="
"resolved" "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz"
"version" "5.2.0"
"@ampproject/remapping@^2.2.0":
"integrity" "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz"
"version" "2.2.1"
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@antfu/utils@^0.7.5":
"integrity" "sha512-dlR6LdS+0SzOAPx/TPRhnoi7hE251OVeT2Snw0RguNbBSbjUHdWr0l3vcUUDg26rEysT89kCbtw1lVorBXLLCg=="
"resolved" "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.5.tgz"
"version" "0.7.5"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.5":
"integrity" "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/highlight" "^7.22.5"
"@babel/compat-data@^7.22.9":
"integrity" "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz"
"version" "7.22.9"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.20.7", "@babel/core@^7.21.3":
"integrity" "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.22.9.tgz"
"version" "7.22.9"
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.22.5"
"@babel/generator" "^7.22.9"
"@babel/helper-compilation-targets" "^7.22.9"
"@babel/helper-module-transforms" "^7.22.9"
"@babel/helpers" "^7.22.6"
"@babel/parser" "^7.22.7"
"@babel/template" "^7.22.5"
"@babel/traverse" "^7.22.8"
"@babel/types" "^7.22.5"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.2"
"semver" "^6.3.1"
"@babel/generator@^7.22.7", "@babel/generator@^7.22.9":
"integrity" "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.22.9.tgz"
"version" "7.22.9"
dependencies:
"@babel/types" "^7.22.5"
"@jridgewell/gen-mapping" "^0.3.2"
"@jridgewell/trace-mapping" "^0.3.17"
"jsesc" "^2.5.1"
"@babel/helper-annotate-as-pure@^7.22.5":
"integrity" "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="
"resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-compilation-targets@^7.22.9":
"integrity" "sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.9.tgz"
"version" "7.22.9"
dependencies:
"@babel/compat-data" "^7.22.9"
"@babel/helper-validator-option" "^7.22.5"
"browserslist" "^4.21.9"
"lru-cache" "^5.1.1"
"semver" "^6.3.1"
"@babel/helper-create-class-features-plugin@^7.22.9":
"integrity" "sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.9.tgz"
"version" "7.22.9"
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-function-name" "^7.22.5"
"@babel/helper-member-expression-to-functions" "^7.22.5"
"@babel/helper-optimise-call-expression" "^7.22.5"
"@babel/helper-replace-supers" "^7.22.9"
"@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"semver" "^6.3.1"
"@babel/helper-environment-visitor@^7.22.5":
"integrity" "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-function-name@^7.22.5":
"integrity" "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/template" "^7.22.5"
"@babel/types" "^7.22.5"
"@babel/helper-hoist-variables@^7.22.5":
"integrity" "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-member-expression-to-functions@^7.22.5":
"integrity" "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-module-imports@^7.22.5":
"integrity" "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-module-transforms@^7.22.9":
"integrity" "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz"
"version" "7.22.9"
dependencies:
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-module-imports" "^7.22.5"
"@babel/helper-simple-access" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/helper-validator-identifier" "^7.22.5"
"@babel/helper-optimise-call-expression@^7.22.5":
"integrity" "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw=="
"resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.22.5":
"integrity" "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-replace-supers@^7.22.9":
"integrity" "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz"
"version" "7.22.9"
dependencies:
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-member-expression-to-functions" "^7.22.5"
"@babel/helper-optimise-call-expression" "^7.22.5"
"@babel/helper-simple-access@^7.22.5":
"integrity" "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
"integrity" "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-split-export-declaration@^7.22.6":
"integrity" "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz"
"version" "7.22.6"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-string-parser@^7.22.5":
"integrity" "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-validator-identifier@^7.22.5":
"integrity" "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-validator-option@^7.22.5":
"integrity" "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz"
"version" "7.22.5"
"@babel/helpers@^7.22.6":
"integrity" "sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.6.tgz"
"version" "7.22.6"
dependencies:
"@babel/template" "^7.22.5"
"@babel/traverse" "^7.22.6"
"@babel/types" "^7.22.5"
"@babel/highlight@^7.22.5":
"integrity" "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-validator-identifier" "^7.22.5"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.20.15", "@babel/parser@^7.21.3", "@babel/parser@^7.22.4", "@babel/parser@^7.22.5", "@babel/parser@^7.22.7":
"integrity" "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.22.7.tgz"
"version" "7.22.7"
"@babel/plugin-syntax-import-meta@^7.10.4":
"integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-jsx@^7.22.5":
"integrity" "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-typescript@^7.22.5":
"integrity" "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-typescript@^7.20.7", "@babel/plugin-transform-typescript@^7.21.3":
"integrity" "sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.9.tgz"
"version" "7.22.9"
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
"@babel/helper-create-class-features-plugin" "^7.22.9"
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-typescript" "^7.22.5"
"@babel/standalone@^7.21.3":
"integrity" "sha512-RRUFpN2WiHaczMqIhmy7VoruvSw+c3NSq6BczondQ6elJXtKzr9cAWWsWWZvtZ/rYFQpoQlch5VxQe4aWTt8LA=="
"resolved" "https://registry.npmjs.org/@babel/standalone/-/standalone-7.22.9.tgz"
"version" "7.22.9"
"@babel/template@^7.22.5":
"integrity" "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/code-frame" "^7.22.5"
"@babel/parser" "^7.22.5"
"@babel/types" "^7.22.5"
"@babel/traverse@^7.22.5", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8":
"integrity" "sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.8.tgz"
"version" "7.22.8"
dependencies:
"@babel/code-frame" "^7.22.5"
"@babel/generator" "^7.22.7"
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-function-name" "^7.22.5"
"@babel/helper-hoist-variables" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/parser" "^7.22.7"
"@babel/types" "^7.22.5"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.21.3", "@babel/types@^7.21.5", "@babel/types@^7.22.4", "@babel/types@^7.22.5":
"integrity" "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-string-parser" "^7.22.5"
"@babel/helper-validator-identifier" "^7.22.5"
"to-fast-properties" "^2.0.0"
"@cloudflare/kv-asset-handler@^0.3.0":
"integrity" "sha512-9CB/MKf/wdvbfkUdfrj+OkEwZ5b7rws0eogJ4293h+7b6KX5toPwym+VQKmILafNB9YiehqY0DlNrDcDhdWHSQ=="
"resolved" "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.0.tgz"
"version" "0.3.0"
dependencies:
"mime" "^3.0.0"
"@csstools/cascade-layer-name-parser@^1.0.3":
"integrity" "sha512-ks9ysPP8012j90EQCCFtDsQIXOTCOpTQFIyyoRku06y8CXtUQ+8bXI8KVm9Q9ovwDUVthWuWKZWJD3u1rwnEfw=="
"resolved" "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.3.tgz"
"version" "1.0.3"
"@csstools/css-parser-algorithms@^2.3.0":
"integrity" "sha512-dTKSIHHWc0zPvcS5cqGP+/TPFUJB0ekJ9dGKvMAFoNuBFhDPBt9OMGNZiIA5vTiNdGHHBeScYPXIGBMnVOahsA=="
"resolved" "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.0.tgz"
"version" "2.3.0"
"@csstools/css-tokenizer@^2.1.1":
"integrity" "sha512-GbrTj2Z8MCTUv+52GE0RbFGM527xuXZ0Xa5g0Z+YN573uveS4G0qi6WNOMyz3yrFM/jaILTTwJ0+umx81EzqfA=="
"resolved" "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.1.1.tgz"
"version" "2.1.1"
"@csstools/selector-specificity@^2.0.0":
"integrity" "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw=="
"resolved" "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz"
"version" "2.2.0"
"@esbuild-kit/cjs-loader@^2.4.2":
"integrity" "sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg=="
"resolved" "https://registry.npmjs.org/@esbuild-kit/cjs-loader/-/cjs-loader-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"@esbuild-kit/core-utils" "^3.0.0"
"get-tsconfig" "^4.4.0"
"@esbuild-kit/core-utils@^3.0.0":
"integrity" "sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw=="
"resolved" "https://registry.npmjs.org/@esbuild-kit/core-utils/-/core-utils-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"esbuild" "~0.17.6"
"source-map-support" "^0.5.21"
"@esbuild-kit/esm-loader@^2.5.5":
"integrity" "sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw=="
"resolved" "https://registry.npmjs.org/@esbuild-kit/esm-loader/-/esm-loader-2.5.5.tgz"
"version" "2.5.5"
dependencies:
"@esbuild-kit/core-utils" "^3.0.0"
"get-tsconfig" "^4.4.0"
"@esbuild/darwin-arm64@0.17.19":
"integrity" "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg=="
"resolved" "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz"
"version" "0.17.19"
"@esbuild/darwin-arm64@0.18.15":
"integrity" "sha512-XmrFwEOYauKte9QjS6hz60FpOCnw4zaPAb7XV7O4lx1r39XjJhTN7ZpXqJh4sN6q60zbP6QwAVVA8N/wUyBH/w=="
"resolved" "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.15.tgz"
"version" "0.18.15"
"@faker-js/faker@^8.0.2":
"integrity" "sha512-Uo3pGspElQW91PCvKSIAXoEgAUlRnH29sX2/p89kg7sP1m2PzCufHINd0FhTXQf6DYGiUlVncdSPa2F9wxed2A=="
"resolved" "https://registry.npmjs.org/@faker-js/faker/-/faker-8.0.2.tgz"
"version" "8.0.2"
"@hapi/hoek@^9.0.0":
"integrity" "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ=="
"resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz"
"version" "9.3.0"
"@hapi/topo@^5.0.0":
"integrity" "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="
"resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@hapi/hoek" "^9.0.0"
"@ioredis/commands@^1.1.1":
"integrity" "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg=="
"resolved" "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz"
"version" "1.2.0"
"@isaacs/cliui@^8.0.2":
"integrity" "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA=="
"resolved" "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz"
"version" "8.0.2"
dependencies:
"string-width" "^5.1.2"
"string-width-cjs" "npm:string-width@^4.2.0"
"strip-ansi" "^7.0.1"
"strip-ansi-cjs" "npm:strip-ansi@^6.0.1"
"wrap-ansi" "^8.1.0"
"wrap-ansi-cjs" "npm:wrap-ansi@^7.0.0"
"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
"integrity" "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"
"version" "0.3.3"
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@3.1.0":
"integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
"version" "3.1.0"
"@jridgewell/set-array@^1.0.1":
"integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
"@jridgewell/source-map@^0.3.3":
"integrity" "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz"
"version" "0.3.5"
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.15":
"integrity" "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
"version" "1.4.15"
"@jridgewell/sourcemap-codec@1.4.14":
"integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
"version" "1.4.14"
"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz"
"version" "0.3.18"
dependencies:
"@jridgewell/resolve-uri" "3.1.0"
"@jridgewell/sourcemap-codec" "1.4.14"
"@kadena/chainweb-node-client@0.4.2":
"integrity" "sha512-jNSnp2f7/rBXmie8AtysjP4HKdZajlJne5zliF9PvZv/aXhtYoz2DkOuaFrCyxk5+BQXnfrHGxzJXTCF9dOjaw=="
"resolved" "https://registry.npmjs.org/@kadena/chainweb-node-client/-/chainweb-node-client-0.4.2.tgz"
"version" "0.4.2"
dependencies:
"@kadena/cryptography-utils" "0.3.6"
"@kadena/pactjs" "0.3.0"
"@kadena/types" "0.4.0"
"@types/isomorphic-fetch" "~0.0.36"
"cross-fetch" "~3.1.5"
"node-fetch" "~2.6.2"
"@kadena/client@1.0.0-alpha.8":
"integrity" "sha512-6xyH0vGThL3Etm0dJgxufzvP3Ym8gYW3mhRIJ+c8dx6jx81tx1/npclcnJh6VcFSsJRdgw30hfF6f4unUWRrHQ=="
"resolved" "https://registry.npmjs.org/@kadena/client/-/client-1.0.0-alpha.8.tgz"
"version" "1.0.0-alpha.8"
dependencies:
"@kadena/chainweb-node-client" "0.4.2"
"@kadena/cryptography-utils" "0.3.6"
"@kadena/pactjs" "0.3.0"
"@kadena/types" "0.4.0"
"@walletconnect/sign-client" "~2.8.1"
"@walletconnect/types" "~2.8.1"
"cross-fetch" "~3.1.5"
"debug" "~4.3.4"
"encoding" "~0.1.13"
"yaml" "~2.1.1"
"@kadena/cryptography-utils@0.3.6":
"integrity" "sha512-TsVmWRlqvJZDTf5Dzo21P4mwvHtyfFWT5xa5Mr2oz1m9GBsafQ8CmZfRwrdxIvw2ZppNdmU2V4ji0we9N9AARQ=="
"resolved" "https://registry.npmjs.org/@kadena/cryptography-utils/-/cryptography-utils-0.3.6.tgz"
"version" "0.3.6"
dependencies:
"@kadena/types" "0.4.0"
"blakejs" "^1.2.1"
"buffer" "^6.0.3"
"tweetnacl" "^1.0.3"
"@kadena/pactjs-cli@1.0.0-alpha.7":
"integrity" "sha512-Tcbn2FxjeYzC3sMd+Y8xnF6NvW+vUsuwm4YQLBD8Vt1Kabjn0z39ZjjvzIZSxz6kMXaVTbI/6BeCzasd23kGNw=="
"resolved" "https://registry.npmjs.org/@kadena/pactjs-cli/-/pactjs-cli-1.0.0-alpha.7.tgz"
"version" "1.0.0-alpha.7"
dependencies:
"@kadena/pactjs-generator" "1.0.0-alpha.7"
"commander" "^9.3.0"
"cross-fetch" "~3.1.5"
"debug" "~4.3.4"
"mkdirp" "~1.0.4"
"rimraf" "~3.0.2"
"yaml" "~2.1.1"
"zod" "~3.18.0"
"@kadena/pactjs-generator@1.0.0-alpha.7":
"integrity" "sha512-f1FGRE1jaQ1Kd88Zkod4KtICoy05c0AX8YikgykvQND+ZAFd2PiSK6J6ls5xvvVwoPy//ceMRiHmu6LnGKEEiQ=="
"resolved" "https://registry.npmjs.org/@kadena/pactjs-generator/-/pactjs-generator-1.0.0-alpha.7.tgz"
"version" "1.0.0-alpha.7"
dependencies:
"memfs" "~3.5.1"
"moo" "~0.5.1"
"nearley" "~2.20.1"
"yaml" "~2.1.1"
"@kadena/pactjs@^0.3.0", "@kadena/pactjs@0.3.0":
"integrity" "sha512-b0qIeJ3eAbuOaEbV9dNi9zzxciooeJWzSaeycKDhTbEWAbnKD6pXWRcYPojG2t0pNwMQZyb2kIRIV93D08E5bA=="
"resolved" "https://registry.npmjs.org/@kadena/pactjs/-/pactjs-0.3.0.tgz"
"version" "0.3.0"
dependencies:
"@kadena/types" "0.4.0"
"bignumber.js" "^9.0.2"
"@kadena/types@0.4.0":
"integrity" "sha512-fXId5LebFigIcMMG2JlPW/wMNf5sw81VqjoCVh7TmZnuMvT9YJDsYQahD8qdrXWxbFAssRXyIEe4oPsm2aQ5/Q=="
"resolved" "https://registry.npmjs.org/@kadena/types/-/types-0.4.0.tgz"
"version" "0.4.0"
"@koa/router@^9.0.1":
"integrity" "sha512-dOOXgzqaDoHu5qqMEPLKEgLz5CeIA7q8+1W62mCvFVCOqeC71UoTGJ4u1xUSOpIl2J1x2pqrNULkFteUeZW3/A=="
"resolved" "https://registry.npmjs.org/@koa/router/-/router-9.4.0.tgz"
"version" "9.4.0"
dependencies:
"debug" "^4.1.1"
"http-errors" "^1.7.3"
"koa-compose" "^4.1.0"
"methods" "^1.1.2"
"path-to-regexp" "^6.1.0"
"@lit-labs/ssr-dom-shim@^1.0.0", "@lit-labs/ssr-dom-shim@^1.1.0":
"integrity" "sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ=="
"resolved" "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.1.tgz"
"version" "1.1.1"
"@lit/reactive-element@^1.3.0", "@lit/reactive-element@^1.6.0":
"integrity" "sha512-rDfl+QnCYjuIGf5xI2sVJWdYIi56CTCwWa+nidKYX6oIuBYwUbT/vX4qbUDlHiZKJ/3FRNQ/tWJui44p6/stSA=="
"resolved" "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.6.2.tgz"
"version" "1.6.2"
dependencies:
"@lit-labs/ssr-dom-shim" "^1.0.0"
"@mapbox/node-pre-gyp@^1.0.5":
"integrity" "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ=="
"resolved" "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz"
"version" "1.0.11"
dependencies:
"detect-libc" "^2.0.0"
"https-proxy-agent" "^5.0.0"
"make-dir" "^3.1.0"
"node-fetch" "^2.6.7"
"nopt" "^5.0.0"
"npmlog" "^5.0.1"
"rimraf" "^3.0.2"
"semver" "^7.3.5"
"tar" "^6.1.11"
"@motionone/animation@^10.15.1":
"integrity" "sha512-mZcJxLjHor+bhcPuIFErMDNyrdb2vJur8lSfMCsuCB4UyV8ILZLvK+t+pg56erv8ud9xQGK/1OGPt10agPrCyQ=="
"resolved" "https://registry.npmjs.org/@motionone/animation/-/animation-10.15.1.tgz"
"version" "10.15.1"
dependencies:
"@motionone/easing" "^10.15.1"
"@motionone/types" "^10.15.1"
"@motionone/utils" "^10.15.1"
"tslib" "^2.3.1"
"@motionone/dom@^10.16.2":
"integrity" "sha512-bnuHdNbge1FutZXv+k7xub9oPWcF0hsu8y1HTH/qg6av58YI0VufZ3ngfC7p2xhMJMnoh0LXFma2EGTgPeCkeg=="
"resolved" "https://registry.npmjs.org/@motionone/dom/-/dom-10.16.2.tgz"
"version" "10.16.2"
dependencies:
"@motionone/animation" "^10.15.1"
"@motionone/generators" "^10.15.1"
"@motionone/types" "^10.15.1"
"@motionone/utils" "^10.15.1"
"hey-listen" "^1.0.8"
"tslib" "^2.3.1"
"@motionone/easing@^10.15.1":
"integrity" "sha512-6hIHBSV+ZVehf9dcKZLT7p5PEKHGhDwky2k8RKkmOvUoYP3S+dXsKupyZpqx5apjd9f+php4vXk4LuS+ADsrWw=="
"resolved" "https://registry.npmjs.org/@motionone/easing/-/easing-10.15.1.tgz"
"version" "10.15.1"
dependencies:
"@motionone/utils" "^10.15.1"
"tslib" "^2.3.1"
"@motionone/generators@^10.15.1":
"integrity" "sha512-67HLsvHJbw6cIbLA/o+gsm7h+6D4Sn7AUrB/GPxvujse1cGZ38F5H7DzoH7PhX+sjvtDnt2IhFYF2Zp1QTMKWQ=="
"resolved" "https://registry.npmjs.org/@motionone/generators/-/generators-10.15.1.tgz"
"version" "10.15.1"
dependencies:
"@motionone/types" "^10.15.1"
"@motionone/utils" "^10.15.1"
"tslib" "^2.3.1"
"@motionone/svelte@^10.16.2":
"integrity" "sha512-38xsroKrfK+aHYhuQlE6eFcGy0EwrB43Q7RGjF73j/kRUTcLNu/LAaKiLLsN5lyqVzCgTBVt4TMT/ShWbTbc5Q=="
"resolved" "https://registry.npmjs.org/@motionone/svelte/-/svelte-10.16.2.tgz"
"version" "10.16.2"
dependencies:
"@motionone/dom" "^10.16.2"
"tslib" "^2.3.1"
"@motionone/types@^10.15.1":
"integrity" "sha512-iIUd/EgUsRZGrvW0jqdst8st7zKTzS9EsKkP+6c6n4MPZoQHwiHuVtTQLD6Kp0bsBLhNzKIBlHXponn/SDT4hA=="
"resolved" "https://registry.npmjs.org/@motionone/types/-/types-10.15.1.tgz"
"version" "10.15.1"
"@motionone/utils@^10.15.1":
"integrity" "sha512-p0YncgU+iklvYr/Dq4NobTRdAPv9PveRDUXabPEeOjBLSO/1FNB2phNTZxOxpi1/GZwYpAoECEa0Wam+nsmhSw=="
"resolved" "https://registry.npmjs.org/@motionone/utils/-/utils-10.15.1.tgz"
"version" "10.15.1"
dependencies:
"@motionone/types" "^10.15.1"
"hey-listen" "^1.0.8"
"tslib" "^2.3.1"
"@motionone/vue@^10.16.2":
"integrity" "sha512-7/dEK/nWQXOkJ70bqb2KyNfSWbNvWqKKq1C8juj+0Mg/AorgD8O5wE3naddK0G+aXuNMqRuc4jlsYHHWHtIzVw=="
"resolved" "https://registry.npmjs.org/@motionone/vue/-/vue-10.16.2.tgz"
"version" "10.16.2"
dependencies:
"@motionone/dom" "^10.16.2"
"tslib" "^2.3.1"
"@netlify/functions@^1.6.0":
"integrity" "sha512-6G92AlcpFrQG72XU8YH8pg94eDnq7+Q0YJhb8x4qNpdGsvuzvrfHWBmqFGp/Yshmv4wex9lpsTRZOocdrA2erQ=="
"resolved" "https://registry.npmjs.org/@netlify/functions/-/functions-1.6.0.tgz"
"version" "1.6.0"
dependencies:
"is-promise" "^4.0.0"
"@noble/curves@~1.0.0", "@noble/curves@1.0.0":
"integrity" "sha512-2upgEu0iLiDVDZkNLeFV2+ht0BAVgQnEmCk6JsOch9Rp8xfkMCbvbAZlA2pBHQc73dbl+vFOXfqkf4uemdn0bw=="
"resolved" "https://registry.npmjs.org/@noble/curves/-/curves-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"@noble/hashes" "1.3.0"
"@noble/hashes@~1.3.0", "@noble/hashes@1.3.0":
"integrity" "sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg=="
"resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.0.tgz"
"version" "1.3.0"
"@nodelib/fs.scandir@2.1.5":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@npmcli/fs@^3.1.0":
"integrity" "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w=="
"resolved" "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"semver" "^7.3.5"
"@npmcli/git@^4.0.0":
"integrity" "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ=="
"resolved" "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"@npmcli/promise-spawn" "^6.0.0"
"lru-cache" "^7.4.4"
"npm-pick-manifest" "^8.0.0"
"proc-log" "^3.0.0"
"promise-inflight" "^1.0.1"
"promise-retry" "^2.0.1"
"semver" "^7.3.5"
"which" "^3.0.0"
"@npmcli/installed-package-contents@^2.0.1":
"integrity" "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ=="
"resolved" "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"npm-bundled" "^3.0.0"
"npm-normalize-package-bin" "^3.0.0"
"@npmcli/node-gyp@^3.0.0":
"integrity" "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA=="
"resolved" "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz"
"version" "3.0.0"
"@npmcli/promise-spawn@^6.0.0", "@npmcli/promise-spawn@^6.0.1":
"integrity" "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg=="
"resolved" "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz"
"version" "6.0.2"
dependencies:
"which" "^3.0.0"
"@npmcli/run-script@^6.0.0":
"integrity" "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA=="
"resolved" "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz"
"version" "6.0.2"
dependencies:
"@npmcli/node-gyp" "^3.0.0"
"@npmcli/promise-spawn" "^6.0.0"
"node-gyp" "^9.0.0"
"read-package-json-fast" "^3.0.0"
"which" "^3.0.0"
"@nuxt/devalue@^2.0.2":
"integrity" "sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA=="
"resolved" "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz"
"version" "2.0.2"
"@nuxt/devtools-kit@0.7.0":
"integrity" "sha512-cbSeiIjWau2LxNgo1YHmUunA88IQEESJOlYgpJFxyOkDXzpKaR6xA0i6MT0zZTmQFCkT+u7DtExdp999icbwXQ=="
"resolved" "https://registry.npmjs.org/@nuxt/devtools-kit/-/devtools-kit-0.7.0.tgz"
"version" "0.7.0"
dependencies:
"@nuxt/kit" "^3.6.2"
"@nuxt/schema" "^3.6.2"
"execa" "^7.1.1"
"@nuxt/devtools-wizard@0.7.0":
"integrity" "sha512-YUHxV8cN6SPqX/uQyLgJ9txcc8IJkG6nsBgfdrLjAkqNU7+/KFpjR0WgpFJNfPqYVpK19mENFTmvBXaBE4kv1A=="
"resolved" "https://registry.npmjs.org/@nuxt/devtools-wizard/-/devtools-wizard-0.7.0.tgz"
"version" "0.7.0"
dependencies:
"consola" "^3.2.3"
"diff" "^5.1.0"
"execa" "^7.1.1"
"global-dirs" "^3.0.1"
"magicast" "^0.2.9"
"pathe" "^1.1.1"
"picocolors" "^1.0.0"
"pkg-types" "^1.0.3"
"prompts" "^2.4.2"
"rc9" "^2.1.1"
"semver" "^7.5.4"
"@nuxt/devtools@latest":
"integrity" "sha512-2r4766kZGTPZcs+o/YcobITc6lBsfsbuz18P+N5hqUXWc6evcWFf2fQXsMYJaD377mSwS1acxuHSrhI/WEYtMg=="
"resolved" "https://registry.npmjs.org/@nuxt/devtools/-/devtools-0.7.0.tgz"
"version" "0.7.0"
dependencies:
"@nuxt/devtools-kit" "0.7.0"
"@nuxt/devtools-wizard" "0.7.0"
"@nuxt/kit" "^3.6.2"
"birpc" "^0.2.12"
"boxen" "^7.1.1"
"consola" "^3.2.3"
"error-stack-parser-es" "^0.1.0"
"execa" "^7.1.1"
"fast-folder-size" "^2.1.0"
"fast-glob" "^3.3.0"
"get-port-please" "^3.0.1"
"global-dirs" "^3.0.1"
"h3" "^1.7.1"
"hookable" "^5.5.3"
"image-meta" "^0.1.1"
"is-installed-globally" "^0.4.0"
"launch-editor" "^2.6.0"
"local-pkg" "^0.4.3"
"magicast" "^0.2.9"
"nypm" "^0.2.2"
"pacote" "^15.2.0"
"pathe" "^1.1.1"
"perfect-debounce" "^1.0.0"
"picocolors" "^1.0.0"
"pkg-types" "^1.0.3"
"rc9" "^2.1.1"
"semver" "^7.5.4"
"sirv" "^2.0.3"
"unimport" "^3.1.0"
"vite-plugin-inspect" "^0.7.32"
"vite-plugin-vue-inspector" "^3.4.2"
"wait-on" "^7.0.1"
"which" "^3.0.1"
"ws" "^8.13.0"
"@nuxt/kit@^3.5.3", "@nuxt/kit@^3.6.1", "@nuxt/kit@^3.6.2", "@nuxt/kit@^3.6.3", "@nuxt/kit@3.6.5":
"integrity" "sha512-uBI5I2Zx6sk+vRHU+nBmifwxg/nyXCGZ1g5hUKrUfgv1ZfiKB8JkN5T9iRoduDOaqbwM6XSnEl1ja73iloDcrw=="
"resolved" "https://registry.npmjs.org/@nuxt/kit/-/kit-3.6.5.tgz"
"version" "3.6.5"
dependencies:
"@nuxt/schema" "3.6.5"
"c12" "^1.4.2"
"consola" "^3.2.3"
"defu" "^6.1.2"
"globby" "^13.2.2"
"hash-sum" "^2.0.0"
"ignore" "^5.2.4"
"jiti" "^1.19.1"
"knitwork" "^1.0.0"
"mlly" "^1.4.0"
"pathe" "^1.1.1"
"pkg-types" "^1.0.3"
"scule" "^1.0.0"
"semver" "^7.5.3"
"unctx" "^2.3.1"
"unimport" "^3.0.14"
"untyped" "^1.3.2"
"@nuxt/kit@3.1.1":
"integrity" "sha512-wmqVCIuD/te6BKf3YiqWyMumKI5JIpkiv0li/1Y3QHnTkoxyIhLkbFgNcQHuBxJ3eMlk2UjAjAqWiqBHTX54vQ=="
"resolved" "https://registry.npmjs.org/@nuxt/kit/-/kit-3.1.1.tgz"
"version" "3.1.1"
dependencies:
"@nuxt/schema" "3.1.1"
"c12" "^1.1.0"
"consola" "^2.15.3"
"defu" "^6.1.2"
"globby" "^13.1.3"
"hash-sum" "^2.0.0"
"ignore" "^5.2.4"
"jiti" "^1.16.2"
"knitwork" "^1.0.0"
"lodash.template" "^4.5.0"
"mlly" "^1.1.0"
"pathe" "^1.1.0"
"pkg-types" "^1.0.1"
"scule" "^1.0.0"
"semver" "^7.3.8"
"unctx" "^2.1.1"
"unimport" "^2.0.1"
"untyped" "^1.2.2"
"@nuxt/postcss8@^1.1.3":
"integrity" "sha512-CdHtErhvQwueNZPBOmlAAKrNCK7aIpZDYhtS7TzXlSgPHHox1g3cSlf+Ke9oB/8t4mNNjdB+prclme2ibuCOEA=="
"resolved" "https://registry.npmjs.org/@nuxt/postcss8/-/postcss8-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"autoprefixer" "^10.2.5"
"css-loader" "^5.0.0"
"defu" "^3.2.2"
"postcss" "^8.1.10"
"postcss-import" "^13.0.0"
"postcss-loader" "^4.1.0"
"postcss-url" "^10.1.1"
"semver" "^7.3.4"
"@nuxt/schema@^3.6.2", "@nuxt/schema@3.6.5":
"integrity" "sha512-UPUnMB0W5TZ/Pi1fiF71EqIsPlj8LGZqzhSf8wOeh538KHwxbA9r7cuvEUU92eXRksOZaylbea3fJxZWhOITVw=="
"resolved" "https://registry.npmjs.org/@nuxt/schema/-/schema-3.6.5.tgz"
"version" "3.6.5"
dependencies:
"defu" "^6.1.2"
"hookable" "^5.5.3"
"pathe" "^1.1.1"
"pkg-types" "^1.0.3"
"postcss-import-resolver" "^2.0.0"
"std-env" "^3.3.3"
"ufo" "^1.1.2"
"unimport" "^3.0.14"
"untyped" "^1.3.2"
"@nuxt/schema@3.1.1":
"integrity" "sha512-/KuoCDVGrLD9W7vwuYhu4HbdT/BpbrhA4Pm9dGn7Jah40kHDGqUnJxugvMjt+4suq53rLQyTA0LRDWfFxfxAOQ=="
"resolved" "https://registry.npmjs.org/@nuxt/schema/-/schema-3.1.1.tgz"
"version" "3.1.1"
dependencies:
"c12" "^1.1.0"
"create-require" "^1.1.1"
"defu" "^6.1.2"
"hookable" "^5.4.2"
"jiti" "^1.16.2"
"pathe" "^1.1.0"
"pkg-types" "^1.0.1"
"postcss-import-resolver" "^2.0.0"
"scule" "^1.0.0"
"std-env" "^3.3.1"
"ufo" "^1.0.1"
"unimport" "^2.0.1"
"untyped" "^1.2.2"
"@nuxt/telemetry@^2.3.0":
"integrity" "sha512-7kr2VDirYIXqyTHqaiWCrfQLgUjAa4qAHzykJOspMCFJWalHU9SVfnv+cTOKGqoXQ4TWOCd09tEd7sLlMFTEqw=="
"resolved" "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.3.1.tgz"
"version" "2.3.1"
dependencies:
"@nuxt/kit" "^3.6.1"
"chalk" "^5.3.0"
"ci-info" "^3.8.0"
"consola" "^3.2.2"
"create-require" "^1.1.1"
"defu" "^6.1.2"
"destr" "^2.0.0"
"dotenv" "^16.3.1"
"fs-extra" "^11.1.1"
"git-url-parse" "^13.1.0"
"is-docker" "^3.0.0"
"jiti" "^1.19.1"
"mri" "^1.2.0"
"nanoid" "^4.0.2"
"node-fetch" "^3.3.1"
"ofetch" "^1.1.1"
"parse-git-config" "^3.0.0"
"rc9" "^2.1.1"
"std-env" "^3.3.3"
"@nuxt/ui-templates@^1.2.0":
"integrity" "sha512-MSZza7dxccNb/p7nuzGF8/m4POaFpHzVhNdR7f4xahOpH7Ja02lFeYR+rHtoHIJC0yym4qriqv0mQ+Qf/R61bQ=="
"resolved" "https://registry.npmjs.org/@nuxt/ui-templates/-/ui-templates-1.2.0.tgz"
"version" "1.2.0"
"@nuxt/vite-builder@3.6.5":
"integrity" "sha512-pwSpt257ApCp3XWUs8vrC7X9QHeHUv5PbbIR3+5w0n5f95XPNOQWDJa2fTPX/H6oaRJCPYAsBPqiQhQ7qW/NZQ=="
"resolved" "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.6.5.tgz"
"version" "3.6.5"
dependencies:
"@nuxt/kit" "3.6.5"
"@rollup/plugin-replace" "^5.0.2"
"@vitejs/plugin-vue" "^4.2.3"
"@vitejs/plugin-vue-jsx" "^3.0.1"
"autoprefixer" "^10.4.14"
"clear" "^0.1.0"
"consola" "^3.2.3"
"cssnano" "^6.0.1"
"defu" "^6.1.2"
"esbuild" "^0.18.11"
"escape-string-regexp" "^5.0.0"
"estree-walker" "^3.0.3"
"externality" "^1.0.2"
"fs-extra" "^11.1.1"
"get-port-please" "^3.0.1"
"h3" "^1.7.1"
"knitwork" "^1.0.0"
"magic-string" "^0.30.1"
"mlly" "^1.4.0"
"ohash" "^1.1.2"
"pathe" "^1.1.1"
"perfect-debounce" "^1.0.0"
"pkg-types" "^1.0.3"
"postcss" "^8.4.24"
"postcss-import" "^15.1.0"
"postcss-url" "^10.1.3"
"rollup-plugin-visualizer" "^5.9.2"
"std-env" "^3.3.3"
"strip-literal" "^1.0.1"
"ufo" "^1.1.2"
"unplugin" "^1.3.2"
"vite" "~4.3.9"
"vite-node" "^0.33.0"
"vite-plugin-checker" "^0.6.1"
"vue-bundle-renderer" "^1.0.3"
"@nuxtjs/supabase@^0.3.8":
"integrity" "sha512-MEhfgllJx7DQX4XrycGbnTmiW6JI1wLTaVTkDV9X90q+jfBz59d/uM2E6aj4XhLuJp4GN/THGpMg8k1RfuYxqQ=="
"resolved" "https://registry.npmjs.org/@nuxtjs/supabase/-/supabase-0.3.8.tgz"
"version" "0.3.8"
dependencies:
"@nuxt/kit" "^3.6.1"
"@supabase/supabase-js" "2.26.0"
"defu" "^6.1.2"
"pathe" "^1.1.1"
"@nuxtjs/tailwindcss@^6.8.0":
"integrity" "sha512-jzuvD1nfA2BPnSbHtKK0aiI51ndMa7lNGL1iDEFuEPsltzilZ9ED7zOP6niGTrImg0n5Yt4GEJpixi6yWwp9Hw=="
"resolved" "https://registry.npmjs.org/@nuxtjs/tailwindcss/-/tailwindcss-6.8.0.tgz"
"version" "6.8.0"
dependencies:
"@nuxt/kit" "^3.5.3"
"@nuxt/postcss8" "^1.1.3"
"autoprefixer" "^10.4.14"
"chokidar" "^3.5.3"
"clear-module" "^4.1.2"
"colorette" "^2.0.20"
"cookie-es" "^1.0.0"
"defu" "^6.1.2"
"destr" "^2.0.0"
"h3" "^1.6.6"
"iron-webcrypto" "^0.7.0"
"micromatch" "^4.0.5"
"pathe" "^1.1.1"
"postcss" "^8.4.24"
"postcss-custom-properties" "^13.2.0"
"postcss-nesting" "^11.3.0"
"radix3" "^1.0.1"
"tailwind-config-viewer" "^1.7.2"
"tailwindcss" "~3.3.2"
"ufo" "^1.1.2"
"uncrypto" "^0.1.3"
"@pkgjs/parseargs@^0.11.0":
"integrity" "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="
"resolved" "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz"
"version" "0.11.0"
"@polka/url@^1.0.0-next.20":
"integrity" "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g=="
"resolved" "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz"
"version" "1.0.0-next.21"
"@rollup/plugin-alias@^5.0.0":
"integrity" "sha512-l9hY5chSCjuFRPsnRm16twWBiSApl2uYFLsepQYwtBuAxNMQ/1dJqADld40P0Jkqm65GRTLy/AC6hnpVebtLsA=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-5.0.0.tgz"
"version" "5.0.0"