-
Notifications
You must be signed in to change notification settings - Fork 25
/
pnpm-lock.yaml
1143 lines (948 loc) · 70.3 KB
/
pnpm-lock.yaml
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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
markdown-it-task-lists:
specifier: ^2.1.1
version: markdown-it-task-lists@https://registry.npmmirror.com/markdown-it-task-lists/-/markdown-it-task-lists-2.1.1.tgz
devDependencies:
vitepress:
specifier: 1.0.0-rc.20
version: vitepress@https://registry.npmmirror.com/vitepress/-/vitepress-1.0.0-rc.20.tgz(@algolia/[email protected])([email protected])
packages:
'@algolia/autocomplete-core@https://registry.npmmirror.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz':
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz}
name: '@algolia/autocomplete-core'
version: 1.9.3
'@algolia/autocomplete-plugin-algolia-insights@https://registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz':
resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz}
name: '@algolia/autocomplete-plugin-algolia-insights'
version: 1.9.3
peerDependencies:
search-insights: '>= 1 < 3'
'@algolia/autocomplete-preset-algolia@https://registry.npmmirror.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz':
resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz}
name: '@algolia/autocomplete-preset-algolia'
version: 1.9.3
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
'@algolia/autocomplete-shared@https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz':
resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz}
name: '@algolia/autocomplete-shared'
version: 1.9.3
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
'@algolia/cache-browser-local-storage@https://registry.npmmirror.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.20.0.tgz':
resolution: {integrity: sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.20.0.tgz}
name: '@algolia/cache-browser-local-storage'
version: 4.20.0
'@algolia/cache-common@https://registry.npmmirror.com/@algolia/cache-common/-/cache-common-4.20.0.tgz':
resolution: {integrity: sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/cache-common/-/cache-common-4.20.0.tgz}
name: '@algolia/cache-common'
version: 4.20.0
'@algolia/cache-in-memory@https://registry.npmmirror.com/@algolia/cache-in-memory/-/cache-in-memory-4.20.0.tgz':
resolution: {integrity: sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/cache-in-memory/-/cache-in-memory-4.20.0.tgz}
name: '@algolia/cache-in-memory'
version: 4.20.0
'@algolia/client-account@https://registry.npmmirror.com/@algolia/client-account/-/client-account-4.20.0.tgz':
resolution: {integrity: sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/client-account/-/client-account-4.20.0.tgz}
name: '@algolia/client-account'
version: 4.20.0
'@algolia/client-analytics@https://registry.npmmirror.com/@algolia/client-analytics/-/client-analytics-4.20.0.tgz':
resolution: {integrity: sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/client-analytics/-/client-analytics-4.20.0.tgz}
name: '@algolia/client-analytics'
version: 4.20.0
'@algolia/client-common@https://registry.npmmirror.com/@algolia/client-common/-/client-common-4.20.0.tgz':
resolution: {integrity: sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/client-common/-/client-common-4.20.0.tgz}
name: '@algolia/client-common'
version: 4.20.0
'@algolia/client-personalization@https://registry.npmmirror.com/@algolia/client-personalization/-/client-personalization-4.20.0.tgz':
resolution: {integrity: sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/client-personalization/-/client-personalization-4.20.0.tgz}
name: '@algolia/client-personalization'
version: 4.20.0
'@algolia/client-search@https://registry.npmmirror.com/@algolia/client-search/-/client-search-4.20.0.tgz':
resolution: {integrity: sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/client-search/-/client-search-4.20.0.tgz}
name: '@algolia/client-search'
version: 4.20.0
'@algolia/logger-common@https://registry.npmmirror.com/@algolia/logger-common/-/logger-common-4.20.0.tgz':
resolution: {integrity: sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/logger-common/-/logger-common-4.20.0.tgz}
name: '@algolia/logger-common'
version: 4.20.0
'@algolia/logger-console@https://registry.npmmirror.com/@algolia/logger-console/-/logger-console-4.20.0.tgz':
resolution: {integrity: sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/logger-console/-/logger-console-4.20.0.tgz}
name: '@algolia/logger-console'
version: 4.20.0
'@algolia/requester-browser-xhr@https://registry.npmmirror.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.20.0.tgz':
resolution: {integrity: sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.20.0.tgz}
name: '@algolia/requester-browser-xhr'
version: 4.20.0
'@algolia/requester-common@https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz':
resolution: {integrity: sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz}
name: '@algolia/requester-common'
version: 4.20.0
'@algolia/requester-node-http@https://registry.npmmirror.com/@algolia/requester-node-http/-/requester-node-http-4.20.0.tgz':
resolution: {integrity: sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/requester-node-http/-/requester-node-http-4.20.0.tgz}
name: '@algolia/requester-node-http'
version: 4.20.0
'@algolia/transporter@https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.20.0.tgz':
resolution: {integrity: sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.20.0.tgz}
name: '@algolia/transporter'
version: 4.20.0
'@babel/helper-string-parser@https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz':
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz}
name: '@babel/helper-string-parser'
version: 7.22.5
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz':
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz}
name: '@babel/helper-validator-identifier'
version: 7.22.20
engines: {node: '>=6.9.0'}
'@babel/parser@https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz':
resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz}
name: '@babel/parser'
version: 7.23.0
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/types@https://registry.npmmirror.com/@babel/types/-/types-7.23.0.tgz':
resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.23.0.tgz}
name: '@babel/types'
version: 7.23.0
engines: {node: '>=6.9.0'}
'@docsearch/css@https://registry.npmmirror.com/@docsearch/css/-/css-3.5.2.tgz':
resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docsearch/css/-/css-3.5.2.tgz}
name: '@docsearch/css'
version: 3.5.2
'@docsearch/js@https://registry.npmmirror.com/@docsearch/js/-/js-3.5.2.tgz':
resolution: {integrity: sha512-p1YFTCDflk8ieHgFJYfmyHBki1D61+U9idwrLh+GQQMrBSP3DLGKpy0XUJtPjAOPltcVbqsTjiPFfH7JImjUNg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docsearch/js/-/js-3.5.2.tgz}
name: '@docsearch/js'
version: 3.5.2
'@docsearch/react@https://registry.npmmirror.com/@docsearch/react/-/react-3.5.2.tgz':
resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@docsearch/react/-/react-3.5.2.tgz}
name: '@docsearch/react'
version: 3.5.2
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
react: '>= 16.8.0 < 19.0.0'
react-dom: '>= 16.8.0 < 19.0.0'
search-insights: '>= 1 < 3'
peerDependenciesMeta:
'@types/react':
optional: true
react:
optional: true
react-dom:
optional: true
search-insights:
optional: true
'@esbuild/android-arm64@https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz':
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz}
name: '@esbuild/android-arm64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz':
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz}
name: '@esbuild/android-arm'
version: 0.18.20
engines: {node: '>=12'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz':
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz}
name: '@esbuild/android-x64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz':
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz}
name: '@esbuild/darwin-arm64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz':
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz}
name: '@esbuild/darwin-x64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz':
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz}
name: '@esbuild/freebsd-arm64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz':
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz}
name: '@esbuild/freebsd-x64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz':
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz}
name: '@esbuild/linux-arm64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz':
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz}
name: '@esbuild/linux-arm'
version: 0.18.20
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz':
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz}
name: '@esbuild/linux-ia32'
version: 0.18.20
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz':
resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz}
name: '@esbuild/linux-loong64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz':
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz}
name: '@esbuild/linux-mips64el'
version: 0.18.20
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz':
resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz}
name: '@esbuild/linux-ppc64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz':
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz}
name: '@esbuild/linux-riscv64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz':
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz}
name: '@esbuild/linux-s390x'
version: 0.18.20
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz':
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz}
name: '@esbuild/linux-x64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-x64@https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz':
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz}
name: '@esbuild/netbsd-x64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-x64@https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz':
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz}
name: '@esbuild/openbsd-x64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz':
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz}
name: '@esbuild/sunos-x64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz':
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz}
name: '@esbuild/win32-arm64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz':
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz}
name: '@esbuild/win32-ia32'
version: 0.18.20
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz':
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz}
name: '@esbuild/win32-x64'
version: 0.18.20
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
'@jridgewell/sourcemap-codec@https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz':
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz}
name: '@jridgewell/sourcemap-codec'
version: 1.4.15
'@types/linkify-it@https://registry.npmmirror.com/@types/linkify-it/-/linkify-it-3.0.3.tgz':
resolution: {integrity: sha512-pTjcqY9E4nOI55Wgpz7eiI8+LzdYnw3qxXCfHyBDdPbYvbyLgWLJGh8EdPvqawwMK1Uo1794AUkkR38Fr0g+2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/linkify-it/-/linkify-it-3.0.3.tgz}
name: '@types/linkify-it'
version: 3.0.3
'@types/markdown-it@https://registry.npmmirror.com/@types/markdown-it/-/markdown-it-13.0.2.tgz':
resolution: {integrity: sha512-Tla7hH9oeXHOlJyBFdoqV61xWE9FZf/y2g+gFVwQ2vE1/eBzjUno5JCd3Hdb5oATve5OF6xNjZ/4VIZhVVx+hA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/markdown-it/-/markdown-it-13.0.2.tgz}
name: '@types/markdown-it'
version: 13.0.2
'@types/mdurl@https://registry.npmmirror.com/@types/mdurl/-/mdurl-1.0.3.tgz':
resolution: {integrity: sha512-T5k6kTXak79gwmIOaDF2UUQXFbnBE0zBUzF20pz7wDYu0RQMzWg+Ml/Pz50214NsFHBITkoi5VtdjFZnJ2ijjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/mdurl/-/mdurl-1.0.3.tgz}
name: '@types/mdurl'
version: 1.0.3
'@types/web-bluetooth@https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.18.tgz':
resolution: {integrity: sha512-v/ZHEj9xh82usl8LMR3GarzFY1IrbXJw5L4QfQhokjRV91q+SelFqxQWSep1ucXEZ22+dSTwLFkXeur25sPIbw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.18.tgz}
name: '@types/web-bluetooth'
version: 0.0.18
'@vue/compiler-core@https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz':
resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz}
name: '@vue/compiler-core'
version: 3.3.4
'@vue/compiler-dom@https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz':
resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz}
name: '@vue/compiler-dom'
version: 3.3.4
'@vue/compiler-sfc@https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz':
resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz}
name: '@vue/compiler-sfc'
version: 3.3.4
'@vue/compiler-ssr@https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz':
resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz}
name: '@vue/compiler-ssr'
version: 3.3.4
'@vue/devtools-api@https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz':
resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz}
name: '@vue/devtools-api'
version: 6.5.0
'@vue/reactivity-transform@https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz':
resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz}
name: '@vue/reactivity-transform'
version: 3.3.4
'@vue/reactivity@https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz':
resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz}
name: '@vue/reactivity'
version: 3.3.4
'@vue/runtime-core@https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz':
resolution: {integrity: sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz}
name: '@vue/runtime-core'
version: 3.3.4
'@vue/runtime-dom@https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz':
resolution: {integrity: sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz}
name: '@vue/runtime-dom'
version: 3.3.4
'@vue/server-renderer@https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz':
resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz}
name: '@vue/server-renderer'
version: 3.3.4
peerDependencies:
vue: 3.3.4
'@vue/shared@https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz':
resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz}
name: '@vue/shared'
version: 3.3.4
'@vueuse/core@https://registry.npmmirror.com/@vueuse/core/-/core-10.5.0.tgz':
resolution: {integrity: sha512-z/tI2eSvxwLRjOhDm0h/SXAjNm8N5ld6/SC/JQs6o6kpJ6Ya50LnEL8g5hoYu005i28L0zqB5L5yAl8Jl26K3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/core/-/core-10.5.0.tgz}
name: '@vueuse/core'
version: 10.5.0
'@vueuse/integrations@https://registry.npmmirror.com/@vueuse/integrations/-/integrations-10.5.0.tgz':
resolution: {integrity: sha512-fm5sXLCK0Ww3rRnzqnCQRmfjDURaI4xMsx+T+cec0ngQqHx/JgUtm8G0vRjwtonIeTBsH1Q8L3SucE+7K7upJQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/integrations/-/integrations-10.5.0.tgz}
name: '@vueuse/integrations'
version: 10.5.0
peerDependencies:
async-validator: '*'
axios: '*'
change-case: '*'
drauu: '*'
focus-trap: '*'
fuse.js: '*'
idb-keyval: '*'
jwt-decode: '*'
nprogress: '*'
qrcode: '*'
sortablejs: '*'
universal-cookie: '*'
peerDependenciesMeta:
async-validator:
optional: true
axios:
optional: true
change-case:
optional: true
drauu:
optional: true
focus-trap:
optional: true
fuse.js:
optional: true
idb-keyval:
optional: true
jwt-decode:
optional: true
nprogress:
optional: true
qrcode:
optional: true
sortablejs:
optional: true
universal-cookie:
optional: true
'@vueuse/metadata@https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.5.0.tgz':
resolution: {integrity: sha512-fEbElR+MaIYyCkeM0SzWkdoMtOpIwO72x8WsZHRE7IggiOlILttqttM69AS13nrDxosnDBYdyy3C5mR1LCxHsw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.5.0.tgz}
name: '@vueuse/metadata'
version: 10.5.0
'@vueuse/shared@https://registry.npmmirror.com/@vueuse/shared/-/shared-10.5.0.tgz':
resolution: {integrity: sha512-18iyxbbHYLst9MqU1X1QNdMHIjks6wC7XTVf0KNOv5es/Ms6gjVFCAAWTVP2JStuGqydg3DT+ExpFORUEi9yhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vueuse/shared/-/shared-10.5.0.tgz}
name: '@vueuse/shared'
version: 10.5.0
algoliasearch@https://registry.npmmirror.com/algoliasearch/-/algoliasearch-4.20.0.tgz:
resolution: {integrity: sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/algoliasearch/-/algoliasearch-4.20.0.tgz}
name: algoliasearch
version: 4.20.0
ansi-sequence-parser@https://registry.npmmirror.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz:
resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz}
name: ansi-sequence-parser
version: 1.1.1
csstype@https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz:
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz}
name: csstype
version: 3.1.2
esbuild@https://registry.npmmirror.com/esbuild/-/esbuild-0.18.20.tgz:
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild/-/esbuild-0.18.20.tgz}
name: esbuild
version: 0.18.20
engines: {node: '>=12'}
hasBin: true
estree-walker@https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz}
name: estree-walker
version: 2.0.2
focus-trap@https://registry.npmmirror.com/focus-trap/-/focus-trap-7.5.3.tgz:
resolution: {integrity: sha512-7UsT/eSJcTPF0aZp73u7hBRTABz26knRRTJfoTGFCQD5mUImLIIOwWWCrtoQdmWa7dykBi6H+Cp5i3S/kvsMeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/focus-trap/-/focus-trap-7.5.3.tgz}
name: focus-trap
version: 7.5.3
fsevents@https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz}
name: fsevents
version: 2.3.3
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
jsonc-parser@https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz}
name: jsonc-parser
version: 3.2.0
magic-string@https://registry.npmmirror.com/magic-string/-/magic-string-0.30.4.tgz:
resolution: {integrity: sha512-Q/TKtsC5BPm0kGqgBIF9oXAs/xEf2vRKiIB4wCRQTJOQIByZ1d+NnUOotvJOvNpi5RNIgVOMC3pOuaP1ZTDlVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/magic-string/-/magic-string-0.30.4.tgz}
name: magic-string
version: 0.30.4
engines: {node: '>=12'}
mark.js@https://registry.npmmirror.com/mark.js/-/mark.js-8.11.1.tgz:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mark.js/-/mark.js-8.11.1.tgz}
name: mark.js
version: 8.11.1
markdown-it-task-lists@https://registry.npmmirror.com/markdown-it-task-lists/-/markdown-it-task-lists-2.1.1.tgz:
resolution: {integrity: sha512-TxFAc76Jnhb2OUu+n3yz9RMu4CwGfaT788br6HhEDlvWfdeJcLUsxk1Hgw2yJio0OXsxv7pyIPmvECY7bMbluA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/markdown-it-task-lists/-/markdown-it-task-lists-2.1.1.tgz}
name: markdown-it-task-lists
version: 2.1.1
minisearch@https://registry.npmmirror.com/minisearch/-/minisearch-6.1.0.tgz:
resolution: {integrity: sha512-PNxA/X8pWk+TiqPbsoIYH0GQ5Di7m6326/lwU/S4mlo4wGQddIcf/V//1f9TB0V4j59b57b+HZxt8h3iMROGvg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/minisearch/-/minisearch-6.1.0.tgz}
name: minisearch
version: 6.1.0
nanoid@https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz:
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz}
name: nanoid
version: 3.3.6
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
picocolors@https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz}
name: picocolors
version: 1.0.0
postcss@https://registry.npmmirror.com/postcss/-/postcss-8.4.31.tgz:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/postcss/-/postcss-8.4.31.tgz}
name: postcss
version: 8.4.31
engines: {node: ^10 || ^12 || >=14}
preact@https://registry.npmmirror.com/preact/-/preact-10.18.1.tgz:
resolution: {integrity: sha512-mKUD7RRkQQM6s7Rkmi7IFkoEHjuFqRQUaXamO61E6Nn7vqF/bo7EZCmSyrUnp2UWHw0O7XjZ2eeXis+m7tf4lg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/preact/-/preact-10.18.1.tgz}
name: preact
version: 10.18.1
rollup@https://registry.npmmirror.com/rollup/-/rollup-3.29.4.tgz:
resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-3.29.4.tgz}
name: rollup
version: 3.29.4
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
search-insights@https://registry.npmmirror.com/search-insights/-/search-insights-2.8.3.tgz:
resolution: {integrity: sha512-W9rZfQ9XEfF0O6ntgQOTI7Txc8nkZrO4eJ/pTHK0Br6wWND2sPGPoWg+yGhdIW7wMbLqk8dc23IyEtLlNGpeNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/search-insights/-/search-insights-2.8.3.tgz}
name: search-insights
version: 2.8.3
shiki@https://registry.npmmirror.com/shiki/-/shiki-0.14.4.tgz:
resolution: {integrity: sha512-IXCRip2IQzKwxArNNq1S+On4KPML3Yyn8Zzs/xRgcgOWIr8ntIK3IKzjFPfjy/7kt9ZMjc+FItfqHRBg8b6tNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/shiki/-/shiki-0.14.4.tgz}
name: shiki
version: 0.14.4
source-map-js@https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz}
name: source-map-js
version: 1.0.2
engines: {node: '>=0.10.0'}
tabbable@https://registry.npmmirror.com/tabbable/-/tabbable-6.2.0.tgz:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tabbable/-/tabbable-6.2.0.tgz}
name: tabbable
version: 6.2.0
to-fast-properties@https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz}
name: to-fast-properties
version: 2.0.0
engines: {node: '>=4'}
vite@https://registry.npmmirror.com/vite/-/vite-4.4.11.tgz:
resolution: {integrity: sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vite/-/vite-4.4.11.tgz}
name: vite
version: 4.4.11
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
'@types/node': '>= 14'
less: '*'
lightningcss: ^1.21.0
sass: '*'
stylus: '*'
sugarss: '*'
terser: ^5.4.0
peerDependenciesMeta:
'@types/node':
optional: true
less:
optional: true
lightningcss:
optional: true
sass:
optional: true
stylus:
optional: true
sugarss:
optional: true
terser:
optional: true
vitepress@https://registry.npmmirror.com/vitepress/-/vitepress-1.0.0-rc.20.tgz:
resolution: {integrity: sha512-CykMUJ8JLxLcGWek0ew3wln4RYbsOd1+0YzXITTpajggpynm2S331TNkJVOkHrMRc6GYe3y4pS40GfgcW0ZwAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vitepress/-/vitepress-1.0.0-rc.20.tgz}
name: vitepress
version: 1.0.0-rc.20
hasBin: true
peerDependencies:
markdown-it-mathjax3: ^4.3.2
postcss: ^8.4.30
peerDependenciesMeta:
markdown-it-mathjax3:
optional: true
postcss:
optional: true
vscode-oniguruma@https://registry.npmmirror.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz:
resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz}
name: vscode-oniguruma
version: 1.7.0
vscode-textmate@https://registry.npmmirror.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz:
resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz}
name: vscode-textmate
version: 8.0.0
vue-demi@https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz:
resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz}
name: vue-demi
version: 0.14.6
engines: {node: '>=12'}
hasBin: true
peerDependencies:
'@vue/composition-api': ^1.0.0-rc.1
vue: ^3.0.0-0 || ^2.6.0
peerDependenciesMeta:
'@vue/composition-api':
optional: true
vue@https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz:
resolution: {integrity: sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz}
name: vue
version: 3.3.4
snapshots:
'@algolia/autocomplete-core@https://registry.npmmirror.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz(@algolia/[email protected])([email protected])([email protected])':
dependencies:
'@algolia/autocomplete-plugin-algolia-insights': https://registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz(@algolia/[email protected])([email protected])([email protected])
'@algolia/autocomplete-shared': https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz(@algolia/[email protected])([email protected])
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
'@algolia/autocomplete-plugin-algolia-insights@https://registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz(@algolia/[email protected])([email protected])([email protected])':
dependencies:
'@algolia/autocomplete-shared': https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz(@algolia/[email protected])([email protected])
search-insights: https://registry.npmmirror.com/search-insights/-/search-insights-2.8.3.tgz
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
'@algolia/autocomplete-preset-algolia@https://registry.npmmirror.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz(@algolia/[email protected])([email protected])':
dependencies:
'@algolia/autocomplete-shared': https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz(@algolia/[email protected])([email protected])
'@algolia/client-search': https://registry.npmmirror.com/@algolia/client-search/-/client-search-4.20.0.tgz
algoliasearch: https://registry.npmmirror.com/algoliasearch/-/algoliasearch-4.20.0.tgz
'@algolia/autocomplete-shared@https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz(@algolia/[email protected])([email protected])':
dependencies:
'@algolia/client-search': https://registry.npmmirror.com/@algolia/client-search/-/client-search-4.20.0.tgz
algoliasearch: https://registry.npmmirror.com/algoliasearch/-/algoliasearch-4.20.0.tgz
'@algolia/cache-browser-local-storage@https://registry.npmmirror.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.20.0.tgz':
dependencies:
'@algolia/cache-common': https://registry.npmmirror.com/@algolia/cache-common/-/cache-common-4.20.0.tgz
'@algolia/cache-common@https://registry.npmmirror.com/@algolia/cache-common/-/cache-common-4.20.0.tgz': {}
'@algolia/cache-in-memory@https://registry.npmmirror.com/@algolia/cache-in-memory/-/cache-in-memory-4.20.0.tgz':
dependencies:
'@algolia/cache-common': https://registry.npmmirror.com/@algolia/cache-common/-/cache-common-4.20.0.tgz
'@algolia/client-account@https://registry.npmmirror.com/@algolia/client-account/-/client-account-4.20.0.tgz':
dependencies:
'@algolia/client-common': https://registry.npmmirror.com/@algolia/client-common/-/client-common-4.20.0.tgz
'@algolia/client-search': https://registry.npmmirror.com/@algolia/client-search/-/client-search-4.20.0.tgz
'@algolia/transporter': https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.20.0.tgz
'@algolia/client-analytics@https://registry.npmmirror.com/@algolia/client-analytics/-/client-analytics-4.20.0.tgz':
dependencies:
'@algolia/client-common': https://registry.npmmirror.com/@algolia/client-common/-/client-common-4.20.0.tgz
'@algolia/client-search': https://registry.npmmirror.com/@algolia/client-search/-/client-search-4.20.0.tgz
'@algolia/requester-common': https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz
'@algolia/transporter': https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.20.0.tgz
'@algolia/client-common@https://registry.npmmirror.com/@algolia/client-common/-/client-common-4.20.0.tgz':
dependencies:
'@algolia/requester-common': https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz
'@algolia/transporter': https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.20.0.tgz
'@algolia/client-personalization@https://registry.npmmirror.com/@algolia/client-personalization/-/client-personalization-4.20.0.tgz':
dependencies:
'@algolia/client-common': https://registry.npmmirror.com/@algolia/client-common/-/client-common-4.20.0.tgz
'@algolia/requester-common': https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz
'@algolia/transporter': https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.20.0.tgz
'@algolia/client-search@https://registry.npmmirror.com/@algolia/client-search/-/client-search-4.20.0.tgz':
dependencies:
'@algolia/client-common': https://registry.npmmirror.com/@algolia/client-common/-/client-common-4.20.0.tgz
'@algolia/requester-common': https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz
'@algolia/transporter': https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.20.0.tgz
'@algolia/logger-common@https://registry.npmmirror.com/@algolia/logger-common/-/logger-common-4.20.0.tgz': {}
'@algolia/logger-console@https://registry.npmmirror.com/@algolia/logger-console/-/logger-console-4.20.0.tgz':
dependencies:
'@algolia/logger-common': https://registry.npmmirror.com/@algolia/logger-common/-/logger-common-4.20.0.tgz
'@algolia/requester-browser-xhr@https://registry.npmmirror.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.20.0.tgz':
dependencies:
'@algolia/requester-common': https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz
'@algolia/requester-common@https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz': {}
'@algolia/requester-node-http@https://registry.npmmirror.com/@algolia/requester-node-http/-/requester-node-http-4.20.0.tgz':
dependencies:
'@algolia/requester-common': https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz
'@algolia/transporter@https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.20.0.tgz':
dependencies:
'@algolia/cache-common': https://registry.npmmirror.com/@algolia/cache-common/-/cache-common-4.20.0.tgz
'@algolia/logger-common': https://registry.npmmirror.com/@algolia/logger-common/-/logger-common-4.20.0.tgz
'@algolia/requester-common': https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz
'@babel/helper-string-parser@https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz': {}
'@babel/helper-validator-identifier@https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz': {}
'@babel/parser@https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz':
dependencies:
'@babel/types': https://registry.npmmirror.com/@babel/types/-/types-7.23.0.tgz
'@babel/types@https://registry.npmmirror.com/@babel/types/-/types-7.23.0.tgz':
dependencies:
'@babel/helper-string-parser': https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz
'@babel/helper-validator-identifier': https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz
to-fast-properties: https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz
'@docsearch/css@https://registry.npmmirror.com/@docsearch/css/-/css-3.5.2.tgz': {}
'@docsearch/js@https://registry.npmmirror.com/@docsearch/js/-/js-3.5.2.tgz(@algolia/[email protected])([email protected])':
dependencies:
'@docsearch/react': https://registry.npmmirror.com/@docsearch/react/-/react-3.5.2.tgz(@algolia/[email protected])([email protected])
preact: https://registry.npmmirror.com/preact/-/preact-10.18.1.tgz
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
- react
- react-dom
- search-insights
'@docsearch/react@https://registry.npmmirror.com/@docsearch/react/-/react-3.5.2.tgz(@algolia/[email protected])([email protected])':
dependencies:
'@algolia/autocomplete-core': https://registry.npmmirror.com/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz(@algolia/[email protected])([email protected])([email protected])
'@algolia/autocomplete-preset-algolia': https://registry.npmmirror.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz(@algolia/[email protected])([email protected])
'@docsearch/css': https://registry.npmmirror.com/@docsearch/css/-/css-3.5.2.tgz
algoliasearch: https://registry.npmmirror.com/algoliasearch/-/algoliasearch-4.20.0.tgz
search-insights: https://registry.npmmirror.com/search-insights/-/search-insights-2.8.3.tgz
transitivePeerDependencies:
- '@algolia/client-search'
'@esbuild/android-arm64@https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz':
optional: true
'@esbuild/android-arm@https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz':
optional: true
'@esbuild/android-x64@https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz':
optional: true
'@esbuild/darwin-arm64@https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz':
optional: true
'@esbuild/darwin-x64@https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz':
optional: true
'@esbuild/freebsd-arm64@https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz':
optional: true
'@esbuild/freebsd-x64@https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz':
optional: true
'@esbuild/linux-arm64@https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz':
optional: true
'@esbuild/linux-arm@https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz':
optional: true
'@esbuild/linux-ia32@https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz':
optional: true
'@esbuild/linux-loong64@https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz':
optional: true
'@esbuild/linux-mips64el@https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz':
optional: true
'@esbuild/linux-ppc64@https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz':
optional: true
'@esbuild/linux-riscv64@https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz':
optional: true
'@esbuild/linux-s390x@https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz':
optional: true
'@esbuild/linux-x64@https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz':
optional: true
'@esbuild/netbsd-x64@https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz':
optional: true
'@esbuild/openbsd-x64@https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz':
optional: true
'@esbuild/sunos-x64@https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz':
optional: true
'@esbuild/win32-arm64@https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz':
optional: true
'@esbuild/win32-ia32@https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz':
optional: true
'@esbuild/win32-x64@https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz':
optional: true
'@jridgewell/sourcemap-codec@https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz': {}
'@types/linkify-it@https://registry.npmmirror.com/@types/linkify-it/-/linkify-it-3.0.3.tgz': {}
'@types/markdown-it@https://registry.npmmirror.com/@types/markdown-it/-/markdown-it-13.0.2.tgz':
dependencies:
'@types/linkify-it': https://registry.npmmirror.com/@types/linkify-it/-/linkify-it-3.0.3.tgz
'@types/mdurl': https://registry.npmmirror.com/@types/mdurl/-/mdurl-1.0.3.tgz
'@types/mdurl@https://registry.npmmirror.com/@types/mdurl/-/mdurl-1.0.3.tgz': {}
'@types/web-bluetooth@https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.18.tgz': {}
'@vue/compiler-core@https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz':
dependencies:
'@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz
'@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz
estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz
source-map-js: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz
'@vue/compiler-dom@https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz':
dependencies:
'@vue/compiler-core': https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz
'@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz
'@vue/compiler-sfc@https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz':
dependencies:
'@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz
'@vue/compiler-core': https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz
'@vue/compiler-dom': https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz
'@vue/compiler-ssr': https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz
'@vue/reactivity-transform': https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz
'@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz
estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz
magic-string: https://registry.npmmirror.com/magic-string/-/magic-string-0.30.4.tgz
postcss: https://registry.npmmirror.com/postcss/-/postcss-8.4.31.tgz
source-map-js: https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz
'@vue/compiler-ssr@https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz':
dependencies:
'@vue/compiler-dom': https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz
'@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz
'@vue/devtools-api@https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz': {}
'@vue/reactivity-transform@https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz':
dependencies:
'@babel/parser': https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz
'@vue/compiler-core': https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz
'@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz
estree-walker: https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz
magic-string: https://registry.npmmirror.com/magic-string/-/magic-string-0.30.4.tgz
'@vue/reactivity@https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz':
dependencies:
'@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz
'@vue/runtime-core@https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz':
dependencies:
'@vue/reactivity': https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz
'@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz
'@vue/runtime-dom@https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz':
dependencies:
'@vue/runtime-core': https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz
'@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz
csstype: https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz
'@vue/server-renderer@https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz([email protected])':
dependencies:
'@vue/compiler-ssr': https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz
'@vue/shared': https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz
vue: https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz
'@vue/shared@https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz': {}
'@vueuse/core@https://registry.npmmirror.com/@vueuse/core/-/core-10.5.0.tgz([email protected])':
dependencies:
'@types/web-bluetooth': https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.18.tgz
'@vueuse/metadata': https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.5.0.tgz
'@vueuse/shared': https://registry.npmmirror.com/@vueuse/shared/-/shared-10.5.0.tgz([email protected])
vue-demi: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz([email protected])
transitivePeerDependencies:
- '@vue/composition-api'
- vue
'@vueuse/integrations@https://registry.npmmirror.com/@vueuse/integrations/-/integrations-10.5.0.tgz([email protected])([email protected])':
dependencies:
'@vueuse/core': https://registry.npmmirror.com/@vueuse/core/-/core-10.5.0.tgz([email protected])
'@vueuse/shared': https://registry.npmmirror.com/@vueuse/shared/-/shared-10.5.0.tgz([email protected])
focus-trap: https://registry.npmmirror.com/focus-trap/-/focus-trap-7.5.3.tgz
vue-demi: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz([email protected])
transitivePeerDependencies:
- '@vue/composition-api'
- vue
'@vueuse/metadata@https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.5.0.tgz': {}
'@vueuse/shared@https://registry.npmmirror.com/@vueuse/shared/-/shared-10.5.0.tgz([email protected])':
dependencies:
vue-demi: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz([email protected])
transitivePeerDependencies:
- '@vue/composition-api'
- vue
algoliasearch@https://registry.npmmirror.com/algoliasearch/-/algoliasearch-4.20.0.tgz:
dependencies:
'@algolia/cache-browser-local-storage': https://registry.npmmirror.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.20.0.tgz
'@algolia/cache-common': https://registry.npmmirror.com/@algolia/cache-common/-/cache-common-4.20.0.tgz
'@algolia/cache-in-memory': https://registry.npmmirror.com/@algolia/cache-in-memory/-/cache-in-memory-4.20.0.tgz
'@algolia/client-account': https://registry.npmmirror.com/@algolia/client-account/-/client-account-4.20.0.tgz
'@algolia/client-analytics': https://registry.npmmirror.com/@algolia/client-analytics/-/client-analytics-4.20.0.tgz
'@algolia/client-common': https://registry.npmmirror.com/@algolia/client-common/-/client-common-4.20.0.tgz
'@algolia/client-personalization': https://registry.npmmirror.com/@algolia/client-personalization/-/client-personalization-4.20.0.tgz
'@algolia/client-search': https://registry.npmmirror.com/@algolia/client-search/-/client-search-4.20.0.tgz
'@algolia/logger-common': https://registry.npmmirror.com/@algolia/logger-common/-/logger-common-4.20.0.tgz
'@algolia/logger-console': https://registry.npmmirror.com/@algolia/logger-console/-/logger-console-4.20.0.tgz
'@algolia/requester-browser-xhr': https://registry.npmmirror.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.20.0.tgz
'@algolia/requester-common': https://registry.npmmirror.com/@algolia/requester-common/-/requester-common-4.20.0.tgz
'@algolia/requester-node-http': https://registry.npmmirror.com/@algolia/requester-node-http/-/requester-node-http-4.20.0.tgz
'@algolia/transporter': https://registry.npmmirror.com/@algolia/transporter/-/transporter-4.20.0.tgz
ansi-sequence-parser@https://registry.npmmirror.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz: {}