forked from activeagents/activeagent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
1131 lines (980 loc) · 47.2 KB
/
yarn.lock
File metadata and controls
1131 lines (980 loc) · 47.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@algolia/autocomplete-core@1.17.7":
"integrity" "sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q=="
"resolved" "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.7.tgz"
"version" "1.17.7"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights" "1.17.7"
"@algolia/autocomplete-shared" "1.17.7"
"@algolia/autocomplete-plugin-algolia-insights@1.17.7":
"integrity" "sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A=="
"resolved" "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.7.tgz"
"version" "1.17.7"
dependencies:
"@algolia/autocomplete-shared" "1.17.7"
"@algolia/autocomplete-preset-algolia@1.17.7":
"integrity" "sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA=="
"resolved" "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.7.tgz"
"version" "1.17.7"
dependencies:
"@algolia/autocomplete-shared" "1.17.7"
"@algolia/autocomplete-shared@1.17.7":
"integrity" "sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg=="
"resolved" "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.7.tgz"
"version" "1.17.7"
"@algolia/client-abtesting@5.27.0":
"integrity" "sha512-SITU5umoknxETtw67TxJu9njyMkWiH8pM+Bvw4dzfuIrIAT6Y1rmwV4y0A0didWoT+6xVuammIykbtBMolBcmg=="
"resolved" "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-browser-xhr" "5.27.0"
"@algolia/requester-fetch" "5.27.0"
"@algolia/requester-node-http" "5.27.0"
"@algolia/client-analytics@5.27.0":
"integrity" "sha512-go1b9qIZK5vYEQ7jD2bsfhhhVsoh9cFxQ5xF8TzTsg2WOCZR3O92oXCkq15SOK0ngJfqDU6a/k0oZ4KuEnih1Q=="
"resolved" "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-browser-xhr" "5.27.0"
"@algolia/requester-fetch" "5.27.0"
"@algolia/requester-node-http" "5.27.0"
"@algolia/client-common@5.27.0":
"integrity" "sha512-tnFOzdNuMzsz93kOClj3fKfuYoF3oYaEB5bggULSj075GJ7HUNedBEm7a6ScrjtnOaOtipbnT7veUpHA4o4wEQ=="
"resolved" "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.27.0.tgz"
"version" "5.27.0"
"@algolia/client-insights@5.27.0":
"integrity" "sha512-y1qgw39qZijjQBXrqZTiwK1cWgWGRiLpJNWBv9w36nVMKfl9kInrfsYmdBAfmlhVgF/+Woe0y1jQ7pa4HyShAw=="
"resolved" "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-browser-xhr" "5.27.0"
"@algolia/requester-fetch" "5.27.0"
"@algolia/requester-node-http" "5.27.0"
"@algolia/client-personalization@5.27.0":
"integrity" "sha512-XluG9qPZKEbiLoIfXTKbABsWDNOMPx0t6T2ImJTTeuX+U/zBdmfcqqgcgkqXp+vbXof/XX/4of9Eqo1JaqEmKw=="
"resolved" "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-browser-xhr" "5.27.0"
"@algolia/requester-fetch" "5.27.0"
"@algolia/requester-node-http" "5.27.0"
"@algolia/client-query-suggestions@5.27.0":
"integrity" "sha512-V8/To+SsAl2sdw2AAjeLJuCW1L+xpz+LAGerJK7HKqHzE5yQhWmIWZTzqYQcojkii4iBMYn0y3+uReWqT8XVSQ=="
"resolved" "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-browser-xhr" "5.27.0"
"@algolia/requester-fetch" "5.27.0"
"@algolia/requester-node-http" "5.27.0"
"@algolia/client-search@>= 4.9.1 < 6", "@algolia/client-search@5.27.0":
"integrity" "sha512-EJJ7WmvmUXZdchueKFCK8UZFyLqy4Hz64snNp0cTc7c0MKaSeDGYEDxVsIJKp15r7ORaoGxSyS4y6BGZMXYuCg=="
"resolved" "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-browser-xhr" "5.27.0"
"@algolia/requester-fetch" "5.27.0"
"@algolia/requester-node-http" "5.27.0"
"@algolia/ingestion@1.27.0":
"integrity" "sha512-xNCyWeqpmEo4EdmpG57Fs1fJIQcPwt5NnJ6MBdXnUdMVXF4f5PHgza+HQWQQcYpCsune96jfmR0v7us6gRIlCw=="
"resolved" "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.27.0.tgz"
"version" "1.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-browser-xhr" "5.27.0"
"@algolia/requester-fetch" "5.27.0"
"@algolia/requester-node-http" "5.27.0"
"@algolia/monitoring@1.27.0":
"integrity" "sha512-P0NDiEFyt9UYQLBI0IQocIT7xHpjMpoFN3UDeerbztlkH9HdqT0GGh1SHYmNWpbMWIGWhSJTtz6kSIWvFu4+pw=="
"resolved" "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.27.0.tgz"
"version" "1.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-browser-xhr" "5.27.0"
"@algolia/requester-fetch" "5.27.0"
"@algolia/requester-node-http" "5.27.0"
"@algolia/recommend@5.27.0":
"integrity" "sha512-cqfTMF1d1cc7hg0vITNAFxJZas7MJ4Obc36WwkKpY23NOtGb+4tH9X7UKlQa2PmTgbXIANoJ/DAQTeiVlD2I4Q=="
"resolved" "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-browser-xhr" "5.27.0"
"@algolia/requester-fetch" "5.27.0"
"@algolia/requester-node-http" "5.27.0"
"@algolia/requester-browser-xhr@5.27.0":
"integrity" "sha512-ErenYTcXl16wYXtf0pxLl9KLVxIztuehqXHfW9nNsD8mz9OX42HbXuPzT7y6JcPiWJpc/UU/LY5wBTB65vsEUg=="
"resolved" "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-fetch@5.27.0":
"integrity" "sha512-CNOvmXsVi+IvT7z1d+6X7FveVkgEQwTNgipjQCHTIbF9KSMfZR7tUsJC+NpELrm10ALdOMauah84ybs9rw1cKQ=="
"resolved" "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@algolia/requester-node-http@5.27.0":
"integrity" "sha512-Nx9EdLYZDsaYFTthqmc0XcVvsx6jqeEX8fNiYOB5i2HboQwl8pJPj1jFhGqoGd0KG7KFR+sdPO5/e0EDDAru2Q=="
"resolved" "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-common" "5.27.0"
"@antfu/install-pkg@^1.0.0":
"integrity" "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ=="
"resolved" "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"package-manager-detector" "^1.3.0"
"tinyexec" "^1.0.1"
"@antfu/utils@^8.1.0":
"integrity" "sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ=="
"resolved" "https://registry.npmjs.org/@antfu/utils/-/utils-8.1.1.tgz"
"version" "8.1.1"
"@babel/helper-string-parser@^7.27.1":
"integrity" "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz"
"version" "7.27.1"
"@babel/helper-validator-identifier@^7.27.1":
"integrity" "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz"
"version" "7.27.1"
"@babel/parser@^7.27.2":
"integrity" "sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.27.5.tgz"
"version" "7.27.5"
dependencies:
"@babel/types" "^7.27.3"
"@babel/types@^7.27.3":
"integrity" "sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.27.6.tgz"
"version" "7.27.6"
dependencies:
"@babel/helper-string-parser" "^7.27.1"
"@babel/helper-validator-identifier" "^7.27.1"
"@docsearch/css@3.8.2":
"integrity" "sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ=="
"resolved" "https://registry.npmjs.org/@docsearch/css/-/css-3.8.2.tgz"
"version" "3.8.2"
"@docsearch/js@3.8.2":
"integrity" "sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ=="
"resolved" "https://registry.npmjs.org/@docsearch/js/-/js-3.8.2.tgz"
"version" "3.8.2"
dependencies:
"@docsearch/react" "3.8.2"
"preact" "^10.0.0"
"@docsearch/react@3.8.2":
"integrity" "sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg=="
"resolved" "https://registry.npmjs.org/@docsearch/react/-/react-3.8.2.tgz"
"version" "3.8.2"
dependencies:
"@algolia/autocomplete-core" "1.17.7"
"@algolia/autocomplete-preset-algolia" "1.17.7"
"@docsearch/css" "3.8.2"
"algoliasearch" "^5.14.2"
"@esbuild/darwin-arm64@0.21.5":
"integrity" "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ=="
"resolved" "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz"
"version" "0.21.5"
"@iconify-json/logos@^1.2.4":
"integrity" "sha512-XC4If5D/hbaZvUkTV8iaZuGlQCyG6CNOlaAaJaGa13V5QMYwYjgtKk3vPP8wz3wtTVNVEVk3LRx1fOJz+YnSMw=="
"resolved" "https://registry.npmjs.org/@iconify-json/logos/-/logos-1.2.4.tgz"
"version" "1.2.4"
dependencies:
"@iconify/types" "*"
"@iconify-json/simple-icons@^1.2.21":
"integrity" "sha512-jZwTBznpYVDYKWyAuRpepPpCiHScVrX6f8WRX8ReX6pdii99LYVHwJywKcH2excWQrWmBomC9nkxGlEKzXZ/wQ=="
"resolved" "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.37.tgz"
"version" "1.2.37"
dependencies:
"@iconify/types" "*"
"@iconify-json/vscode-icons@^1.2.18":
"integrity" "sha512-xuWqr/SrckUoFi6kpSH/NrNGK+CuZ8LNnBY8qkRdkQvHmhirXvwsLfTKHoFndTsOlxfsHahlOLVCCb523kdqMA=="
"resolved" "https://registry.npmjs.org/@iconify-json/vscode-icons/-/vscode-icons-1.2.20.tgz"
"version" "1.2.20"
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.3.0":
"integrity" "sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA=="
"resolved" "https://registry.npmjs.org/@iconify/utils/-/utils-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"@antfu/install-pkg" "^1.0.0"
"@antfu/utils" "^8.1.0"
"@iconify/types" "^2.0.0"
"debug" "^4.4.0"
"globals" "^15.14.0"
"kolorist" "^1.8.0"
"local-pkg" "^1.0.0"
"mlly" "^1.7.4"
"@jridgewell/sourcemap-codec@^1.5.0":
"integrity" "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz"
"version" "1.5.0"
"@rollup/rollup-darwin-arm64@4.42.0":
"integrity" "sha512-JxHtA081izPBVCHLKnl6GEA0w3920mlJPLh89NojpU2GsBSB6ypu4erFg/Wx1qbpUbepn0jY4dVWMGZM8gplgA=="
"resolved" "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.42.0.tgz"
"version" "4.42.0"
"@shikijs/core@^2.1.0", "@shikijs/core@2.5.0":
"integrity" "sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg=="
"resolved" "https://registry.npmjs.org/@shikijs/core/-/core-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@shikijs/engine-javascript" "2.5.0"
"@shikijs/engine-oniguruma" "2.5.0"
"@shikijs/types" "2.5.0"
"@shikijs/vscode-textmate" "^10.0.2"
"@types/hast" "^3.0.4"
"hast-util-to-html" "^9.0.4"
"@shikijs/engine-javascript@2.5.0":
"integrity" "sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w=="
"resolved" "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@shikijs/types" "2.5.0"
"@shikijs/vscode-textmate" "^10.0.2"
"oniguruma-to-es" "^3.1.0"
"@shikijs/engine-oniguruma@2.5.0":
"integrity" "sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw=="
"resolved" "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@shikijs/types" "2.5.0"
"@shikijs/vscode-textmate" "^10.0.2"
"@shikijs/langs@2.5.0":
"integrity" "sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w=="
"resolved" "https://registry.npmjs.org/@shikijs/langs/-/langs-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@shikijs/types" "2.5.0"
"@shikijs/themes@2.5.0":
"integrity" "sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw=="
"resolved" "https://registry.npmjs.org/@shikijs/themes/-/themes-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@shikijs/types" "2.5.0"
"@shikijs/transformers@^2.1.0":
"integrity" "sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg=="
"resolved" "https://registry.npmjs.org/@shikijs/transformers/-/transformers-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@shikijs/core" "2.5.0"
"@shikijs/types" "2.5.0"
"@shikijs/types@^2.1.0", "@shikijs/types@2.5.0":
"integrity" "sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw=="
"resolved" "https://registry.npmjs.org/@shikijs/types/-/types-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@shikijs/vscode-textmate" "^10.0.2"
"@types/hast" "^3.0.4"
"@shikijs/vscode-textmate@^10.0.2":
"integrity" "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg=="
"resolved" "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz"
"version" "10.0.2"
"@types/estree@1.0.7":
"integrity" "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ=="
"resolved" "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz"
"version" "1.0.7"
"@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/linkify-it@^5":
"integrity" "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q=="
"resolved" "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz"
"version" "5.0.0"
"@types/markdown-it@^14.1.2":
"integrity" "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog=="
"resolved" "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz"
"version" "14.1.2"
dependencies:
"@types/linkify-it" "^5"
"@types/mdurl" "^2"
"@types/mdast@^4.0.0":
"integrity" "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA=="
"resolved" "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz"
"version" "4.0.4"
dependencies:
"@types/unist" "*"
"@types/mdurl@^2":
"integrity" "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg=="
"resolved" "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz"
"version" "2.0.0"
"@types/unist@*", "@types/unist@^3.0.0":
"integrity" "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q=="
"resolved" "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz"
"version" "3.0.3"
"@types/web-bluetooth@^0.0.21":
"integrity" "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA=="
"resolved" "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz"
"version" "0.0.21"
"@ungap/structured-clone@^1.0.0":
"integrity" "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g=="
"resolved" "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz"
"version" "1.3.0"
"@vitejs/plugin-vue@^5.2.1":
"integrity" "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA=="
"resolved" "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz"
"version" "5.2.4"
"@vue/compiler-core@3.5.16":
"integrity" "sha512-AOQS2eaQOaaZQoL1u+2rCJIKDruNXVBZSiUD3chnUrsoX5ZTQMaCvXlWNIfxBJuU15r1o7+mpo5223KVtIhAgQ=="
"resolved" "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.16.tgz"
"version" "3.5.16"
dependencies:
"@babel/parser" "^7.27.2"
"@vue/shared" "3.5.16"
"entities" "^4.5.0"
"estree-walker" "^2.0.2"
"source-map-js" "^1.2.1"
"@vue/compiler-dom@3.5.16":
"integrity" "sha512-SSJIhBr/teipXiXjmWOVWLnxjNGo65Oj/8wTEQz0nqwQeP75jWZ0n4sF24Zxoht1cuJoWopwj0J0exYwCJ0dCQ=="
"resolved" "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.16.tgz"
"version" "3.5.16"
dependencies:
"@vue/compiler-core" "3.5.16"
"@vue/shared" "3.5.16"
"@vue/compiler-sfc@3.5.16":
"integrity" "sha512-rQR6VSFNpiinDy/DVUE0vHoIDUF++6p910cgcZoaAUm3POxgNOOdS/xgoll3rNdKYTYPnnbARDCZOyZ+QSe6Pw=="
"resolved" "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.16.tgz"
"version" "3.5.16"
dependencies:
"@babel/parser" "^7.27.2"
"@vue/compiler-core" "3.5.16"
"@vue/compiler-dom" "3.5.16"
"@vue/compiler-ssr" "3.5.16"
"@vue/shared" "3.5.16"
"estree-walker" "^2.0.2"
"magic-string" "^0.30.17"
"postcss" "^8.5.3"
"source-map-js" "^1.2.1"
"@vue/compiler-ssr@3.5.16":
"integrity" "sha512-d2V7kfxbdsjrDSGlJE7my1ZzCXViEcqN6w14DOsDrUCHEA6vbnVCpRFfrc4ryCP/lCKzX2eS1YtnLE/BuC9f/A=="
"resolved" "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.16.tgz"
"version" "3.5.16"
dependencies:
"@vue/compiler-dom" "3.5.16"
"@vue/shared" "3.5.16"
"@vue/devtools-api@^7.7.0":
"integrity" "sha512-b2Xx0KvXZObePpXPYHvBRRJLDQn5nhKjXh7vUhMEtWxz1AYNFOVIsh5+HLP8xDGL7sy+Q7hXeUxPHB/KgbtsPw=="
"resolved" "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.6.tgz"
"version" "7.7.6"
dependencies:
"@vue/devtools-kit" "^7.7.6"
"@vue/devtools-kit@^7.7.6":
"integrity" "sha512-geu7ds7tem2Y7Wz+WgbnbZ6T5eadOvozHZ23Atk/8tksHMFOFylKi1xgGlQlVn0wlkEf4hu+vd5ctj1G4kFtwA=="
"resolved" "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.6.tgz"
"version" "7.7.6"
dependencies:
"@vue/devtools-shared" "^7.7.6"
"birpc" "^2.3.0"
"hookable" "^5.5.3"
"mitt" "^3.0.1"
"perfect-debounce" "^1.0.0"
"speakingurl" "^14.0.1"
"superjson" "^2.2.2"
"@vue/devtools-shared@^7.7.6":
"integrity" "sha512-yFEgJZ/WblEsojQQceuyK6FzpFDx4kqrz2ohInxNj5/DnhoX023upTv4OD6lNPLAA5LLkbwPVb10o/7b+Y4FVA=="
"resolved" "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.6.tgz"
"version" "7.7.6"
dependencies:
"rfdc" "^1.4.1"
"@vue/reactivity@3.5.16":
"integrity" "sha512-FG5Q5ee/kxhIm1p2bykPpPwqiUBV3kFySsHEQha5BJvjXdZTUfmya7wP7zC39dFuZAcf/PD5S4Lni55vGLMhvA=="
"resolved" "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.16.tgz"
"version" "3.5.16"
dependencies:
"@vue/shared" "3.5.16"
"@vue/runtime-core@3.5.16":
"integrity" "sha512-bw5Ykq6+JFHYxrQa7Tjr+VSzw7Dj4ldR/udyBZbq73fCdJmyy5MPIFR9IX/M5Qs+TtTjuyUTCnmK3lWWwpAcFQ=="
"resolved" "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.16.tgz"
"version" "3.5.16"
dependencies:
"@vue/reactivity" "3.5.16"
"@vue/shared" "3.5.16"
"@vue/runtime-dom@3.5.16":
"integrity" "sha512-T1qqYJsG2xMGhImRUV9y/RseB9d0eCYZQ4CWca9ztCuiPj/XWNNN+lkNBuzVbia5z4/cgxdL28NoQCvC0Xcfww=="
"resolved" "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.16.tgz"
"version" "3.5.16"
dependencies:
"@vue/reactivity" "3.5.16"
"@vue/runtime-core" "3.5.16"
"@vue/shared" "3.5.16"
"csstype" "^3.1.3"
"@vue/server-renderer@3.5.16":
"integrity" "sha512-BrX0qLiv/WugguGsnQUJiYOE0Fe5mZTwi6b7X/ybGB0vfrPH9z0gD/Y6WOR1sGCgX4gc25L1RYS5eYQKDMoNIg=="
"resolved" "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.16.tgz"
"version" "3.5.16"
dependencies:
"@vue/compiler-ssr" "3.5.16"
"@vue/shared" "3.5.16"
"@vue/shared@^3.5.13", "@vue/shared@3.5.16":
"integrity" "sha512-c/0fWy3Jw6Z8L9FmTyYfkpM5zklnqqa9+a6dz3DvONRKW2NEbh46BP0FHuLFSWi2TnQEtp91Z6zOWNrU6QiyPg=="
"resolved" "https://registry.npmjs.org/@vue/shared/-/shared-3.5.16.tgz"
"version" "3.5.16"
"@vueuse/core@^12.4.0", "@vueuse/core@12.8.2":
"integrity" "sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ=="
"resolved" "https://registry.npmjs.org/@vueuse/core/-/core-12.8.2.tgz"
"version" "12.8.2"
dependencies:
"@types/web-bluetooth" "^0.0.21"
"@vueuse/metadata" "12.8.2"
"@vueuse/shared" "12.8.2"
"vue" "^3.5.13"
"@vueuse/integrations@^12.4.0":
"integrity" "sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g=="
"resolved" "https://registry.npmjs.org/@vueuse/integrations/-/integrations-12.8.2.tgz"
"version" "12.8.2"
dependencies:
"@vueuse/core" "12.8.2"
"@vueuse/shared" "12.8.2"
"vue" "^3.5.13"
"@vueuse/metadata@12.8.2":
"integrity" "sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A=="
"resolved" "https://registry.npmjs.org/@vueuse/metadata/-/metadata-12.8.2.tgz"
"version" "12.8.2"
"@vueuse/shared@12.8.2":
"integrity" "sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w=="
"resolved" "https://registry.npmjs.org/@vueuse/shared/-/shared-12.8.2.tgz"
"version" "12.8.2"
dependencies:
"vue" "^3.5.13"
"acorn@^8.14.0":
"integrity" "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz"
"version" "8.14.1"
"algoliasearch@^5.14.2", "algoliasearch@>= 4.9.1 < 6":
"integrity" "sha512-2PvAgvxxJzA3+dB+ERfS2JPdvUsxNf89Cc2GF5iCcFupTULOwmbfinvqrC4Qj9nHJJDNf494NqEN/1f9177ZTQ=="
"resolved" "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.27.0.tgz"
"version" "5.27.0"
dependencies:
"@algolia/client-abtesting" "5.27.0"
"@algolia/client-analytics" "5.27.0"
"@algolia/client-common" "5.27.0"
"@algolia/client-insights" "5.27.0"
"@algolia/client-personalization" "5.27.0"
"@algolia/client-query-suggestions" "5.27.0"
"@algolia/client-search" "5.27.0"
"@algolia/ingestion" "1.27.0"
"@algolia/monitoring" "1.27.0"
"@algolia/recommend" "5.27.0"
"@algolia/requester-browser-xhr" "5.27.0"
"@algolia/requester-fetch" "5.27.0"
"@algolia/requester-node-http" "5.27.0"
"birpc@^2.3.0":
"integrity" "sha512-ijbtkn/F3Pvzb6jHypHRyve2QApOCZDR25D/VnkY2G/lBNcXCTsnsCxgY4k4PkVB7zfwzYbY3O9Lcqe3xufS5g=="
"resolved" "https://registry.npmjs.org/birpc/-/birpc-2.3.0.tgz"
"version" "2.3.0"
"ccount@^2.0.0":
"integrity" "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="
"resolved" "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz"
"version" "2.0.1"
"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"
"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"
"confbox@^0.1.8":
"integrity" "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w=="
"resolved" "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz"
"version" "0.1.8"
"confbox@^0.2.1":
"integrity" "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ=="
"resolved" "https://registry.npmjs.org/confbox/-/confbox-0.2.2.tgz"
"version" "0.2.2"
"copy-anything@^3.0.2":
"integrity" "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w=="
"resolved" "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz"
"version" "3.0.5"
dependencies:
"is-what" "^4.1.8"
"csstype@^3.1.3":
"integrity" "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
"resolved" "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz"
"version" "3.1.3"
"debug@^4.4.0":
"integrity" "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="
"resolved" "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"ms" "^2.1.3"
"dequal@^2.0.0":
"integrity" "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA=="
"resolved" "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz"
"version" "2.0.3"
"devlop@^1.0.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"
"emoji-regex-xs@^1.0.0":
"integrity" "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg=="
"resolved" "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz"
"version" "1.0.0"
"entities@^4.5.0":
"integrity" "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw=="
"resolved" "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz"
"version" "4.5.0"
"esbuild@^0.21.3":
"integrity" "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw=="
"resolved" "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz"
"version" "0.21.5"
optionalDependencies:
"@esbuild/aix-ppc64" "0.21.5"
"@esbuild/android-arm" "0.21.5"
"@esbuild/android-arm64" "0.21.5"
"@esbuild/android-x64" "0.21.5"
"@esbuild/darwin-arm64" "0.21.5"
"@esbuild/darwin-x64" "0.21.5"
"@esbuild/freebsd-arm64" "0.21.5"
"@esbuild/freebsd-x64" "0.21.5"
"@esbuild/linux-arm" "0.21.5"
"@esbuild/linux-arm64" "0.21.5"
"@esbuild/linux-ia32" "0.21.5"
"@esbuild/linux-loong64" "0.21.5"
"@esbuild/linux-mips64el" "0.21.5"
"@esbuild/linux-ppc64" "0.21.5"
"@esbuild/linux-riscv64" "0.21.5"
"@esbuild/linux-s390x" "0.21.5"
"@esbuild/linux-x64" "0.21.5"
"@esbuild/netbsd-x64" "0.21.5"
"@esbuild/openbsd-x64" "0.21.5"
"@esbuild/sunos-x64" "0.21.5"
"@esbuild/win32-arm64" "0.21.5"
"@esbuild/win32-ia32" "0.21.5"
"@esbuild/win32-x64" "0.21.5"
"estree-walker@^2.0.2":
"integrity" "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="
"resolved" "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz"
"version" "2.0.2"
"exsolve@^1.0.1":
"integrity" "sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg=="
"resolved" "https://registry.npmjs.org/exsolve/-/exsolve-1.0.5.tgz"
"version" "1.0.5"
"focus-trap@^7", "focus-trap@^7.6.4":
"integrity" "sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg=="
"resolved" "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.5.tgz"
"version" "7.6.5"
dependencies:
"tabbable" "^6.2.0"
"fsevents@~2.3.2", "fsevents@~2.3.3":
"integrity" "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="
"resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz"
"version" "2.3.3"
"globals@^15.14.0":
"integrity" "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg=="
"resolved" "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz"
"version" "15.15.0"
"hast-util-to-html@^9.0.4":
"integrity" "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw=="
"resolved" "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz"
"version" "9.0.5"
dependencies:
"@types/hast" "^3.0.0"
"@types/unist" "^3.0.0"
"ccount" "^2.0.0"
"comma-separated-tokens" "^2.0.0"
"hast-util-whitespace" "^3.0.0"
"html-void-elements" "^3.0.0"
"mdast-util-to-hast" "^13.0.0"
"property-information" "^7.0.0"
"space-separated-tokens" "^2.0.0"
"stringify-entities" "^4.0.0"
"zwitch" "^2.0.4"
"hast-util-whitespace@^3.0.0":
"integrity" "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw=="
"resolved" "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"@types/hast" "^3.0.0"
"hookable@^5.5.3":
"integrity" "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ=="
"resolved" "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz"
"version" "5.5.3"
"html-void-elements@^3.0.0":
"integrity" "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg=="
"resolved" "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz"
"version" "3.0.0"
"is-what@^4.1.8":
"integrity" "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A=="
"resolved" "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz"
"version" "4.1.16"
"kolorist@^1.8.0":
"integrity" "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ=="
"resolved" "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz"
"version" "1.8.0"
"local-pkg@^1.0.0":
"integrity" "sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg=="
"resolved" "https://registry.npmjs.org/local-pkg/-/local-pkg-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"mlly" "^1.7.4"
"pkg-types" "^2.0.1"
"quansync" "^0.2.8"
"magic-string@^0.30.17":
"integrity" "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA=="
"resolved" "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz"
"version" "0.30.17"
dependencies:
"@jridgewell/sourcemap-codec" "^1.5.0"
"mark.js@8.11.1":
"integrity" "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ=="
"resolved" "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz"
"version" "8.11.1"
"mdast-util-to-hast@^13.0.0":
"integrity" "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA=="
"resolved" "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz"
"version" "13.2.0"
dependencies:
"@types/hast" "^3.0.0"
"@types/mdast" "^4.0.0"
"@ungap/structured-clone" "^1.0.0"
"devlop" "^1.0.0"
"micromark-util-sanitize-uri" "^2.0.0"
"trim-lines" "^3.0.0"
"unist-util-position" "^5.0.0"
"unist-util-visit" "^5.0.0"
"vfile" "^6.0.0"
"micromark-util-character@^2.0.0":
"integrity" "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q=="
"resolved" "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz"
"version" "2.1.1"
dependencies:
"micromark-util-symbol" "^2.0.0"
"micromark-util-types" "^2.0.0"
"micromark-util-encode@^2.0.0":
"integrity" "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw=="
"resolved" "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz"
"version" "2.0.1"
"micromark-util-sanitize-uri@^2.0.0":
"integrity" "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ=="
"resolved" "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"micromark-util-character" "^2.0.0"
"micromark-util-encode" "^2.0.0"
"micromark-util-symbol" "^2.0.0"
"micromark-util-symbol@^2.0.0":
"integrity" "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q=="
"resolved" "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz"
"version" "2.0.1"
"micromark-util-types@^2.0.0":
"integrity" "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA=="
"resolved" "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz"
"version" "2.0.2"
"minisearch@^7.1.1":
"integrity" "sha512-R1Pd9eF+MD5JYDDSPAp/q1ougKglm14uEkPMvQ/05RGmx6G9wvmLTrTI/Q5iPNJLYqNdsDQ7qTGIcNWR+FrHmA=="
"resolved" "https://registry.npmjs.org/minisearch/-/minisearch-7.1.2.tgz"
"version" "7.1.2"
"mitt@^3.0.1":
"integrity" "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw=="
"resolved" "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz"
"version" "3.0.1"
"mlly@^1.7.4":
"integrity" "sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw=="
"resolved" "https://registry.npmjs.org/mlly/-/mlly-1.7.4.tgz"
"version" "1.7.4"
dependencies:
"acorn" "^8.14.0"
"pathe" "^2.0.1"
"pkg-types" "^1.3.0"
"ufo" "^1.5.4"
"ms@^2.1.3":
"integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
"resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
"version" "2.1.3"
"nanoid@^3.3.11":
"integrity" "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="
"resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz"
"version" "3.3.11"
"oniguruma-to-es@^3.1.0":
"integrity" "sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ=="
"resolved" "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-3.1.1.tgz"
"version" "3.1.1"
dependencies:
"emoji-regex-xs" "^1.0.0"
"regex" "^6.0.1"
"regex-recursion" "^6.0.2"
"package-manager-detector@^1.3.0":
"integrity" "sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ=="
"resolved" "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.3.0.tgz"
"version" "1.3.0"
"pathe@^2.0.1", "pathe@^2.0.3":
"integrity" "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w=="
"resolved" "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz"
"version" "2.0.3"
"perfect-debounce@^1.0.0":
"integrity" "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA=="
"resolved" "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz"
"version" "1.0.0"
"picocolors@^1.1.1":
"integrity" "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="
"resolved" "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz"
"version" "1.1.1"
"pkg-types@^1.3.0":
"integrity" "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ=="
"resolved" "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz"
"version" "1.3.1"
dependencies:
"confbox" "^0.1.8"
"mlly" "^1.7.4"
"pathe" "^2.0.1"
"pkg-types@^2.0.1":
"integrity" "sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A=="
"resolved" "https://registry.npmjs.org/pkg-types/-/pkg-types-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"confbox" "^0.2.1"
"exsolve" "^1.0.1"
"pathe" "^2.0.3"
"postcss@^8", "postcss@^8.4.43", "postcss@^8.5.3":
"integrity" "sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w=="
"resolved" "https://registry.npmjs.org/postcss/-/postcss-8.5.4.tgz"
"version" "8.5.4"
dependencies:
"nanoid" "^3.3.11"
"picocolors" "^1.1.1"
"source-map-js" "^1.2.1"
"preact@^10.0.0":
"integrity" "sha512-1nMfdFjucm5hKvq0IClqZwK4FJkGXhRrQstOQ3P4vp8HxKrJEMFcY6RdBRVTdfQS/UlnX6gfbPuTvaqx/bDoeQ=="
"resolved" "https://registry.npmjs.org/preact/-/preact-10.26.8.tgz"
"version" "10.26.8"
"property-information@^7.0.0":
"integrity" "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ=="
"resolved" "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz"
"version" "7.1.0"
"quansync@^0.2.8":
"integrity" "sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A=="
"resolved" "https://registry.npmjs.org/quansync/-/quansync-0.2.10.tgz"
"version" "0.2.10"
"regex-recursion@^6.0.2":
"integrity" "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg=="
"resolved" "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz"
"version" "6.0.2"
dependencies:
"regex-utilities" "^2.3.0"
"regex-utilities@^2.3.0":
"integrity" "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng=="
"resolved" "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz"
"version" "2.3.0"
"regex@^6.0.1":
"integrity" "sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA=="
"resolved" "https://registry.npmjs.org/regex/-/regex-6.0.1.tgz"
"version" "6.0.1"
dependencies:
"regex-utilities" "^2.3.0"
"rfdc@^1.4.1":
"integrity" "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA=="
"resolved" "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz"
"version" "1.4.1"
"rollup@^4.20.0":
"integrity" "sha512-LW+Vse3BJPyGJGAJt1j8pWDKPd73QM8cRXYK1IxOBgL2AGLu7Xd2YOW0M2sLUBCkF5MshXXtMApyEAEzMVMsnw=="
"resolved" "https://registry.npmjs.org/rollup/-/rollup-4.42.0.tgz"
"version" "4.42.0"
dependencies:
"@types/estree" "1.0.7"
optionalDependencies:
"@rollup/rollup-android-arm-eabi" "4.42.0"
"@rollup/rollup-android-arm64" "4.42.0"
"@rollup/rollup-darwin-arm64" "4.42.0"
"@rollup/rollup-darwin-x64" "4.42.0"
"@rollup/rollup-freebsd-arm64" "4.42.0"
"@rollup/rollup-freebsd-x64" "4.42.0"
"@rollup/rollup-linux-arm-gnueabihf" "4.42.0"
"@rollup/rollup-linux-arm-musleabihf" "4.42.0"
"@rollup/rollup-linux-arm64-gnu" "4.42.0"
"@rollup/rollup-linux-arm64-musl" "4.42.0"
"@rollup/rollup-linux-loongarch64-gnu" "4.42.0"
"@rollup/rollup-linux-powerpc64le-gnu" "4.42.0"
"@rollup/rollup-linux-riscv64-gnu" "4.42.0"
"@rollup/rollup-linux-riscv64-musl" "4.42.0"
"@rollup/rollup-linux-s390x-gnu" "4.42.0"
"@rollup/rollup-linux-x64-gnu" "4.42.0"
"@rollup/rollup-linux-x64-musl" "4.42.0"
"@rollup/rollup-win32-arm64-msvc" "4.42.0"
"@rollup/rollup-win32-ia32-msvc" "4.42.0"
"@rollup/rollup-win32-x64-msvc" "4.42.0"
"fsevents" "~2.3.2"
"search-insights@>= 1 < 3":
"integrity" "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ=="
"resolved" "https://registry.npmjs.org/search-insights/-/search-insights-2.17.3.tgz"
"version" "2.17.3"
"shiki@^2.1.0":
"integrity" "sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ=="
"resolved" "https://registry.npmjs.org/shiki/-/shiki-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@shikijs/core" "2.5.0"
"@shikijs/engine-javascript" "2.5.0"
"@shikijs/engine-oniguruma" "2.5.0"
"@shikijs/langs" "2.5.0"
"@shikijs/themes" "2.5.0"
"@shikijs/types" "2.5.0"
"@shikijs/vscode-textmate" "^10.0.2"
"@types/hast" "^3.0.4"
"source-map-js@^1.2.1":
"integrity" "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="
"resolved" "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz"
"version" "1.2.1"
"space-separated-tokens@^2.0.0":
"integrity" "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q=="
"resolved" "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz"
"version" "2.0.2"
"speakingurl@^14.0.1":
"integrity" "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ=="
"resolved" "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz"
"version" "14.0.1"
"stringify-entities@^4.0.0":
"integrity" "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg=="
"resolved" "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz"
"version" "4.0.4"
dependencies:
"character-entities-html4" "^2.0.0"
"character-entities-legacy" "^3.0.0"
"superjson@^2.2.2":
"integrity" "sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q=="
"resolved" "https://registry.npmjs.org/superjson/-/superjson-2.2.2.tgz"
"version" "2.2.2"
dependencies:
"copy-anything" "^3.0.2"
"tabbable@^6.2.0":
"integrity" "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew=="
"resolved" "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz"
"version" "6.2.0"
"tinyexec@^1.0.1":
"integrity" "sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw=="