-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
7260 lines (6310 loc) · 293 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
"@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.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.6":
"integrity" "sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.6.tgz"
"version" "7.22.6"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.20.7", "@babel/core@^7.21.3":
"integrity" "sha512-75+KxFB4CZqYRXjx4NlR4J7yGvKumBuZTmV4NV6v09dVXXkuYVYLT68N6HCzLvfJ+fWCxQsntNzKwwIXL4bHnw=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.22.8.tgz"
"version" "7.22.8"
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.22.5"
"@babel/generator" "^7.22.7"
"@babel/helper-compilation-targets" "^7.22.6"
"@babel/helper-module-transforms" "^7.22.5"
"@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"
"@nicolo-ribaudo/semver-v6" "^6.3.3"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.2"
"@babel/generator@^7.22.7":
"integrity" "sha512-p+jPjMG+SI8yvIaxGgeW24u7q9+5+TGpZh8/CuB7RhBKd7RCy8FayNEFNNKrNK/eUcY/4ExQqLmyrvBXKsIcwQ=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.22.7.tgz"
"version" "7.22.7"
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.6":
"integrity" "sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.6.tgz"
"version" "7.22.6"
dependencies:
"@babel/compat-data" "^7.22.6"
"@babel/helper-validator-option" "^7.22.5"
"@nicolo-ribaudo/semver-v6" "^6.3.3"
"browserslist" "^4.21.9"
"lru-cache" "^5.1.1"
"@babel/helper-create-class-features-plugin@^7.22.5":
"integrity" "sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.6.tgz"
"version" "7.22.6"
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.5"
"@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"@nicolo-ribaudo/semver-v6" "^6.3.3"
"@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.5":
"integrity" "sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz"
"version" "7.22.5"
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.5"
"@babel/helper-validator-identifier" "^7.22.5"
"@babel/template" "^7.22.5"
"@babel/traverse" "^7.22.5"
"@babel/types" "^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.5":
"integrity" "sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz"
"version" "7.22.5"
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/template" "^7.22.5"
"@babel/traverse" "^7.22.5"
"@babel/types" "^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.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-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
"@babel/helper-create-class-features-plugin" "^7.22.5"
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-typescript" "^7.22.5"
"@babel/standalone@^7.21.3":
"integrity" "sha512-Bm9Sn+FfDqcvxYo/lz5BFo/PWBcjhxD6rtifkchFes/rU8/u4FacCFY/WdqwPtycH54THlXqMYMjaWigQaMpYA=="
"resolved" "https://registry.npmjs.org/@babel/standalone/-/standalone-7.22.8.tgz"
"version" "7.22.8"
"@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"
"@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/[email protected]":
"integrity" "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw=="
"resolved" "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz"
"version" "0.17.19"
"@esbuild/[email protected]":
"integrity" "sha512-N15Vzy0YNHu6cfyDOjiyfJlRJCB/ngKOAvoBf1qybG3eOq0SL2Lutzz9N7DYUbb7Q23XtHPn6lMDF6uWbGv9Fw=="
"resolved" "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.11.tgz"
"version" "0.18.11"
"@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"
"@intlify/bundle-utils@^7.0.2":
"integrity" "sha512-8wbx9xhbawBFTE5LPTECiK26RRqrNS31jyWSur72ZXZZ4it5jiZTcG6eUJlNirr4+jXYio2DGY299JsGVT4cpw=="
"resolved" "https://registry.npmjs.org/@intlify/bundle-utils/-/bundle-utils-7.0.2.tgz"
"version" "7.0.2"
dependencies:
"@intlify/message-compiler" "9.3.0-beta.24"
"@intlify/shared" "9.3.0-beta.24"
"acorn" "^8.8.2"
"escodegen" "^2.0.0"
"estree-walker" "^2.0.2"
"jsonc-eslint-parser" "^1.0.1"
"magic-string" "^0.30.0"
"mlly" "^1.2.0"
"source-map-js" "^1.0.1"
"yaml-eslint-parser" "^0.3.2"
"@intlify/[email protected]":
"integrity" "sha512-2R03Swr6pmu3jBCYxCCpHAnuqLpyQZNfQR/Csf9OJBRAFUMvbK6/hqZszQJfEMG8OIyWWSinA4JscvpkDHvEWw=="
"resolved" "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.3.0-beta.24.tgz"
"version" "9.3.0-beta.24"
dependencies:
"@intlify/devtools-if" "9.3.0-beta.24"
"@intlify/message-compiler" "9.3.0-beta.24"
"@intlify/shared" "9.3.0-beta.24"
"@intlify/vue-devtools" "9.3.0-beta.24"
"@intlify/[email protected]":
"integrity" "sha512-ZpVMduLgOD5DLByBWUSUph3c98kSiiWupRFTsBEDHTZlH80ypyhjH4c3JzVv4ppEH1TRqY/cP3svfee1FFi79w=="
"resolved" "https://registry.npmjs.org/@intlify/devtools-if/-/devtools-if-9.3.0-beta.24.tgz"
"version" "9.3.0-beta.24"
dependencies:
"@intlify/shared" "9.3.0-beta.24"
"@intlify/[email protected]":
"integrity" "sha512-prhHATkgp0mpPqoVgiAtLmUc1JMvs8fMH6w53AVEBn+VF87dLhzanfmWY5FoZWORG51ag54gBDBOoM/VFv3m3A=="
"resolved" "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.3.0-beta.24.tgz"
"version" "9.3.0-beta.24"
dependencies:
"@intlify/shared" "9.3.0-beta.24"
"source-map-js" "^1.0.2"
"@intlify/[email protected]", "@intlify/shared@next":
"integrity" "sha512-AKxJ8s7eKIQWkNaf4wyyoLRwf4puCuQgjSChlDJm5JBEt6T8HGgnYTJLRXu6LD/JACn3Qwu6hM/XRX1c9yvjmQ=="
"resolved" "https://registry.npmjs.org/@intlify/shared/-/shared-9.3.0-beta.24.tgz"
"version" "9.3.0-beta.24"
"@intlify/unplugin-vue-i18n@^0.12.2":
"integrity" "sha512-IIgzLRSPUKZM1FBdUAZ9NwVPiLUr4ea5g/HLWe2lB7gNtPDz4FOfUNUllIT504hT+3pDoJmjaYJ6pyqT7F4Wuw=="
"resolved" "https://registry.npmjs.org/@intlify/unplugin-vue-i18n/-/unplugin-vue-i18n-0.12.2.tgz"
"version" "0.12.2"
dependencies:
"@intlify/bundle-utils" "^7.0.2"
"@intlify/shared" "9.3.0-beta.24"
"@rollup/pluginutils" "^5.0.2"
"@vue/compiler-sfc" "^3.2.47"
"debug" "^4.3.3"
"fast-glob" "^3.2.12"
"js-yaml" "^4.1.0"
"json5" "^2.2.3"
"pathe" "^1.0.0"
"picocolors" "^1.0.0"
"source-map-js" "^1.0.2"
"unplugin" "^1.1.0"
"@intlify/[email protected]":
"integrity" "sha512-ACK+FnGCYEP+d4NVTp/G+ldnZk49kwl7iNKsxBVr31NzzdUd/2m4ANFsuvDSvIYzzIGrDggJFNC+ON4Rl7mm1A=="
"resolved" "https://registry.npmjs.org/@intlify/vue-devtools/-/vue-devtools-9.3.0-beta.24.tgz"
"version" "9.3.0-beta.24"
dependencies:
"@intlify/core-base" "9.3.0-beta.24"
"@intlify/shared" "9.3.0-beta.24"
"@intlify/vue-i18n-bridge@^0.8.0":
"integrity" "sha512-wQ18fSccm9QaWpUW2vq2QHvojgKIog7s+UMj9LeY3pUV3yD9bU4YZI+1PTNoX3tOA+BE71gQyqVGox/TVQKP6Q=="
"resolved" "https://registry.npmjs.org/@intlify/vue-i18n-bridge/-/vue-i18n-bridge-0.8.0.tgz"
"version" "0.8.0"
"@intlify/vue-router-bridge@^0.8.0":
"integrity" "sha512-CNxOgvyQcRhtGmRrksicL+HGjDijXtz+J/x04C/RslZ74CFdZkxjCe8MABkeD3xr+ry8G8tCm2nV2hLjZbynQw=="
"resolved" "https://registry.npmjs.org/@intlify/vue-router-bridge/-/vue-router-bridge-0.8.0.tgz"
"version" "0.8.0"
dependencies:
"vue-demi" "^0.13.5"
"@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/[email protected]":
"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/[email protected]":
"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"
"@mapbox/node-pre-gyp@^1.0.5":
"integrity" "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA=="
"resolved" "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz"
"version" "1.0.10"
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"
"@mizchi/sucrase@^4.1.0":
"integrity" "sha512-AaN8HSGdXmNqEqIb0IQPIQL+MI/8Xr1QTOcVnA6k0u2afqfYhlre05hSxRybOFpq34oF8EqMTrYovYZxEV1FLw=="
"resolved" "https://registry.npmjs.org/@mizchi/sucrase/-/sucrase-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"lines-and-columns" "^1.1.6"
"@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"
"@nicolo-ribaudo/semver-v6@^6.3.3":
"integrity" "sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg=="
"resolved" "https://registry.npmjs.org/@nicolo-ribaudo/semver-v6/-/semver-v6-6.3.3.tgz"
"version" "6.3.3"
"@nodelib/[email protected]":
"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/[email protected]":
"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/content@^2.2.1":
"integrity" "sha512-3vv3Rbpf6NH7RRuy7PLVmpQCt8C9DgV4aTWLmTCdnWpmlNsX+0wQT8bA/ypqmh8zrJ6BXWztFM35WVESkNvDvQ=="
"resolved" "https://registry.npmjs.org/@nuxt/content/-/content-2.7.0.tgz"
"version" "2.7.0"
dependencies:
"@nuxt/kit" "^3.5.3"
"consola" "^3.1.0"
"defu" "^6.1.2"
"destr" "^1.2.2"
"detab" "^3.0.2"
"json5" "^2.2.3"
"knitwork" "^1.0.0"
"listhen" "^1.0.4"
"mdast-util-to-hast" "^12.3.0"
"mdurl" "^1.0.1"
"ohash" "^1.1.2"
"pathe" "^1.1.1"
"property-information" "^6.2.0"
"rehype-external-links" "^2.1.0"
"rehype-raw" "^6.1.1"
"rehype-slug" "^5.1.0"
"rehype-sort-attribute-values" "^4.0.0"
"rehype-sort-attributes" "^4.0.0"
"remark-emoji" "3.1.1"
"remark-gfm" "^3.0.1"
"remark-mdc" "^1.1.3"
"remark-parse" "^10.0.2"
"remark-rehype" "^10.1.0"
"remark-squeeze-paragraphs" "^5.0.1"
"scule" "^1.0.0"
"shiki-es" "^0.2.0"
"slugify" "^1.6.6"
"socket.io-client" "^4.6.2"
"ufo" "^1.1.2"
"unified" "^10.1.2"
"unist-builder" "^3.0.1"
"unist-util-position" "^4.0.4"
"unist-util-stringify-position" "^3.0.3"
"unist-util-visit" "^4.1.2"
"unstorage" "^1.6.1"
"ws" "^8.13.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/[email protected]":
"integrity" "sha512-DEJBLspLRr3zFu/DAHs8Q1o9tgzELt24qDqsuqTEKqcw/2j1iu1TefvUdmXkJo6s8Qk3GI6e3QxrvtEE3mwKqA=="
"resolved" "https://registry.npmjs.org/@nuxt/devtools-kit/-/devtools-kit-0.6.7.tgz"
"version" "0.6.7"
dependencies:
"@nuxt/kit" "^3.6.1"
"@nuxt/schema" "^3.6.1"
"execa" "^7.1.1"
"@nuxt/[email protected]":
"integrity" "sha512-dN+3UVxsGk3Vx0T6tN+UQ1b7FjWHk3N4WWmnKOACa4pHt77RYHFzndk60KDlKq9I/bn905pghsqwvXmPfbSpJA=="
"resolved" "https://registry.npmjs.org/@nuxt/devtools-wizard/-/devtools-wizard-0.6.7.tgz"
"version" "0.6.7"
dependencies:
"consola" "^3.2.2"
"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.3"
"@nuxt/devtools@^0.6.7":
"integrity" "sha512-ATjkNfceG+8DQ8kR6O3UC9MjFfUd39aeFgKA+Z6pjG8Z7e3vwK92oZCSeQ8DQRi4/2kwa/UPjN8pNclyc6FlbQ=="
"resolved" "https://registry.npmjs.org/@nuxt/devtools/-/devtools-0.6.7.tgz"
"version" "0.6.7"
dependencies:
"@nuxt/devtools-kit" "0.6.7"
"@nuxt/devtools-wizard" "0.6.7"
"@nuxt/kit" "^3.6.1"
"birpc" "^0.2.12"
"boxen" "^7.1.0"
"consola" "^3.2.2"
"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.3"
"sirv" "^2.0.3"
"unimport" "^3.0.12"
"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.2.0", "@nuxt/kit@^3.4.1", "@nuxt/kit@^3.5.0", "@nuxt/kit@^3.5.3", "@nuxt/kit@^3.6.1", "@nuxt/[email protected]":
"integrity" "sha512-X1WN76izsILva6TvQVTfJCHG7TXCwsB6jsxZKcU3qSog26jer5dildDb5ZmKL3e+IFD6BwK4ShO/py8VZcT6OA=="
"resolved" "https://registry.npmjs.org/@nuxt/kit/-/kit-3.6.2.tgz"
"version" "3.6.2"
dependencies:
"@nuxt/schema" "3.6.2"
"c12" "^1.4.2"
"consola" "^3.2.2"
"defu" "^6.1.2"
"globby" "^13.2.1"
"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/schema@^3.6.1", "@nuxt/[email protected]":
"integrity" "sha512-wxb1/C5ozly5IwX0IRjVGml1n2KjZrTKsf6lTk3fdjUpW105kAvYX4j66PDOdBRE4vCwCsgaHJfWpUSeNBxbuA=="
"resolved" "https://registry.npmjs.org/@nuxt/schema/-/schema-3.6.2.tgz"
"version" "3.6.2"
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/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/[email protected]":
"integrity" "sha512-+JOWj8f5W5CKTHCPUhcuHrIIfOJHMdOaRfWA6DiIK8xPUQ5b3i737GQ9CRoSBHr9EaySJVuYjs6ptT6r0t7Spg=="
"resolved" "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.6.2.tgz"
"version" "3.6.2"
dependencies:
"@nuxt/kit" "3.6.2"
"@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.2"
"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.32.4"
"vite-plugin-checker" "^0.6.1"
"vue-bundle-renderer" "^1.0.3"
"@nuxtjs/i18n@npm:@nuxtjs/i18n-edge":
"integrity" "sha512-/1QNnbthtlEwQjyEvn6RKDofR2/wvnmq5VQKK9yR6vGeb4gD24zwSeVGkdRPaWsPJsi/zjxXLjOkbJdK8m7dIw=="
"resolved" "https://registry.npmjs.org/@nuxtjs/i18n-edge/-/i18n-edge-8.0.0-beta.13-28152948.c223af3.tgz"
"version" "8.0.0-beta.13-28152948.c223af3"
dependencies:
"@intlify/bundle-utils" "^7.0.2"
"@intlify/shared" "9.3.0-beta.24"
"@intlify/unplugin-vue-i18n" "^0.12.2"
"@mizchi/sucrase" "^4.1.0"
"@nuxt/kit" "^3.4.1"
"@vue/compiler-sfc" "^3.3.4"
"cookie-es" "^0.5.0"
"debug" "^4.3.4"
"defu" "^6.1.2"
"estree-walker" "^3.0.3"
"is-https" "^4.0.0"
"js-cookie" "^3.0.5"
"knitwork" "^1.0.0"
"magic-string" "^0.27.0"
"mlly" "^1.4.0"
"pathe" "^1.1.1"
"pkg-types" "^1.0.3"
"ufo" "^1.1.2"
"unplugin" "^1.3.2"
"unstorage" "^1.5.0"
"vue-i18n" "9.3.0-beta.24"
"vue-i18n-routing" "^0.13.0"
"@pinia/nuxt@^0.4.6":
"integrity" "sha512-bhuNFngJpmBCdAqWguezNJ/oJFR7wvKieqiZrmmdmPR07XjsidAw8RLXHMZE9kUm32M9E6T057OBbG/22jERTg=="
"resolved" "https://registry.npmjs.org/@pinia/nuxt/-/nuxt-0.4.11.tgz"
"version" "0.4.11"
dependencies:
"@nuxt/kit" "^3.5.0"
"pinia" ">=2.1.0"
"@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"
dependencies:
"slash" "^4.0.0"
"@rollup/plugin-commonjs@^25.0.2":
"integrity" "sha512-NGTwaJxIO0klMs+WSFFtBP7b9TdTJ3K76HZkewT8/+yHzMiUGVQgaPtLQxNVYIgT5F7lxkEyVID+yS3K7bhCow=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.2.tgz"
"version" "25.0.2"
dependencies:
"@rollup/pluginutils" "^5.0.1"
"commondir" "^1.0.1"
"estree-walker" "^2.0.2"
"glob" "^8.0.3"
"is-reference" "1.2.1"
"magic-string" "^0.27.0"
"@rollup/plugin-inject@^5.0.3":
"integrity" "sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.3.tgz"
"version" "5.0.3"
dependencies:
"@rollup/pluginutils" "^5.0.1"
"estree-walker" "^2.0.2"
"magic-string" "^0.27.0"
"@rollup/plugin-json@^6.0.0":
"integrity" "sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"@rollup/pluginutils" "^5.0.1"
"@rollup/plugin-node-resolve@^15.1.0":
"integrity" "sha512-xeZHCgsiZ9pzYVgAo9580eCGqwh/XCEUM9q6iQfGNocjgkufHAqC3exA+45URvhiYV8sBF9RlBai650eNs7AsA=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.1.0.tgz"
"version" "15.1.0"
dependencies:
"@rollup/pluginutils" "^5.0.1"
"@types/resolve" "1.20.2"
"deepmerge" "^4.2.2"
"is-builtin-module" "^3.2.1"
"is-module" "^1.0.0"
"resolve" "^1.22.1"
"@rollup/plugin-replace@^5.0.2":
"integrity" "sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-5.0.2.tgz"
"version" "5.0.2"
dependencies:
"@rollup/pluginutils" "^5.0.1"
"magic-string" "^0.27.0"
"@rollup/plugin-terser@^0.4.3":
"integrity" "sha512-EF0oejTMtkyhrkwCdg0HJ0IpkcaVg1MMSf2olHb2Jp+1mnLM04OhjpJWGma4HobiDTF0WCyViWuvadyE9ch2XA=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.3.tgz"
"version" "0.4.3"
dependencies:
"serialize-javascript" "^6.0.1"
"smob" "^1.0.0"
"terser" "^5.17.4"
"@rollup/plugin-wasm@^6.1.3":
"integrity" "sha512-7ItTTeyauE6lwdDtQWceEHZ9+txbi4RRy0mYPFn9BW7rD7YdgBDu7HTHsLtHrRzJc313RM/1m6GKgV3np/aEaw=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-wasm/-/plugin-wasm-6.1.3.tgz"
"version" "6.1.3"
"@rollup/pluginutils@^4.0.0":
"integrity" "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="
"resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz"
"version" "4.2.1"
dependencies:
"estree-walker" "^2.0.1"
"picomatch" "^2.2.2"
"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.0.2":
"integrity" "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA=="
"resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz"
"version" "5.0.2"
dependencies:
"@types/estree" "^1.0.0"
"estree-walker" "^2.0.2"
"picomatch" "^2.3.1"
"@sideway/address@^4.1.3":
"integrity" "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw=="
"resolved" "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz"
"version" "4.1.4"
dependencies:
"@hapi/hoek" "^9.0.0"
"@sideway/formula@^3.0.1":
"integrity" "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg=="
"resolved" "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz"
"version" "3.0.1"
"@sideway/pinpoint@^2.0.0":
"integrity" "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ=="
"resolved" "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz"
"version" "2.0.0"
"@sigstore/protobuf-specs@^0.1.0":
"integrity" "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ=="
"resolved" "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz"
"version" "0.1.0"
"@sigstore/tuf@^1.0.1":
"integrity" "sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q=="
"resolved" "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"@sigstore/protobuf-specs" "^0.1.0"
"tuf-js" "^1.1.7"
"@socket.io/component-emitter@~3.1.0":
"integrity" "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg=="
"resolved" "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz"
"version" "3.1.0"
"@tootallnate/once@2":
"integrity" "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A=="
"resolved" "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz"
"version" "2.0.0"
"@trysound/[email protected]":
"integrity" "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA=="
"resolved" "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz"
"version" "0.2.0"
"@tufjs/[email protected]":
"integrity" "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ=="