-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
7577 lines (6569 loc) · 304 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
"@aashutoshrathi/word-wrap@^1.2.3":
"integrity" "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA=="
"resolved" "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz"
"version" "1.2.6"
"@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/install-pkg@^0.1.1":
"integrity" "sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ=="
"resolved" "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-0.1.1.tgz"
"version" "0.1.1"
dependencies:
"execa" "^5.1.1"
"find-up" "^5.0.0"
"@antfu/utils@^0.7.5", "@antfu/utils@^0.7.6":
"integrity" "sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w=="
"resolved" "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.6.tgz"
"version" "0.7.6"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13":
"integrity" "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz"
"version" "7.22.13"
dependencies:
"@babel/highlight" "^7.22.13"
"chalk" "^2.4.2"
"@babel/compat-data@^7.22.9":
"integrity" "sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.3.tgz"
"version" "7.23.3"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.22.10", "@babel/core@^7.22.9", "@babel/core@^7.23.0":
"integrity" "sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.22.13"
"@babel/generator" "^7.23.3"
"@babel/helper-compilation-targets" "^7.22.15"
"@babel/helper-module-transforms" "^7.23.3"
"@babel/helpers" "^7.23.2"
"@babel/parser" "^7.23.3"
"@babel/template" "^7.22.15"
"@babel/traverse" "^7.23.3"
"@babel/types" "^7.23.3"
"convert-source-map" "^2.0.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.3"
"semver" "^6.3.1"
"@babel/generator@^7.23.3":
"integrity" "sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/types" "^7.23.3"
"@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.15":
"integrity" "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz"
"version" "7.22.15"
dependencies:
"@babel/compat-data" "^7.22.9"
"@babel/helper-validator-option" "^7.22.15"
"browserslist" "^4.21.9"
"lru-cache" "^5.1.1"
"semver" "^6.3.1"
"@babel/helper-create-class-features-plugin@^7.22.15":
"integrity" "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg=="
"resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz"
"version" "7.22.15"
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.15"
"@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.20", "@babel/helper-environment-visitor@^7.22.5":
"integrity" "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz"
"version" "7.22.20"
"@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0":
"integrity" "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz"
"version" "7.23.0"
dependencies:
"@babel/template" "^7.22.15"
"@babel/types" "^7.23.0"
"@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.15":
"integrity" "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA=="
"resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz"
"version" "7.23.0"
dependencies:
"@babel/types" "^7.23.0"
"@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5":
"integrity" "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz"
"version" "7.22.15"
dependencies:
"@babel/types" "^7.22.15"
"@babel/helper-module-transforms@^7.23.3":
"integrity" "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/helper-environment-visitor" "^7.22.20"
"@babel/helper-module-imports" "^7.22.15"
"@babel/helper-simple-access" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/helper-validator-identifier" "^7.22.20"
"@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.20", "@babel/helper-replace-supers@^7.22.9":
"integrity" "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz"
"version" "7.22.20"
dependencies:
"@babel/helper-environment-visitor" "^7.22.20"
"@babel/helper-member-expression-to-functions" "^7.22.15"
"@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.20":
"integrity" "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz"
"version" "7.22.20"
"@babel/helper-validator-option@^7.22.15":
"integrity" "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz"
"version" "7.22.15"
"@babel/helpers@^7.23.2":
"integrity" "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.2.tgz"
"version" "7.23.2"
dependencies:
"@babel/template" "^7.22.15"
"@babel/traverse" "^7.23.2"
"@babel/types" "^7.23.0"
"@babel/highlight@^7.22.13":
"integrity" "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz"
"version" "7.22.20"
dependencies:
"@babel/helper-validator-identifier" "^7.22.20"
"chalk" "^2.4.2"
"js-tokens" "^4.0.0"
"@babel/parser@^7.22.14", "@babel/parser@^7.22.15", "@babel/parser@^7.22.7", "@babel/parser@^7.23.0", "@babel/parser@^7.23.3":
"integrity" "sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.23.3.tgz"
"version" "7.23.3"
"@babel/plugin-proposal-decorators@^7.23.0":
"integrity" "sha512-u8SwzOcP0DYSsa++nHd/9exlHb0NAlHCb890qtZZbSwPX2bFv8LBEztxwN7Xg/dS8oAFFidhrI9PBcLBJSkGRQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.22.15"
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/helper-replace-supers" "^7.22.20"
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/plugin-syntax-decorators" "^7.23.3"
"@babel/plugin-syntax-decorators@^7.23.3":
"integrity" "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-import-attributes@^7.22.5":
"integrity" "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@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-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-typescript@^7.23.3":
"integrity" "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-typescript@^7.22.10", "@babel/plugin-transform-typescript@^7.22.15":
"integrity" "sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/helper-annotate-as-pure" "^7.22.5"
"@babel/helper-create-class-features-plugin" "^7.22.15"
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-typescript" "^7.23.3"
"@babel/standalone@^7.22.9":
"integrity" "sha512-ZfB6wyLVqr9ANl1F0l/0aqoNUE1/kcWlQHmk0wF9OTEKDK1whkXYLruRMt53zY556yS2+84EsOpr1hpjZISTRg=="
"resolved" "https://registry.npmjs.org/@babel/standalone/-/standalone-7.23.3.tgz"
"version" "7.23.3"
"@babel/template@^7.22.15", "@babel/template@^7.22.5":
"integrity" "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz"
"version" "7.22.15"
dependencies:
"@babel/code-frame" "^7.22.13"
"@babel/parser" "^7.22.15"
"@babel/types" "^7.22.15"
"@babel/traverse@^7.22.5", "@babel/traverse@^7.23.2", "@babel/traverse@^7.23.3":
"integrity" "sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/code-frame" "^7.22.13"
"@babel/generator" "^7.23.3"
"@babel/helper-environment-visitor" "^7.22.20"
"@babel/helper-function-name" "^7.23.0"
"@babel/helper-hoist-variables" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/parser" "^7.23.3"
"@babel/types" "^7.23.3"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.22.15", "@babel/types@^7.22.17", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.3":
"integrity" "sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.23.3.tgz"
"version" "7.23.3"
dependencies:
"@babel/helper-string-parser" "^7.22.5"
"@babel/helper-validator-identifier" "^7.22.20"
"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.5":
"integrity" "sha512-v/5ODKNBMfBl0us/WQjlfsvSlYxfZLhNMVIsuCPib2ulTwGKYbKJbwqw671+qH9Y4wvWVnu7LBChvml/wBKjFg=="
"resolved" "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.5.tgz"
"version" "1.0.5"
"@csstools/css-parser-algorithms@^2.3.2":
"integrity" "sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA=="
"resolved" "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.2.tgz"
"version" "2.3.2"
"@csstools/css-tokenizer@^2.2.1":
"integrity" "sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg=="
"resolved" "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.1.tgz"
"version" "2.2.1"
"@csstools/selector-specificity@^3.0.0":
"integrity" "sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g=="
"resolved" "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.0.tgz"
"version" "3.0.0"
"@egoist/tailwindcss-icons@^1.4.0":
"integrity" "sha512-ERM7F8culmN3CADiqxnvVN4GnCDVaexbn+UG/w6NiRnI85JX/St9Ru1d+/1R80JHYBx4frdLQl9h01b0TwAZ+Q=="
"resolved" "https://registry.npmjs.org/@egoist/tailwindcss-icons/-/tailwindcss-icons-1.4.0.tgz"
"version" "1.4.0"
dependencies:
"@iconify/utils" "^2.1.4"
"@esbuild/[email protected]":
"integrity" "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w=="
"resolved" "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz"
"version" "0.18.20"
"@esbuild/[email protected]":
"integrity" "sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A=="
"resolved" "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.5.tgz"
"version" "0.19.5"
"@eslint-community/eslint-utils@^4.2.0":
"integrity" "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA=="
"resolved" "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"eslint-visitor-keys" "^3.3.0"
"@eslint-community/regexpp@^4.6.1":
"integrity" "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA=="
"resolved" "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz"
"version" "4.10.0"
"@eslint/eslintrc@^2.1.3":
"integrity" "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz"
"version" "2.1.3"
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"
"@eslint/[email protected]":
"integrity" "sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ=="
"resolved" "https://registry.npmjs.org/@eslint/js/-/js-8.54.0.tgz"
"version" "8.54.0"
"@fastify/busboy@^2.0.0":
"integrity" "sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ=="
"resolved" "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.0.0.tgz"
"version" "2.0.0"
"@flekschas/utils@^0.31.0":
"integrity" "sha512-ejl+9LrhyTbKjokbTHFqlwBZjqMBttD3R4M5t6p6sKcLRBKVn4gDporO76b/yIGQ0esN90G6/+uGNgjpf/AzXA=="
"resolved" "https://registry.npmjs.org/@flekschas/utils/-/utils-0.31.0.tgz"
"version" "0.31.0"
"@headlessui/tailwindcss@^0.2.0":
"integrity" "sha512-fpL830Fln1SykOCboExsWr3JIVeQKieLJ3XytLe/tt1A0XzqUthOftDmjcCYLW62w7mQI7wXcoPXr3tZ9QfGxw=="
"resolved" "https://registry.npmjs.org/@headlessui/tailwindcss/-/tailwindcss-0.2.0.tgz"
"version" "0.2.0"
"@headlessui/vue@^1.7.16":
"integrity" "sha512-nKT+nf/q6x198SsyK54mSszaQl/z+QxtASmgMEJtpxSX2Q0OPJX0upS/9daDyiECpeAsvjkoOrm2O/6PyBQ+Qg=="
"resolved" "https://registry.npmjs.org/@headlessui/vue/-/vue-1.7.16.tgz"
"version" "1.7.16"
"@humanwhocodes/config-array@^0.11.13":
"integrity" "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz"
"version" "0.11.13"
dependencies:
"@humanwhocodes/object-schema" "^2.0.1"
"debug" "^4.1.1"
"minimatch" "^3.0.5"
"@humanwhocodes/module-importer@^1.0.1":
"integrity" "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
"version" "1.0.1"
"@humanwhocodes/object-schema@^2.0.1":
"integrity" "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz"
"version" "2.0.1"
"@iconify-json/heroicons@^1.1.13":
"integrity" "sha512-WsRTTc0qGDreszIgL9uVpPSnRlM2bXaKmK3E0zpQZloUZQX3FokDqGFgc0UbJ+8np/ta571Ty+8n78mlMhEU8w=="
"resolved" "https://registry.npmjs.org/@iconify-json/heroicons/-/heroicons-1.1.13.tgz"
"version" "1.1.13"
dependencies:
"@iconify/types" "*"
"@iconify/types@*", "@iconify/types@^2.0.0":
"integrity" "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg=="
"resolved" "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz"
"version" "2.0.0"
"@iconify/utils@^2.1.4":
"integrity" "sha512-M/w3PkN8zQYXi8N6qK/KhnYMfEbbb6Sk8RZVn8g+Pmmu5ybw177RpsaGwpziyHeUsu4etrexYSWq3rwnIqzYCg=="
"resolved" "https://registry.npmjs.org/@iconify/utils/-/utils-2.1.11.tgz"
"version" "2.1.11"
dependencies:
"@antfu/install-pkg" "^0.1.1"
"@antfu/utils" "^0.7.5"
"@iconify/types" "^2.0.0"
"debug" "^4.3.4"
"kolorist" "^1.8.0"
"local-pkg" "^0.4.3"
"@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-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz"
"version" "3.1.1"
"@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.14", "@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/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz"
"version" "0.3.20"
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
"@koa/router@^12.0.1":
"integrity" "sha512-ribfPYfHb+Uw3b27Eiw6NPqjhIhTpVFzEWLwyc/1Xp+DCdwRRyIlAUODX+9bPARF6aQtUu1+/PHzdNvRzcs/+Q=="
"resolved" "https://registry.npmjs.org/@koa/router/-/router-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"debug" "^4.3.4"
"http-errors" "^2.0.0"
"koa-compose" "^4.1.0"
"methods" "^1.1.2"
"path-to-regexp" "^6.2.1"
"@kwsites/file-exists@^1.1.1":
"integrity" "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw=="
"resolved" "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"debug" "^4.1.1"
"@kwsites/promise-deferred@^1.1.1":
"integrity" "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw=="
"resolved" "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz"
"version" "1.1.1"
"@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"
"@netlify/functions@^2.3.0":
"integrity" "sha512-dIqhdj5u4Lu/8qbYwtYpn8NfvIyPHbSTV2lAP4ocL+iwC9As06AXT0wa/xOpO2vRWJa0IMxdZaqCPnkyHlHiyg=="
"resolved" "https://registry.npmjs.org/@netlify/functions/-/functions-2.4.0.tgz"
"version" "2.4.0"
dependencies:
"@netlify/serverless-functions-api" "1.11.0"
"is-promise" "^4.0.0"
"@netlify/node-cookies@^0.1.0":
"integrity" "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g=="
"resolved" "https://registry.npmjs.org/@netlify/node-cookies/-/node-cookies-0.1.0.tgz"
"version" "0.1.0"
"@netlify/[email protected]":
"integrity" "sha512-3splAsr2CekL7VTwgo6yTvzD2+f269/s+TJafYazonqMNNo31yzvFxD5HpLtni4DNE1ppymVKZ4X/rLN3yl0vQ=="
"resolved" "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"@netlify/node-cookies" "^0.1.0"
"urlpattern-polyfill" "8.0.2"
"@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", "@nodelib/fs.walk@^1.2.8":
"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/agent@^2.0.0":
"integrity" "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q=="
"resolved" "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"agent-base" "^7.1.0"
"http-proxy-agent" "^7.0.0"
"https-proxy-agent" "^7.0.1"
"lru-cache" "^10.0.1"
"socks-proxy-agent" "^8.0.1"
"@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@^5.0.0":
"integrity" "sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw=="
"resolved" "https://registry.npmjs.org/@npmcli/git/-/git-5.0.3.tgz"
"version" "5.0.3"
dependencies:
"@npmcli/promise-spawn" "^7.0.0"
"lru-cache" "^10.0.1"
"npm-pick-manifest" "^9.0.0"
"proc-log" "^3.0.0"
"promise-inflight" "^1.0.1"
"promise-retry" "^2.0.1"
"semver" "^7.3.5"
"which" "^4.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@^7.0.0":
"integrity" "sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ=="
"resolved" "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.0.tgz"
"version" "7.0.0"
dependencies:
"which" "^4.0.0"
"@npmcli/run-script@^7.0.0":
"integrity" "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w=="
"resolved" "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.2.tgz"
"version" "7.0.2"
dependencies:
"@npmcli/node-gyp" "^3.0.0"
"@npmcli/promise-spawn" "^7.0.0"
"node-gyp" "^10.0.0"
"read-package-json-fast" "^3.0.0"
"which" "^4.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/[email protected]":
"integrity" "sha512-tR+9mqic2O76LWkmdH0q5xPEnrOo8DmHvKyXA99be7NQfkjf47roWfa+gvQbksqwNw3SZVw2fq9Lotk4vZj4RA=="
"resolved" "https://registry.npmjs.org/@nuxt/devtools-kit/-/devtools-kit-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@nuxt/kit" "^3.8.1"
"@nuxt/schema" "^3.8.1"
"execa" "^7.2.0"
"@nuxt/[email protected]":
"integrity" "sha512-p44qhWWKR4aEy1cRHGkHQyNJ93rfpDUPhQoqrMBmGQNBWJxLCbZCrdhOWJi9kOlu2qSBbvz/4mOHEXQ2G8APsA=="
"resolved" "https://registry.npmjs.org/@nuxt/devtools-wizard/-/devtools-wizard-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"consola" "^3.2.3"
"diff" "^5.1.0"
"execa" "^7.2.0"
"global-directory" "^4.0.1"
"magicast" "^0.3.1"
"pathe" "^1.1.1"
"pkg-types" "^1.0.3"
"prompts" "^2.4.2"
"rc9" "^2.1.1"
"semver" "^7.5.4"
"@nuxt/devtools@^1.0.0":
"integrity" "sha512-VwuX4g0QmKBE3GyDqVkLIt3xOz/aTFZbD1SxyT/ani4FfOAec2ksjbF4CQmGonfjL2lN1glvoew83zj4P5vi/g=="
"resolved" "https://registry.npmjs.org/@nuxt/devtools/-/devtools-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@antfu/utils" "^0.7.6"
"@nuxt/devtools-kit" "1.0.1"
"@nuxt/devtools-wizard" "1.0.1"
"@nuxt/kit" "^3.8.1"
"birpc" "^0.2.14"
"consola" "^3.2.3"
"destr" "^2.0.2"
"error-stack-parser-es" "^0.1.1"
"execa" "^7.2.0"
"fast-glob" "^3.3.2"
"flatted" "^3.2.9"
"get-port-please" "^3.1.1"
"h3" "^1.8.2"
"hookable" "^5.5.3"
"image-meta" "^0.2.0"
"is-installed-globally" "^1.0.0"
"launch-editor" "^2.6.1"
"local-pkg" "^0.5.0"
"magicast" "^0.3.1"
"nitropack" "^2.7.2"
"nypm" "^0.3.3"
"ofetch" "^1.3.3"
"ohash" "^1.1.3"
"pacote" "^17.0.4"
"pathe" "^1.1.1"
"perfect-debounce" "^1.0.0"
"pkg-types" "^1.0.3"
"rc9" "^2.1.1"
"scule" "^1.0.0"
"semver" "^7.5.4"
"simple-git" "^3.20.0"
"sirv" "^2.0.3"
"unimport" "^3.5.0"
"vite-plugin-inspect" "^0.7.42"
"vite-plugin-vue-inspector" "^4.0.0"
"which" "^3.0.1"
"ws" "^8.14.2"
"@nuxt/kit@^3.2.0", "@nuxt/kit@^3.5.1", "@nuxt/kit@^3.5.3", "@nuxt/kit@^3.6.5", "@nuxt/kit@^3.7.4", "@nuxt/kit@^3.8.0", "@nuxt/kit@^3.8.1", "@nuxt/[email protected]":
"integrity" "sha512-DrhG1Z85iH68QOTkgfb0HVfM2g7+CfcMWrFWMDwck9ofyM2RXQUZyfmvMedwBnui1AjjpgpLO9078yZM+RqNUg=="
"resolved" "https://registry.npmjs.org/@nuxt/kit/-/kit-3.8.1.tgz"
"version" "3.8.1"
dependencies:
"@nuxt/schema" "3.8.1"
"c12" "^1.5.1"
"consola" "^3.2.3"
"defu" "^6.1.3"
"globby" "^13.2.2"
"hash-sum" "^2.0.0"
"ignore" "^5.2.4"
"jiti" "^1.21.0"
"knitwork" "^1.0.0"
"mlly" "^1.4.2"
"pathe" "^1.1.1"
"pkg-types" "^1.0.3"
"scule" "^1.0.0"
"semver" "^7.5.4"
"ufo" "^1.3.1"
"unctx" "^2.3.1"
"unimport" "^3.4.0"
"untyped" "^1.4.0"
"@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.8.1", "@nuxt/[email protected]":
"integrity" "sha512-fSaWRcI/2mUskfTZTGSnH6Ny0x05CRzylbVn6WFV0d6UEKIVy42Qd6n+h7yoFfp4cq4nji6u16PT4SqS1DEhsw=="
"resolved" "https://registry.npmjs.org/@nuxt/schema/-/schema-3.8.1.tgz"
"version" "3.8.1"
dependencies:
"@nuxt/ui-templates" "^1.3.1"
"consola" "^3.2.3"
"defu" "^6.1.3"
"hookable" "^5.5.3"
"pathe" "^1.1.1"
"pkg-types" "^1.0.3"
"std-env" "^3.4.3"
"ufo" "^1.3.1"
"unimport" "^3.4.0"
"untyped" "^1.4.0"
"@nuxt/telemetry@^2.5.2":
"integrity" "sha512-kZ+rWq/5MZonMhp8KGFI5zMaR2VsiWpnlkOLJIuIX2WoJl0DkHvtxCtuFq2erAqMVruWLpKU+tgMC+1cno/QmA=="
"resolved" "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.5.2.tgz"
"version" "2.5.2"
dependencies:
"@nuxt/kit" "^3.7.4"
"ci-info" "^3.8.0"
"consola" "^3.2.3"
"create-require" "^1.1.1"
"defu" "^6.1.2"
"destr" "^2.0.1"
"dotenv" "^16.3.1"
"git-url-parse" "^13.1.0"
"is-docker" "^3.0.0"
"jiti" "^1.20.0"
"mri" "^1.2.0"
"nanoid" "^4.0.2"
"ofetch" "^1.3.3"
"parse-git-config" "^3.0.0"
"pathe" "^1.1.1"
"rc9" "^2.1.1"
"std-env" "^3.4.3"
"@nuxt/ui-templates@^1.3.1":
"integrity" "sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA=="
"resolved" "https://registry.npmjs.org/@nuxt/ui-templates/-/ui-templates-1.3.1.tgz"
"version" "1.3.1"
"@nuxt/ui@^2.10.0":
"integrity" "sha512-pMv0BWWkeUOAJ+YkXr6xirbg2iHXKerIk9hYS7blp0aBehBTBq1gxHdtl+iA2hq9+LFahO6WyA7SJnw3h0thvQ=="
"resolved" "https://registry.npmjs.org/@nuxt/ui/-/ui-2.10.0.tgz"
"version" "2.10.0"
dependencies:
"@egoist/tailwindcss-icons" "^1.4.0"
"@headlessui/tailwindcss" "^0.2.0"
"@headlessui/vue" "^1.7.16"
"@iconify-json/heroicons" "^1.1.13"
"@nuxt/kit" "^3.8.0"
"@nuxtjs/color-mode" "^3.3.0"
"@nuxtjs/tailwindcss" "^6.8.1"
"@popperjs/core" "^2.11.8"
"@tailwindcss/aspect-ratio" "^0.4.2"
"@tailwindcss/container-queries" "^0.1.1"
"@tailwindcss/forms" "^0.5.6"
"@tailwindcss/typography" "^0.5.10"
"@vueuse/core" "^10.5.0"
"@vueuse/integrations" "^10.5.0"
"@vueuse/math" "^10.5.0"
"defu" "^6.1.3"
"fuse.js" "^6.6.2"
"ohash" "^1.1.3"
"pathe" "^1.1.1"
"scule" "^1.0.0"
"tailwind-merge" "^1.14.0"
"tailwindcss" "^3.3.5"
"@nuxt/[email protected]":
"integrity" "sha512-Ot/twGONxj22T9U4bxp771ibKVFlZxIiYDHY/e6mZsE4Blc0efKo6MzPPPo0W4/tXQbtKKEq41uINN3dMI3mag=="
"resolved" "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.8.1.tgz"
"version" "3.8.1"
dependencies:
"@nuxt/kit" "3.8.1"
"@rollup/plugin-replace" "^5.0.5"
"@vitejs/plugin-vue" "^4.4.0"
"@vitejs/plugin-vue-jsx" "^3.0.2"
"autoprefixer" "^10.4.16"
"clear" "^0.1.0"
"consola" "^3.2.3"
"cssnano" "^6.0.1"
"defu" "^6.1.3"
"esbuild" "^0.19.5"
"escape-string-regexp" "^5.0.0"
"estree-walker" "^3.0.3"
"externality" "^1.0.2"
"fs-extra" "^11.1.1"
"get-port-please" "^3.1.1"
"h3" "^1.8.2"
"knitwork" "^1.0.0"
"magic-string" "^0.30.5"
"mlly" "^1.4.2"
"ohash" "^1.1.3"
"pathe" "^1.1.1"
"perfect-debounce" "^1.0.0"
"pkg-types" "^1.0.3"
"postcss" "^8.4.31"
"rollup-plugin-visualizer" "^5.9.2"
"std-env" "^3.4.3"
"strip-literal" "^1.3.0"
"ufo" "^1.3.1"
"unplugin" "^1.5.0"
"vite" "^4.5.0"
"vite-node" "^0.33.0"
"vite-plugin-checker" "^0.6.2"
"vue-bundle-renderer" "^2.0.0"
"@nuxtjs/color-mode@^3.3.0":
"integrity" "sha512-YVFNmTISke1eL7uk5p9I1suOsM222FxrqKoF13HS4x94OKCWwPLLeTCEzHZ8orzKnaFUbCXpuL4pRv8gvW+0Kw=="
"resolved" "https://registry.npmjs.org/@nuxtjs/color-mode/-/color-mode-3.3.0.tgz"
"version" "3.3.0"
dependencies:
"@nuxt/kit" "^3.5.3"
"lodash.template" "^4.5.0"
"pathe" "^1.1.1"
"@nuxtjs/google-fonts@^3.0.2":
"integrity" "sha512-9DY0NcBnx/I6+3Lr7NeB64k5A7GbqCN1pqVgU9ld00NEXSpDUht2+lG8mcC5UnmpTi8KCdCJckDbD/bqW3ncYg=="
"resolved" "https://registry.npmjs.org/@nuxtjs/google-fonts/-/google-fonts-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"@nuxt/kit" "^3.6.5"
"google-fonts-helper" "^3.3.1"
"pathe" "^1.1.1"
"@nuxtjs/supabase@^1.0.1":
"integrity" "sha512-DNYp5s946kU1f9QvKry8bBJh22hWgrf8LY/nFxkFpMqnHLWA4VwNOuoFLGL8+gtkjEW/NAJyJ/pp1O8GnyDRaQ=="
"resolved" "https://registry.npmjs.org/@nuxtjs/supabase/-/supabase-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"@nuxt/kit" "^3.7.4"
"@supabase/supabase-js" "2.38.0"
"defu" "^6.1.2"
"pathe" "^1.1.1"
"@nuxtjs/tailwindcss@^6.8.1":
"integrity" "sha512-T3B3P7RgJ/WTW3plHziLWqWbMzCWctUHpjqhW1WCXB/U3FOQxGH5dG4uEOmQkA6Gj4cbTNStIU/cRxpZhbBMhg=="
"resolved" "https://registry.npmjs.org/@nuxtjs/tailwindcss/-/tailwindcss-6.9.4.tgz"
"version" "6.9.4"
dependencies:
"@nuxt/kit" "^3.8.0"
"@nuxt/postcss8" "^1.1.3"
"autoprefixer" "^10.4.16"
"chokidar" "^3.5.3"
"clear-module" "^4.1.2"
"colorette" "^2.0.20"
"cookie-es" "^1.0.0"
"defu" "^6.1.3"
"destr" "^2.0.2"
"h3" "^1.8.2"
"iron-webcrypto" "^1.0.0"
"micromatch" "^4.0.5"
"pathe" "^1.1.1"
"postcss" "^8.4.31"
"postcss-custom-properties" "^13.3.2"
"postcss-nesting" "^12.0.1"
"radix3" "^1.1.0"
"tailwind-config-viewer" "^1.7.3"
"tailwindcss" "~3.3.5"
"ufo" "^1.3.1"
"uncrypto" "^0.1.3"
"@parcel/[email protected]":
"integrity" "sha512-P7Wo91lKSeSgMTtG7CnBS6WrA5otr1K7shhSjKHNePVmfBHDoAOHYRXgUmhiNfbcGk0uMCHVcdbfxtuiZCHVow=="
"resolved" "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.3.0.tgz"
"version" "2.3.0"
"@parcel/[email protected]":
"integrity" "sha512-+kiRE1JIq8QdxzwoYY+wzBs9YbJ34guBweTK8nlzLKimn5EQ2b2FSC+tAOpq302BuIMjyuUGvBiUhEcLIGMQ5g=="
"resolved" "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.3.0.tgz"
"version" "2.3.0"
"@parcel/[email protected]":
"integrity" "sha512-ejBAX8H0ZGsD8lSICDNyMbSEtPMWgDL0WFCt/0z7hyf5v8Imz4rAM8xY379mBsECkq/Wdqa5WEDLqtjZ+6NxfA=="
"resolved" "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"is-glob" "^4.0.3"
"micromatch" "^4.0.5"
"napi-wasm" "^1.1.0"
"@parcel/watcher@^2.1.0", "@parcel/watcher@^2.3.0":
"integrity" "sha512-pW7QaFiL11O0BphO+bq3MgqeX/INAk9jgBldVDYjlQPO4VddoZnF22TcF9onMhnLVHuNqBJeRf+Fj7eezi/+rQ=="
"resolved" "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"detect-libc" "^1.0.3"
"is-glob" "^4.0.3"
"micromatch" "^4.0.5"
"node-addon-api" "^7.0.0"
optionalDependencies:
"@parcel/watcher-android-arm64" "2.3.0"
"@parcel/watcher-darwin-arm64" "2.3.0"
"@parcel/watcher-darwin-x64" "2.3.0"
"@parcel/watcher-freebsd-x64" "2.3.0"
"@parcel/watcher-linux-arm-glibc" "2.3.0"
"@parcel/watcher-linux-arm64-glibc" "2.3.0"
"@parcel/watcher-linux-arm64-musl" "2.3.0"
"@parcel/watcher-linux-x64-glibc" "2.3.0"
"@parcel/watcher-linux-x64-musl" "2.3.0"
"@parcel/watcher-win32-arm64" "2.3.0"
"@parcel/watcher-win32-ia32" "2.3.0"
"@parcel/watcher-win32-x64" "2.3.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-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg=="
"resolved" "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.23.tgz"
"version" "1.0.0-next.23"