-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
3832 lines (3333 loc) · 157 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"
"@babel/runtime@^7.20.13", "@babel/runtime@^7.23.2":
"integrity" "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz"
"version" "7.23.9"
dependencies:
"regenerator-runtime" "^0.14.0"
"@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.4":
"integrity" "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz"
"version" "2.1.4"
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/js@8.56.0":
"integrity" "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A=="
"resolved" "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz"
"version" "8.56.0"
"@floating-ui/core@^1.6.0":
"integrity" "sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA=="
"resolved" "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.4.tgz"
"version" "1.6.4"
dependencies:
"@floating-ui/utils" "^0.2.4"
"@floating-ui/dom@^1.0.0":
"integrity" "sha512-wmVfPG5o2xnKDU4jx/m4w5qva9FWHcnZ8BvzEe90D/RpwsJaTAVYPEPdQ8sbr/N8zZTAHlZUTQdqg8ZUbzHmng=="
"resolved" "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.7.tgz"
"version" "1.6.7"
dependencies:
"@floating-ui/core" "^1.6.0"
"@floating-ui/utils" "^0.2.4"
"@floating-ui/react-dom@^2.1.1":
"integrity" "sha512-4h84MJt3CHrtG18mGsXuLCHMrug49d7DFkU0RMIyshRveBeyV2hmV/pDaF2Uxtu8kgq5r46llp5E5FQiR0K2Yg=="
"resolved" "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.1.tgz"
"version" "2.1.1"
dependencies:
"@floating-ui/dom" "^1.0.0"
"@floating-ui/react@^0.26.9":
"integrity" "sha512-Jk6zITdjjIvjO/VdQFvpRaD3qPwOHH6AoDHxjhpy+oK4KFgaSP871HYWUAPdnLmx1gQ+w/pB312co3tVml+BXA=="
"resolved" "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.19.tgz"
"version" "0.26.19"
dependencies:
"@floating-ui/react-dom" "^2.1.1"
"@floating-ui/utils" "^0.2.4"
"tabbable" "^6.0.0"
"@floating-ui/utils@^0.2.4":
"integrity" "sha512-dWO2pw8hhi+WrXq1YJy2yCuWoL20PddgGaqTgVe4cOS9Q6qklXCiA1tJEqX6BEwRNSCP84/afac9hd4MS+zEUA=="
"resolved" "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.4.tgz"
"version" "0.2.4"
"@humanwhocodes/config-array@^0.11.13":
"integrity" "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz"
"version" "0.11.14"
dependencies:
"@humanwhocodes/object-schema" "^2.0.2"
"debug" "^4.3.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.2":
"integrity" "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz"
"version" "2.0.2"
"@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"
"@mantine/core@^7.11.1":
"integrity" "sha512-qEwe5ijBe3MWOg4yerJ+HXMugIBtS1Bbqbdnfrg2cuHXr+2paqu8SQMzldtzqfiLsRajOtkokOkY67jUJOacCA=="
"resolved" "https://registry.npmjs.org/@mantine/core/-/core-7.11.1.tgz"
"version" "7.11.1"
dependencies:
"@floating-ui/react" "^0.26.9"
"clsx" "^2.1.1"
"react-number-format" "^5.3.1"
"react-remove-scroll" "^2.5.7"
"react-textarea-autosize" "8.5.3"
"type-fest" "^4.12.0"
"@mantine/hooks@^7.11.1", "@mantine/hooks@7.11.1":
"integrity" "sha512-28WS/U6QL4jaIHf1uFpny5Tglu9MoyyM4bWLmIcAQHtOD3YHpuNvs9OTWLqKAQs6VN+kydlxvjvT+w1LBWEpQg=="
"resolved" "https://registry.npmjs.org/@mantine/hooks/-/hooks-7.11.1.tgz"
"version" "7.11.1"
"@mdx-js/mdx@^2.2.1":
"integrity" "sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA=="
"resolved" "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"@types/estree-jsx" "^1.0.0"
"@types/mdx" "^2.0.0"
"estree-util-build-jsx" "^2.0.0"
"estree-util-is-identifier-name" "^2.0.0"
"estree-util-to-js" "^1.1.0"
"estree-walker" "^3.0.0"
"hast-util-to-estree" "^2.0.0"
"markdown-extensions" "^1.0.0"
"periscopic" "^3.0.0"
"remark-mdx" "^2.0.0"
"remark-parse" "^10.0.0"
"remark-rehype" "^10.0.0"
"unified" "^10.0.0"
"unist-util-position-from-estree" "^1.0.0"
"unist-util-stringify-position" "^3.0.0"
"unist-util-visit" "^4.0.0"
"vfile" "^5.0.0"
"@mdx-js/react@^2.2.1":
"integrity" "sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g=="
"resolved" "https://registry.npmjs.org/@mdx-js/react/-/react-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"@types/mdx" "^2.0.0"
"@types/react" ">=16"
"@next/env@14.1.0":
"integrity" "sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw=="
"resolved" "https://registry.npmjs.org/@next/env/-/env-14.1.0.tgz"
"version" "14.1.0"
"@next/eslint-plugin-next@14.1.0":
"integrity" "sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q=="
"resolved" "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.0.tgz"
"version" "14.1.0"
dependencies:
"glob" "10.3.10"
"@next/swc-linux-x64-gnu@14.1.0":
"integrity" "sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ=="
"resolved" "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.0.tgz"
"version" "14.1.0"
"@next/swc-linux-x64-musl@14.1.0":
"integrity" "sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg=="
"resolved" "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.0.tgz"
"version" "14.1.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", "@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"
"@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"
"@rushstack/eslint-patch@^1.3.3":
"integrity" "sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA=="
"resolved" "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz"
"version" "1.7.2"
"@shikijs/core@1.2.0":
"integrity" "sha512-OlFvx+nyr5C8zpcMBnSGir0YPD6K11uYhouqhNmm1qLiis4GA7SsGtu07r9gKS9omks8RtQqHrJL4S+lqWK01A=="
"resolved" "https://registry.npmjs.org/@shikijs/core/-/core-1.2.0.tgz"
"version" "1.2.0"
"@swc/helpers@0.5.2":
"integrity" "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw=="
"resolved" "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz"
"version" "0.5.2"
dependencies:
"tslib" "^2.4.0"
"@tabler/icons-react@^2.47.0":
"integrity" "sha512-iqly2FvCF/qUbgmvS8E40rVeYY7laltc5GUjRxQj59DuX0x/6CpKHTXt86YlI2whg4czvd/c8Ce8YR08uEku0g=="
"resolved" "https://registry.npmjs.org/@tabler/icons-react/-/icons-react-2.47.0.tgz"
"version" "2.47.0"
dependencies:
"@tabler/icons" "2.47.0"
"prop-types" "^15.7.2"
"@tabler/icons@2.47.0":
"integrity" "sha512-4w5evLh+7FUUiA1GucvGj2ReX2TvOjEr4ejXdwL/bsjoSkof6r1gQmzqI+VHrE2CpJpB3al7bCTulOkFa/RcyA=="
"resolved" "https://registry.npmjs.org/@tabler/icons/-/icons-2.47.0.tgz"
"version" "2.47.0"
"@types/acorn@^4.0.0":
"integrity" "sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ=="
"resolved" "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz"
"version" "4.0.6"
dependencies:
"@types/estree" "*"
"@types/debug@^4.0.0":
"integrity" "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ=="
"resolved" "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz"
"version" "4.1.12"
dependencies:
"@types/ms" "*"
"@types/estree-jsx@^1.0.0":
"integrity" "sha512-5idy3hvI9lAMqsyilBM+N+boaCf1MgoefbDxN6KEO5aK17TOHwFAYT9sjxzeKAiIWRUBgLxmZ9mPcnzZXtTcRQ=="
"resolved" "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.4.tgz"
"version" "1.0.4"
dependencies:
"@types/estree" "*"
"@types/estree@*", "@types/estree@^1.0.0":
"integrity" "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw=="
"resolved" "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz"
"version" "1.0.5"
"@types/hast@^2.0.0":
"integrity" "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw=="
"resolved" "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz"
"version" "2.3.10"
dependencies:
"@types/unist" "^2"
"@types/hast@^3.0.0", "@types/hast@^3.0.4":
"integrity" "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ=="
"resolved" "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz"
"version" "3.0.4"
dependencies:
"@types/unist" "*"
"@types/js-yaml@^4.0.0":
"integrity" "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg=="
"resolved" "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz"
"version" "4.0.9"
"@types/json5@^0.0.29":
"integrity" "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
"resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/mdast@^3.0.0":
"integrity" "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ=="
"resolved" "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz"
"version" "3.0.15"
dependencies:
"@types/unist" "^2"
"@types/mdx@^2.0.0":
"integrity" "sha512-HM5bwOaIQJIQbAYfax35HCKxx7a3KrK3nBtIqJgSOitivTD1y3oW9P3rxY9RkXYPUk7y/AjAohfHKmFpGE79zw=="
"resolved" "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.11.tgz"
"version" "2.0.11"
"@types/ms@*":
"integrity" "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g=="
"resolved" "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz"
"version" "0.7.34"
"@types/node@^20":
"integrity" "sha512-ABT5VWnnYneSBcNWYSCuR05M826RoMyMSGiFivXGx6ZUIsXb9vn4643IEwkg2zbEOSgAiSogtapN2fgc4mAPlw=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-20.11.18.tgz"
"version" "20.11.18"
dependencies:
"undici-types" "~5.26.4"
"@types/prop-types@*":
"integrity" "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng=="
"resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz"
"version" "15.7.11"
"@types/react-dom@^18":
"integrity" "sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA=="
"resolved" "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.19.tgz"
"version" "18.2.19"
dependencies:
"@types/react" "*"
"@types/react@*", "@types/react@^16.8.0 || ^17.0.0 || ^18.0.0", "@types/react@^16.9.0 || ^17.0.0 || ^18.0.0", "@types/react@^18", "@types/react@>=16":
"integrity" "sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-18.2.55.tgz"
"version" "18.2.55"
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
"csstype" "^3.0.2"
"@types/scheduler@*":
"integrity" "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A=="
"resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz"
"version" "0.16.8"
"@types/unist@*":
"integrity" "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ=="
"resolved" "https://registry.npmjs.org/@types/unist/-/unist-3.0.2.tgz"
"version" "3.0.2"
"@types/unist@^2", "@types/unist@^2.0.0":
"integrity" "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA=="
"resolved" "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz"
"version" "2.0.10"
"@types/unist@^3.0.0":
"integrity" "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ=="
"resolved" "https://registry.npmjs.org/@types/unist/-/unist-3.0.2.tgz"
"version" "3.0.2"
"@typescript-eslint/parser@^5.4.2 || ^6.0.0":
"integrity" "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz"
"version" "6.21.0"
dependencies:
"@typescript-eslint/scope-manager" "6.21.0"
"@typescript-eslint/types" "6.21.0"
"@typescript-eslint/typescript-estree" "6.21.0"
"@typescript-eslint/visitor-keys" "6.21.0"
"debug" "^4.3.4"
"@typescript-eslint/scope-manager@6.21.0":
"integrity" "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz"
"version" "6.21.0"
dependencies:
"@typescript-eslint/types" "6.21.0"
"@typescript-eslint/visitor-keys" "6.21.0"
"@typescript-eslint/types@6.21.0":
"integrity" "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz"
"version" "6.21.0"
"@typescript-eslint/typescript-estree@6.21.0":
"integrity" "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz"
"version" "6.21.0"
dependencies:
"@typescript-eslint/types" "6.21.0"
"@typescript-eslint/visitor-keys" "6.21.0"
"debug" "^4.3.4"
"globby" "^11.1.0"
"is-glob" "^4.0.3"
"minimatch" "9.0.3"
"semver" "^7.5.4"
"ts-api-utils" "^1.0.1"
"@typescript-eslint/visitor-keys@6.21.0":
"integrity" "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz"
"version" "6.21.0"
dependencies:
"@typescript-eslint/types" "6.21.0"
"eslint-visitor-keys" "^3.4.1"
"@ungap/structured-clone@^1.2.0":
"integrity" "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ=="
"resolved" "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz"
"version" "1.2.0"
"acorn-jsx@^5.0.0", "acorn-jsx@^5.3.2":
"integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
"version" "5.3.2"
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^8.0.0", "acorn@^8.9.0":
"integrity" "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz"
"version" "8.11.3"
"ajv@^6.12.4":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-regex@^6.0.1":
"integrity" "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz"
"version" "6.0.1"
"ansi-styles@^4.0.0", "ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansi-styles@^6.1.0":
"integrity" "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz"
"version" "6.2.1"
"argparse@^1.0.7":
"integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"argparse@^2.0.1":
"integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
"version" "2.0.1"
"aria-query@^5.3.0":
"integrity" "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A=="
"resolved" "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz"
"version" "5.3.0"
dependencies:
"dequal" "^2.0.3"
"array-buffer-byte-length@^1.0.1":
"integrity" "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg=="
"resolved" "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"call-bind" "^1.0.5"
"is-array-buffer" "^3.0.4"
"array-includes@^3.1.6", "array-includes@^3.1.7":
"integrity" "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ=="
"resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz"
"version" "3.1.7"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.2.0"
"es-abstract" "^1.22.1"
"get-intrinsic" "^1.2.1"
"is-string" "^1.0.7"
"array-union@^2.1.0":
"integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
"resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
"version" "2.1.0"
"array.prototype.filter@^1.0.3":
"integrity" "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw=="
"resolved" "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.2.0"
"es-abstract" "^1.22.1"
"es-array-method-boxes-properly" "^1.0.0"
"is-string" "^1.0.7"
"array.prototype.findlastindex@^1.2.3":
"integrity" "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ=="
"resolved" "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz"
"version" "1.2.4"
dependencies:
"call-bind" "^1.0.5"
"define-properties" "^1.2.1"
"es-abstract" "^1.22.3"
"es-errors" "^1.3.0"
"es-shim-unscopables" "^1.0.2"
"array.prototype.flat@^1.3.1", "array.prototype.flat@^1.3.2":
"integrity" "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA=="
"resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.2.0"
"es-abstract" "^1.22.1"
"es-shim-unscopables" "^1.0.0"
"array.prototype.flatmap@^1.3.1", "array.prototype.flatmap@^1.3.2":
"integrity" "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ=="
"resolved" "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.2.0"
"es-abstract" "^1.22.1"
"es-shim-unscopables" "^1.0.0"
"array.prototype.tosorted@^1.1.1":
"integrity" "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg=="
"resolved" "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"call-bind" "^1.0.5"
"define-properties" "^1.2.1"
"es-abstract" "^1.22.3"
"es-errors" "^1.1.0"
"es-shim-unscopables" "^1.0.2"
"arraybuffer.prototype.slice@^1.0.3":
"integrity" "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A=="
"resolved" "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"array-buffer-byte-length" "^1.0.1"
"call-bind" "^1.0.5"
"define-properties" "^1.2.1"
"es-abstract" "^1.22.3"
"es-errors" "^1.2.1"
"get-intrinsic" "^1.2.3"
"is-array-buffer" "^3.0.4"
"is-shared-array-buffer" "^1.0.2"
"ast-types-flow@^0.0.8":
"integrity" "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ=="
"resolved" "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz"
"version" "0.0.8"
"astring@^1.8.0":
"integrity" "sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg=="
"resolved" "https://registry.npmjs.org/astring/-/astring-1.8.6.tgz"
"version" "1.8.6"
"asynciterator.prototype@^1.0.0":
"integrity" "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg=="
"resolved" "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"has-symbols" "^1.0.3"
"available-typed-arrays@^1.0.5", "available-typed-arrays@^1.0.6":
"integrity" "sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg=="
"resolved" "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz"
"version" "1.0.6"
"axe-core@=4.7.0":
"integrity" "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ=="
"resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz"
"version" "4.7.0"
"axobject-query@^3.2.1":
"integrity" "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg=="
"resolved" "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"dequal" "^2.0.3"
"bail@^2.0.0":
"integrity" "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw=="
"resolved" "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz"
"version" "2.0.2"
"balanced-match@^1.0.0":
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"brace-expansion@^1.1.7":
"integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
"resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"brace-expansion@^2.0.1":
"integrity" "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="
"resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"balanced-match" "^1.0.0"
"braces@^3.0.2":
"integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
"resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"fill-range" "^7.0.1"
"busboy@1.6.0":
"integrity" "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA=="
"resolved" "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz"
"version" "1.6.0"
dependencies:
"streamsearch" "^1.1.0"
"call-bind@^1.0.2", "call-bind@^1.0.5", "call-bind@^1.0.6", "call-bind@^1.0.7":
"integrity" "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w=="
"resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz"
"version" "1.0.7"
dependencies:
"es-define-property" "^1.0.0"
"es-errors" "^1.3.0"
"function-bind" "^1.1.2"
"get-intrinsic" "^1.2.4"
"set-function-length" "^1.2.1"
"callsites@^3.0.0":
"integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
"resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
"version" "3.1.0"
"camelcase-css@^2.0.1":
"integrity" "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA=="
"resolved" "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz"
"version" "2.0.1"
"caniuse-lite@^1.0.30001579":
"integrity" "sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA=="
"resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001587.tgz"
"version" "1.0.30001587"
"ccount@^2.0.0":
"integrity" "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="
"resolved" "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz"
"version" "2.0.1"
"chalk@^4.0.0":
"integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"character-entities-html4@^2.0.0":
"integrity" "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA=="
"resolved" "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz"
"version" "2.1.0"
"character-entities-legacy@^3.0.0":
"integrity" "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ=="
"resolved" "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz"
"version" "3.0.0"
"character-entities@^2.0.0":
"integrity" "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ=="
"resolved" "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz"
"version" "2.0.2"
"character-reference-invalid@^2.0.0":
"integrity" "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw=="
"resolved" "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz"
"version" "2.0.1"
"client-only@0.0.1":
"integrity" "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
"resolved" "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz"
"version" "0.0.1"
"cliui@^8.0.1":
"integrity" "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="
"resolved" "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz"
"version" "8.0.1"
dependencies:
"string-width" "^4.2.0"
"strip-ansi" "^6.0.1"
"wrap-ansi" "^7.0.0"
"clsx@^2.1.1":
"integrity" "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA=="
"resolved" "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz"
"version" "2.1.1"
"color-convert@^2.0.1":
"integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"color-name" "~1.1.4"
"color-name@~1.1.4":
"integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
"version" "1.1.4"
"comma-separated-tokens@^2.0.0":
"integrity" "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg=="
"resolved" "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz"
"version" "2.0.3"
"concat-map@0.0.1":
"integrity" "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
"resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
"version" "0.0.1"
"cross-spawn@^7.0.0", "cross-spawn@^7.0.2":
"integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="
"resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
"version" "7.0.3"
dependencies:
"path-key" "^3.1.0"
"shebang-command" "^2.0.0"
"which" "^2.0.1"
"cssesc@^3.0.0":
"integrity" "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="
"resolved" "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz"
"version" "3.0.0"
"csstype@^3.0.2":
"integrity" "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
"resolved" "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz"
"version" "3.1.3"
"damerau-levenshtein@^1.0.8":
"integrity" "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="
"resolved" "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz"
"version" "1.0.8"
"debug@^3.2.7":
"integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="
"resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
"version" "3.2.7"
dependencies:
"ms" "^2.1.1"
"debug@^4.0.0", "debug@^4.3.1", "debug@^4.3.2", "debug@^4.3.4":
"integrity" "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="
"resolved" "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
"version" "4.3.4"
dependencies:
"ms" "2.1.2"
"decode-named-character-reference@^1.0.0":
"integrity" "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg=="
"resolved" "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"character-entities" "^2.0.0"
"deep-is@^0.1.3":
"integrity" "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
"resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
"version" "0.1.4"
"define-data-property@^1.0.1", "define-data-property@^1.1.2":
"integrity" "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A=="
"resolved" "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz"
"version" "1.1.4"
dependencies:
"es-define-property" "^1.0.0"
"es-errors" "^1.3.0"
"gopd" "^1.0.1"
"define-properties@^1.1.3", "define-properties@^1.2.0", "define-properties@^1.2.1":
"integrity" "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg=="
"resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"define-data-property" "^1.0.1"
"has-property-descriptors" "^1.0.0"
"object-keys" "^1.1.1"
"dequal@^2.0.0", "dequal@^2.0.3":
"integrity" "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA=="
"resolved" "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz"
"version" "2.0.3"
"detect-node-es@^1.1.0":
"integrity" "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ=="
"resolved" "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz"
"version" "1.1.0"
"devlop@^1.0.0", "devlop@^1.1.0":
"integrity" "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA=="
"resolved" "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"dequal" "^2.0.0"
"diff@^5.0.0":
"integrity" "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A=="
"resolved" "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz"
"version" "5.2.0"
"dir-glob@^3.0.1":
"integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="
"resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"path-type" "^4.0.0"
"doctrine@^2.1.0":
"integrity" "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="
"resolved" "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"esutils" "^2.0.2"
"doctrine@^3.0.0":
"integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="
"resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"esutils" "^2.0.2"
"dree@^4.7.0":
"integrity" "sha512-YDBmkNhQ6pvUY6gDpwmWe+A6Id819eR3RPAVZIhaZfCL1C+F7/0uzXPSjE2DprKruc3kuVhOCMJl2Z/6whLUzQ=="
"resolved" "https://registry.npmjs.org/dree/-/dree-4.7.0.tgz"
"version" "4.7.0"
dependencies:
"minimatch" "^9.0.3"
"yargs" "^17.7.2"
"eastasianwidth@^0.2.0":
"integrity" "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
"resolved" "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz"
"version" "0.2.0"
"emoji-regex@^8.0.0":
"integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
"resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
"version" "8.0.0"
"emoji-regex@^9.2.2":
"integrity" "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
"resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz"
"version" "9.2.2"
"enhanced-resolve@^5.12.0":
"integrity" "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg=="
"resolved" "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz"
"version" "5.15.0"
dependencies:
"graceful-fs" "^4.2.4"
"tapable" "^2.2.0"
"entities@^4.4.0":
"integrity" "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="
"resolved" "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz"
"version" "4.5.0"
"es-abstract@^1.22.1", "es-abstract@^1.22.3", "es-abstract@^1.22.4":
"integrity" "sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg=="
"resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.4.tgz"
"version" "1.22.4"
dependencies:
"array-buffer-byte-length" "^1.0.1"
"arraybuffer.prototype.slice" "^1.0.3"
"available-typed-arrays" "^1.0.6"
"call-bind" "^1.0.7"
"es-define-property" "^1.0.0"
"es-errors" "^1.3.0"
"es-set-tostringtag" "^2.0.2"
"es-to-primitive" "^1.2.1"
"function.prototype.name" "^1.1.6"
"get-intrinsic" "^1.2.4"
"get-symbol-description" "^1.0.2"
"globalthis" "^1.0.3"
"gopd" "^1.0.1"
"has-property-descriptors" "^1.0.2"
"has-proto" "^1.0.1"
"has-symbols" "^1.0.3"
"hasown" "^2.0.1"
"internal-slot" "^1.0.7"
"is-array-buffer" "^3.0.4"
"is-callable" "^1.2.7"
"is-negative-zero" "^2.0.2"
"is-regex" "^1.1.4"
"is-shared-array-buffer" "^1.0.2"
"is-string" "^1.0.7"
"is-typed-array" "^1.1.13"
"is-weakref" "^1.0.2"
"object-inspect" "^1.13.1"
"object-keys" "^1.1.1"
"object.assign" "^4.1.5"
"regexp.prototype.flags" "^1.5.2"
"safe-array-concat" "^1.1.0"
"safe-regex-test" "^1.0.3"
"string.prototype.trim" "^1.2.8"
"string.prototype.trimend" "^1.0.7"
"string.prototype.trimstart" "^1.0.7"
"typed-array-buffer" "^1.0.1"
"typed-array-byte-length" "^1.0.0"
"typed-array-byte-offset" "^1.0.0"
"typed-array-length" "^1.0.4"
"unbox-primitive" "^1.0.2"
"which-typed-array" "^1.1.14"
"es-array-method-boxes-properly@^1.0.0":
"integrity" "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA=="
"resolved" "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz"
"version" "1.0.0"
"es-define-property@^1.0.0":
"integrity" "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ=="
"resolved" "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"get-intrinsic" "^1.2.4"
"es-errors@^1.0.0", "es-errors@^1.1.0", "es-errors@^1.2.1", "es-errors@^1.3.0":
"integrity" "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="
"resolved" "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz"
"version" "1.3.0"
"es-iterator-helpers@^1.0.12", "es-iterator-helpers@^1.0.15":
"integrity" "sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ=="
"resolved" "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz"
"version" "1.0.17"
dependencies:
"asynciterator.prototype" "^1.0.0"
"call-bind" "^1.0.7"
"define-properties" "^1.2.1"
"es-abstract" "^1.22.4"
"es-errors" "^1.3.0"
"es-set-tostringtag" "^2.0.2"
"function-bind" "^1.1.2"
"get-intrinsic" "^1.2.4"
"globalthis" "^1.0.3"
"has-property-descriptors" "^1.0.2"
"has-proto" "^1.0.1"
"has-symbols" "^1.0.3"
"internal-slot" "^1.0.7"
"iterator.prototype" "^1.1.2"
"safe-array-concat" "^1.1.0"
"es-set-tostringtag@^2.0.2":
"integrity" "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q=="
"resolved" "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"get-intrinsic" "^1.2.2"
"has-tostringtag" "^1.0.0"
"hasown" "^2.0.0"
"es-shim-unscopables@^1.0.0", "es-shim-unscopables@^1.0.2":
"integrity" "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw=="
"resolved" "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"hasown" "^2.0.0"
"es-to-primitive@^1.2.1":
"integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="
"resolved" "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"is-callable" "^1.1.4"
"is-date-object" "^1.0.1"
"is-symbol" "^1.0.2"
"escalade@^3.1.1":
"integrity" "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA=="
"resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz"
"version" "3.1.2"
"escape-string-regexp@^4.0.0":
"integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
"resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
"version" "4.0.0"
"eslint-config-next@14.1.0":