forked from BlizzBolts/docit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
4775 lines (4261 loc) · 267 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: 5.4
overrides:
react-is: 16.13.1
'@types/react': 17.0.38
'@types/react-dom': 17.0.11
patchedDependencies: {}
specifiers:
'@mdx-js/mdx': 2.1.5
'@mdx-js/react': 2.1.5
'@mdx-js/rollup': 2.1.5
'@rollup/plugin-node-resolve': ^13.1.3
'@types/fs-extra': ^9.0.13
'@types/lodash-es': ^4.17.6
'@types/mdast': ^3.0.10
'@types/minimist': ^1.2.2
'@types/node': ^17.0.12
'@types/react': 17.0.38
'@types/react-dom': 17.0.11
'@types/react-router-dom': 5.3.0
'@types/resolve': ^1.20.1
'@types/styled-components': ^5.1.24
'@vitejs/plugin-react': ^1.1.4
bundle-require: ^3.0.4
chalk: ^5.0.0
chokidar: ^3.5.2
fs-extra: ^10.0.0
gh-pages: ^3.2.3
globby: ^13.1.0
gray-matter: ^4.0.3
highlight.js: ^11.5.0
lodash-es: ^4.17.21
mdast: ^3.0.0
mdast-util-toc: ^6.1.0
minimist: ^1.2.5
normalize.css: ^8.0.1
npm-run-all: ^4.1.5
qrcode: 1.5.0
react: ^17.0.2
react-docgen-typescript: ^2.2.2
react-dom: ^17.0.2
react-router: 6.3.0
react-router-dom: 6.3.0
rehype-highlight: ^5.0.2
rehype-slug: ^5.0.1
rehype-stringify: ^9.0.3
remark: ^14.0.2
remark-emoji: ^3.0.2
remark-frontmatter: ^4.0.1
remark-gfm: ^3.0.1
remark-mdx: ^2.1.5
remark-parse: ^10.0.1
remark-rehype: ^10.1.0
remark-stringify: ^10.0.2
resolve: ^1.19.0
rimraf: ^3.0.2
rollup: ^2.59.0
sass: ^1.49.9
simpler-state: ^1.1.0
styled-components: ^5.3.3
typescript: ^4.6.2
unified: ^10.1.2
unist-util-select: ^4.0.1
unist-util-visit: ^4.0.0
vfile: ^5.3.5
vite: 2.9.13
vite-plugin-virtual: ^0.1.1
vitest: ^0.7.6
dependencies:
'@mdx-js/mdx': registry.npmmirror.com/@mdx-js/mdx/2.1.5
'@mdx-js/react': registry.npmmirror.com/@mdx-js/react/2.1.5_react@17.0.2
'@mdx-js/rollup': registry.npmmirror.com/@mdx-js/rollup/2.1.5_rollup@2.79.1
'@rollup/plugin-node-resolve': registry.npmmirror.com/@rollup/plugin-node-resolve/13.3.0_rollup@2.79.1
'@vitejs/plugin-react': registry.npmmirror.com/@vitejs/plugin-react/1.3.2
bundle-require: registry.npmmirror.com/bundle-require/3.1.2
chalk: registry.npmmirror.com/chalk/5.1.2
chokidar: registry.npmmirror.com/chokidar/3.5.3
fs-extra: registry.npmmirror.com/fs-extra/10.1.0
globby: registry.npmmirror.com/globby/13.1.2
gray-matter: registry.npmmirror.com/gray-matter/4.0.3
highlight.js: registry.npmmirror.com/highlight.js/11.6.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
mdast: registry.npmmirror.com/mdast/3.0.0
mdast-util-toc: registry.npmmirror.com/mdast-util-toc/6.1.0
minimist: registry.npmmirror.com/minimist/1.2.7
normalize.css: registry.npmmirror.com/normalize.css/8.0.1
npm-run-all: registry.npmmirror.com/npm-run-all/4.1.5
qrcode: registry.npmmirror.com/qrcode/1.5.0
react: registry.npmmirror.com/react/17.0.2
react-docgen-typescript: registry.npmmirror.com/react-docgen-typescript/2.2.2_typescript@4.9.3
react-dom: registry.npmmirror.com/react-dom/17.0.2_react@17.0.2
react-router: registry.npmmirror.com/react-router/6.3.0_react@17.0.2
react-router-dom: registry.npmmirror.com/react-router-dom/6.3.0_sfoxds7t5ydpegc3knd667wn6m
rehype-highlight: registry.npmmirror.com/rehype-highlight/5.0.2
rehype-slug: registry.npmmirror.com/rehype-slug/5.1.0
remark: registry.npmmirror.com/remark/14.0.2
remark-emoji: registry.npmmirror.com/remark-emoji/3.0.2
remark-frontmatter: registry.npmmirror.com/remark-frontmatter/4.0.1
remark-gfm: registry.npmmirror.com/remark-gfm/3.0.1
remark-mdx: registry.npmmirror.com/remark-mdx/2.1.5
remark-parse: registry.npmmirror.com/remark-parse/10.0.1
remark-stringify: registry.npmmirror.com/remark-stringify/10.0.2
resolve: registry.npmmirror.com/resolve/1.22.1
rimraf: registry.npmmirror.com/rimraf/3.0.2
rollup: registry.npmmirror.com/rollup/2.79.1
sass: registry.npmmirror.com/sass/1.56.1
simpler-state: registry.npmmirror.com/simpler-state/1.2.0_react@17.0.2
styled-components: registry.npmmirror.com/styled-components/5.3.6_sfoxds7t5ydpegc3knd667wn6m
typescript: registry.npmmirror.com/typescript/4.9.3
unified: registry.npmmirror.com/unified/10.1.2
unist-util-select: registry.npmmirror.com/unist-util-select/4.0.1
unist-util-visit: registry.npmmirror.com/unist-util-visit/4.1.1
vite: registry.npmmirror.com/vite/2.9.13_sass@1.56.1
vite-plugin-virtual: registry.npmmirror.com/vite-plugin-virtual/0.1.1_vite@2.9.13
devDependencies:
'@types/fs-extra': registry.npmmirror.com/@types/fs-extra/9.0.13
'@types/lodash-es': registry.npmmirror.com/@types/lodash-es/4.17.6
'@types/mdast': registry.npmmirror.com/@types/mdast/3.0.10
'@types/minimist': registry.npmmirror.com/@types/minimist/1.2.2
'@types/node': registry.npmmirror.com/@types/node/17.0.45
'@types/react': registry.npmmirror.com/@types/react/17.0.38
'@types/react-dom': registry.npmmirror.com/@types/react-dom/17.0.11
'@types/react-router-dom': registry.npmmirror.com/@types/react-router-dom/5.3.0
'@types/resolve': registry.npmmirror.com/@types/resolve/1.20.2
'@types/styled-components': registry.npmmirror.com/@types/styled-components/5.1.26
gh-pages: registry.npmmirror.com/gh-pages/3.2.3
rehype-stringify: registry.npmmirror.com/rehype-stringify/9.0.3
remark-rehype: registry.npmmirror.com/remark-rehype/10.1.0
vfile: registry.npmmirror.com/vfile/5.3.5
vitest: registry.npmmirror.com/vitest/0.7.13_sass@1.56.1
packages:
registry.npmmirror.com/@ampproject/remapping/2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.0.tgz}
name: '@ampproject/remapping'
version: 2.2.0
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.1.1
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.17
dev: false
registry.npmmirror.com/@babel/code-frame/7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.18.6.tgz}
name: '@babel/code-frame'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight/7.18.6
dev: false
registry.npmmirror.com/@babel/compat-data/7.20.1:
resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.20.1.tgz}
name: '@babel/compat-data'
version: 7.20.1
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/core/7.20.2:
resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.20.2.tgz}
name: '@babel/core'
version: 7.20.2
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.2.0
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/generator': registry.npmmirror.com/@babel/generator/7.20.4
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.20.2
'@babel/helpers': registry.npmmirror.com/@babel/helpers/7.20.1
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.3
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.20.1
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
convert-source-map: registry.npmmirror.com/convert-source-map/1.9.0
debug: registry.npmmirror.com/debug/4.3.4
gensync: registry.npmmirror.com/gensync/1.0.0-beta.2
json5: registry.npmmirror.com/json5/2.2.1
semver: registry.npmmirror.com/semver/6.3.0
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@babel/generator/7.20.4:
resolution: {integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.20.4.tgz}
name: '@babel/generator'
version: 7.20.4
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.2
jsesc: registry.npmmirror.com/jsesc/2.5.2
dev: false
registry.npmmirror.com/@babel/helper-annotate-as-pure/7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz}
name: '@babel/helper-annotate-as-pure'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
dev: false
registry.npmmirror.com/@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2:
resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz}
id: registry.npmmirror.com/@babel/helper-compilation-targets/7.20.0
name: '@babel/helper-compilation-targets'
version: 7.20.0
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.20.1
'@babel/core': registry.npmmirror.com/@babel/core/7.20.2
'@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.18.6
browserslist: registry.npmmirror.com/browserslist/4.21.4
semver: registry.npmmirror.com/semver/6.3.0
dev: false
registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz}
name: '@babel/helper-environment-visitor'
version: 7.18.9
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helper-function-name/7.19.0:
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz}
name: '@babel/helper-function-name'
version: 7.19.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
dev: false
registry.npmmirror.com/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz}
name: '@babel/helper-hoist-variables'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
dev: false
registry.npmmirror.com/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz}
name: '@babel/helper-module-imports'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
dev: false
registry.npmmirror.com/@babel/helper-module-transforms/7.20.2:
resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz}
name: '@babel/helper-module-transforms'
version: 7.20.2
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.18.6
'@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.20.2
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.20.1
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@babel/helper-plugin-utils/7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz}
name: '@babel/helper-plugin-utils'
version: 7.20.2
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helper-simple-access/7.20.2:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz}
name: '@babel/helper-simple-access'
version: 7.20.2
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
dev: false
registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
dev: false
registry.npmmirror.com/@babel/helper-string-parser/7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz}
name: '@babel/helper-string-parser'
version: 7.19.4
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz}
name: '@babel/helper-validator-identifier'
version: 7.19.1
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helper-validator-option/7.18.6:
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz}
name: '@babel/helper-validator-option'
version: 7.18.6
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helpers/7.20.1:
resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.20.1.tgz}
name: '@babel/helpers'
version: 7.20.1
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.18.10
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.20.1
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@babel/highlight/7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.18.6.tgz}
name: '@babel/highlight'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1
chalk: registry.npmmirror.com/chalk/2.4.2
js-tokens: registry.npmmirror.com/js-tokens/4.0.0
dev: false
registry.npmmirror.com/@babel/parser/7.20.3:
resolution: {integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.20.3.tgz}
name: '@babel/parser'
version: 7.20.3
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
dev: false
registry.npmmirror.com/@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.2:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.18.6
name: '@babel/plugin-syntax-jsx'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.20.2
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.20.2
dev: false
registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2:
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/7.18.6
name: '@babel/plugin-transform-react-jsx-development'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.20.2
'@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2
dev: false
registry.npmmirror.com/@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.2:
resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-react-jsx-self/7.18.6
name: '@babel/plugin-transform-react-jsx-self'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.20.2
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.20.2
dev: false
registry.npmmirror.com/@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.2:
resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-react-jsx-source/7.19.6
name: '@babel/plugin-transform-react-jsx-source'
version: 7.19.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.20.2
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.20.2
dev: false
registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2:
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.19.0
name: '@babel/plugin-transform-react-jsx'
version: 7.19.0
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.20.2
'@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.18.6
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.18.6
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.20.2
'@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.2
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
dev: false
registry.npmmirror.com/@babel/runtime/7.20.1:
resolution: {integrity: sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.20.1.tgz}
name: '@babel/runtime'
version: 7.20.1
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.13.10
registry.npmmirror.com/@babel/template/7.18.10:
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.18.10.tgz}
name: '@babel/template'
version: 7.18.10
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.3
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
dev: false
registry.npmmirror.com/@babel/traverse/7.20.1:
resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.20.1.tgz}
name: '@babel/traverse'
version: 7.20.1
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/generator': registry.npmmirror.com/@babel/generator/7.20.4
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.19.0
'@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.18.6
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.3
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
debug: registry.npmmirror.com/debug/4.3.4
globals: registry.npmmirror.com/globals/11.12.0
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@babel/traverse/7.20.1_supports-color@5.5.0:
resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.20.1.tgz}
id: registry.npmmirror.com/@babel/traverse/7.20.1
name: '@babel/traverse'
version: 7.20.1
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.18.6
'@babel/generator': registry.npmmirror.com/@babel/generator/7.20.4
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.19.0
'@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.18.6
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.3
'@babel/types': registry.npmmirror.com/@babel/types/7.20.2
debug: registry.npmmirror.com/debug/4.3.4_supports-color@5.5.0
globals: registry.npmmirror.com/globals/11.12.0
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@babel/types/7.20.2:
resolution: {integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.20.2.tgz}
name: '@babel/types'
version: 7.20.2
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser/7.19.4
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1
to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
dev: false
registry.npmmirror.com/@emotion/is-prop-valid/1.2.0:
resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz}
name: '@emotion/is-prop-valid'
version: 1.2.0
dependencies:
'@emotion/memoize': registry.npmmirror.com/@emotion/memoize/0.8.0
dev: false
registry.npmmirror.com/@emotion/memoize/0.8.0:
resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/memoize/-/memoize-0.8.0.tgz}
name: '@emotion/memoize'
version: 0.8.0
dev: false
registry.npmmirror.com/@emotion/stylis/0.8.5:
resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/stylis/-/stylis-0.8.5.tgz}
name: '@emotion/stylis'
version: 0.8.5
dev: false
registry.npmmirror.com/@emotion/unitless/0.7.5:
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.7.5.tgz}
name: '@emotion/unitless'
version: 0.7.5
dev: false
registry.npmmirror.com/@esbuild/linux-loong64/0.14.54:
resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz}
name: '@esbuild/linux-loong64'
version: 0.14.54
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
optional: true
registry.npmmirror.com/@jridgewell/gen-mapping/0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz}
name: '@jridgewell/gen-mapping'
version: 0.1.1
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array/1.1.2
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.14
dev: false
registry.npmmirror.com/@jridgewell/gen-mapping/0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz}
name: '@jridgewell/gen-mapping'
version: 0.3.2
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array/1.1.2
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.14
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.17
dev: false
registry.npmmirror.com/@jridgewell/resolve-uri/3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz}
name: '@jridgewell/resolve-uri'
version: 3.1.0
engines: {node: '>=6.0.0'}
dev: false
registry.npmmirror.com/@jridgewell/set-array/1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz}
name: '@jridgewell/set-array'
version: 1.1.2
engines: {node: '>=6.0.0'}
dev: false
registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz}
name: '@jridgewell/sourcemap-codec'
version: 1.4.14
dev: false
registry.npmmirror.com/@jridgewell/trace-mapping/0.3.17:
resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz}
name: '@jridgewell/trace-mapping'
version: 0.3.17
dependencies:
'@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri/3.1.0
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.14
dev: false
registry.npmmirror.com/@mdx-js/mdx/2.1.5:
resolution: {integrity: sha512-zEG0lt+Bl/r5U6e0TOS7qDbsXICtemfAPquxWFsMbdzrvlWaqMGemLl+sjVpqlyaaiCiGVQBSGdCk0t1qXjkQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdx-js/mdx/-/mdx-2.1.5.tgz}
name: '@mdx-js/mdx'
version: 2.1.5
dependencies:
'@types/estree-jsx': registry.npmmirror.com/@types/estree-jsx/1.0.0
'@types/mdx': registry.npmmirror.com/@types/mdx/2.0.3
estree-util-build-jsx: registry.npmmirror.com/estree-util-build-jsx/2.2.0
estree-util-is-identifier-name: registry.npmmirror.com/estree-util-is-identifier-name/2.0.1
estree-util-to-js: registry.npmmirror.com/estree-util-to-js/1.1.0
estree-walker: registry.npmmirror.com/estree-walker/3.0.1
hast-util-to-estree: registry.npmmirror.com/hast-util-to-estree/2.1.0
markdown-extensions: registry.npmmirror.com/markdown-extensions/1.1.1
periscopic: registry.npmmirror.com/periscopic/3.0.4
remark-mdx: registry.npmmirror.com/remark-mdx/2.1.5
remark-parse: registry.npmmirror.com/remark-parse/10.0.1
remark-rehype: registry.npmmirror.com/remark-rehype/10.1.0
unified: registry.npmmirror.com/unified/10.1.2
unist-util-position-from-estree: registry.npmmirror.com/unist-util-position-from-estree/1.1.1
unist-util-stringify-position: registry.npmmirror.com/unist-util-stringify-position/3.0.2
unist-util-visit: registry.npmmirror.com/unist-util-visit/4.1.1
vfile: registry.npmmirror.com/vfile/5.3.5
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@mdx-js/react/2.1.5_react@17.0.2:
resolution: {integrity: sha512-3Az1I6SAWA9R38rYjz5rXBrGKeZhq96CSSyQtqY+maPj8stBsoUH5pNcmIixuGkufYsh8F5+ka2CVPo2fycWZw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdx-js/react/-/react-2.1.5.tgz}
id: registry.npmmirror.com/@mdx-js/react/2.1.5
name: '@mdx-js/react'
version: 2.1.5
peerDependencies:
react: '>=16'
dependencies:
'@types/mdx': registry.npmmirror.com/@types/mdx/2.0.3
'@types/react': registry.npmmirror.com/@types/react/17.0.38
react: registry.npmmirror.com/react/17.0.2
dev: false
registry.npmmirror.com/@mdx-js/rollup/2.1.5_rollup@2.79.1:
resolution: {integrity: sha512-l90rSiwnEf6PnjH8uRXjZ1W0rR8p1fp1YIiDuA3uF7SOfxMQ98uymaIwI6BsX+8BC2dcWij7Racwp++JkvdOLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@mdx-js/rollup/-/rollup-2.1.5.tgz}
id: registry.npmmirror.com/@mdx-js/rollup/2.1.5
name: '@mdx-js/rollup'
version: 2.1.5
peerDependencies:
rollup: '>=2'
dependencies:
'@mdx-js/mdx': registry.npmmirror.com/@mdx-js/mdx/2.1.5
'@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/4.2.1
rollup: registry.npmmirror.com/rollup/2.79.1
source-map: registry.npmmirror.com/source-map/0.7.4
vfile: registry.npmmirror.com/vfile/5.3.5
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@nodelib/fs.scandir/2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz}
name: '@nodelib/fs.scandir'
version: 2.1.5
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
run-parallel: registry.npmmirror.com/run-parallel/1.2.0
dev: false
registry.npmmirror.com/@nodelib/fs.stat/2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz}
name: '@nodelib/fs.stat'
version: 2.0.5
engines: {node: '>= 8'}
dev: false
registry.npmmirror.com/@nodelib/fs.walk/1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz}
name: '@nodelib/fs.walk'
version: 1.2.8
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir/2.1.5
fastq: registry.npmmirror.com/fastq/1.13.0
dev: false
registry.npmmirror.com/@rollup/plugin-node-resolve/13.3.0_rollup@2.79.1:
resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz}
id: registry.npmmirror.com/@rollup/plugin-node-resolve/13.3.0
name: '@rollup/plugin-node-resolve'
version: 13.3.0
engines: {node: '>= 10.0.0'}
peerDependencies:
rollup: ^2.42.0
dependencies:
'@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/3.1.0_rollup@2.79.1
'@types/resolve': registry.npmmirror.com/@types/resolve/1.17.1
deepmerge: registry.npmmirror.com/deepmerge/4.2.2
is-builtin-module: registry.npmmirror.com/is-builtin-module/3.2.0
is-module: registry.npmmirror.com/is-module/1.0.0
resolve: registry.npmmirror.com/resolve/1.22.1
rollup: registry.npmmirror.com/rollup/2.79.1
dev: false
registry.npmmirror.com/@rollup/pluginutils/3.1.0_rollup@2.79.1:
resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz}
id: registry.npmmirror.com/@rollup/pluginutils/3.1.0
name: '@rollup/pluginutils'
version: 3.1.0
engines: {node: '>= 8.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
dependencies:
'@types/estree': registry.npmmirror.com/@types/estree/0.0.39
estree-walker: registry.npmmirror.com/estree-walker/1.0.1
picomatch: registry.npmmirror.com/picomatch/2.3.1
rollup: registry.npmmirror.com/rollup/2.79.1
dev: false
registry.npmmirror.com/@rollup/pluginutils/4.2.1:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz}
name: '@rollup/pluginutils'
version: 4.2.1
engines: {node: '>= 8.0.0'}
dependencies:
estree-walker: registry.npmmirror.com/estree-walker/2.0.2
picomatch: registry.npmmirror.com/picomatch/2.3.1
dev: false
registry.npmmirror.com/@types/acorn/4.0.6:
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/acorn/-/acorn-4.0.6.tgz}
name: '@types/acorn'
version: 4.0.6
dependencies:
'@types/estree': registry.npmmirror.com/@types/estree/1.0.0
dev: false
registry.npmmirror.com/@types/chai-subset/1.3.3:
resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/chai-subset/-/chai-subset-1.3.3.tgz}
name: '@types/chai-subset'
version: 1.3.3
dependencies:
'@types/chai': registry.npmmirror.com/@types/chai/4.3.4
dev: true
registry.npmmirror.com/@types/chai/4.3.4:
resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/chai/-/chai-4.3.4.tgz}
name: '@types/chai'
version: 4.3.4
dev: true
registry.npmmirror.com/@types/debug/4.1.7:
resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/debug/-/debug-4.1.7.tgz}
name: '@types/debug'
version: 4.1.7
dependencies:
'@types/ms': registry.npmmirror.com/@types/ms/0.7.31
dev: false
registry.npmmirror.com/@types/estree-jsx/1.0.0:
resolution: {integrity: sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/estree-jsx/-/estree-jsx-1.0.0.tgz}
name: '@types/estree-jsx'
version: 1.0.0
dependencies:
'@types/estree': registry.npmmirror.com/@types/estree/1.0.0
dev: false
registry.npmmirror.com/@types/estree/0.0.39:
resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/estree/-/estree-0.0.39.tgz}
name: '@types/estree'
version: 0.0.39
dev: false
registry.npmmirror.com/@types/estree/1.0.0:
resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/estree/-/estree-1.0.0.tgz}
name: '@types/estree'
version: 1.0.0
dev: false
registry.npmmirror.com/@types/extend/3.0.1:
resolution: {integrity: sha512-R1g/VyKFFI2HLC1QGAeTtCBWCo6n75l41OnsVYNbmKG+kempOESaodf6BeJyUM3Q0rKa/NQcTHbB2+66lNnxLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/extend/-/extend-3.0.1.tgz}
name: '@types/extend'
version: 3.0.1
dev: false
registry.npmmirror.com/@types/fs-extra/9.0.13:
resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/fs-extra/-/fs-extra-9.0.13.tgz}
name: '@types/fs-extra'
version: 9.0.13
dependencies:
'@types/node': registry.npmmirror.com/@types/node/17.0.45
dev: true
registry.npmmirror.com/@types/github-slugger/1.3.0:
resolution: {integrity: sha512-J/rMZa7RqiH/rT29TEVZO4nBoDP9XJOjnbbIofg7GQKs4JIduEO3WLpte+6WeUz/TcrXKlY+bM7FYrp8yFB+3g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/github-slugger/-/github-slugger-1.3.0.tgz}
name: '@types/github-slugger'
version: 1.3.0
dev: false
registry.npmmirror.com/@types/hast/2.3.4:
resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/hast/-/hast-2.3.4.tgz}
name: '@types/hast'
version: 2.3.4
dependencies:
'@types/unist': registry.npmmirror.com/@types/unist/2.0.6
registry.npmmirror.com/@types/history/4.7.11:
resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/history/-/history-4.7.11.tgz}
name: '@types/history'
version: 4.7.11
dev: true
registry.npmmirror.com/@types/history/5.0.0:
resolution: {integrity: sha512-hy8b7Y1J8OGe6LbAjj3xniQrj3v6lsivCcrmf4TzSgPzLkhIeKgc5IZnT7ReIqmEuodjfO8EYAuoFvIrHi/+jQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/history/-/history-5.0.0.tgz}
name: '@types/history'
version: 5.0.0
deprecated: This is a stub types definition. history provides its own type definitions, so you do not need this installed.
dependencies:
history: registry.npmmirror.com/history/5.3.0
dev: true
registry.npmmirror.com/@types/hoist-non-react-statics/3.3.1:
resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz}
name: '@types/hoist-non-react-statics'
version: 3.3.1
dependencies:
'@types/react': registry.npmmirror.com/@types/react/17.0.38
hoist-non-react-statics: registry.npmmirror.com/hoist-non-react-statics/3.3.2
dev: true
registry.npmmirror.com/@types/lodash-es/4.17.6:
resolution: {integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.6.tgz}
name: '@types/lodash-es'
version: 4.17.6
dependencies:
'@types/lodash': registry.npmmirror.com/@types/lodash/4.14.189
dev: true
registry.npmmirror.com/@types/lodash/4.14.189:
resolution: {integrity: sha512-kb9/98N6X8gyME9Cf7YaqIMvYGnBSWqEci6tiettE6iJWH1XdJz/PO8LB0GtLCG7x8dU3KWhZT+lA1a35127tA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.189.tgz}
name: '@types/lodash'
version: 4.14.189
dev: true
registry.npmmirror.com/@types/mdast/3.0.10:
resolution: {integrity: sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/mdast/-/mdast-3.0.10.tgz}
name: '@types/mdast'
version: 3.0.10
dependencies:
'@types/unist': registry.npmmirror.com/@types/unist/2.0.6
registry.npmmirror.com/@types/mdx/2.0.3:
resolution: {integrity: sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/mdx/-/mdx-2.0.3.tgz}
name: '@types/mdx'
version: 2.0.3
dev: false
registry.npmmirror.com/@types/minimist/1.2.2:
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/minimist/-/minimist-1.2.2.tgz}
name: '@types/minimist'
version: 1.2.2
dev: true
registry.npmmirror.com/@types/ms/0.7.31:
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/ms/-/ms-0.7.31.tgz}
name: '@types/ms'
version: 0.7.31
dev: false
registry.npmmirror.com/@types/node/17.0.45:
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-17.0.45.tgz}
name: '@types/node'
version: 17.0.45
registry.npmmirror.com/@types/prop-types/15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/prop-types/-/prop-types-15.7.5.tgz}
name: '@types/prop-types'
version: 15.7.5
registry.npmmirror.com/@types/react-dom/17.0.11:
resolution: {integrity: sha512-f96K3k+24RaLGVu/Y2Ng3e1EbZ8/cVJvypZWd7cy0ofCBaf2lcM46xNhycMZ2xGwbBjRql7hOlZ+e2WlJ5MH3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/react-dom/-/react-dom-17.0.11.tgz}
name: '@types/react-dom'
version: 17.0.11
dependencies:
'@types/react': registry.npmmirror.com/@types/react/17.0.38
dev: true
registry.npmmirror.com/@types/react-router-dom/5.3.0:
resolution: {integrity: sha512-svUzpEpKDwK8nmfV2vpZNSsiijFNKY8+gUqGqvGGOVrXvX58k1JIJubZa5igkwacbq/0umphO5SsQn/BQsnKpw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/react-router-dom/-/react-router-dom-5.3.0.tgz}
name: '@types/react-router-dom'
version: 5.3.0
dependencies:
'@types/history': registry.npmmirror.com/@types/history/5.0.0
'@types/react': registry.npmmirror.com/@types/react/17.0.38
'@types/react-router': registry.npmmirror.com/@types/react-router/5.1.19
dev: true
registry.npmmirror.com/@types/react-router/5.1.19:
resolution: {integrity: sha512-Fv/5kb2STAEMT3wHzdKQK2z8xKq38EDIGVrutYLmQVVLe+4orDFquU52hQrULnEHinMKv9FSA6lf9+uNT1ITtA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/react-router/-/react-router-5.1.19.tgz}
name: '@types/react-router'
version: 5.1.19
dependencies:
'@types/history': registry.npmmirror.com/@types/history/4.7.11
'@types/react': registry.npmmirror.com/@types/react/17.0.38
dev: true
registry.npmmirror.com/@types/react/17.0.38:
resolution: {integrity: sha512-SI92X1IA+FMnP3qM5m4QReluXzhcmovhZnLNm3pyeQlooi02qI7sLiepEYqT678uNiyc25XfCqxREFpy3W7YhQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/react/-/react-17.0.38.tgz}
name: '@types/react'
version: 17.0.38
dependencies:
'@types/prop-types': registry.npmmirror.com/@types/prop-types/15.7.5
'@types/scheduler': registry.npmmirror.com/@types/scheduler/0.16.2
csstype: registry.npmmirror.com/csstype/3.1.1
registry.npmmirror.com/@types/resolve/1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/resolve/-/resolve-1.17.1.tgz}
name: '@types/resolve'
version: 1.17.1
dependencies:
'@types/node': registry.npmmirror.com/@types/node/17.0.45
dev: false
registry.npmmirror.com/@types/resolve/1.20.2:
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/resolve/-/resolve-1.20.2.tgz}
name: '@types/resolve'
version: 1.20.2
dev: true
registry.npmmirror.com/@types/scheduler/0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/scheduler/-/scheduler-0.16.2.tgz}
name: '@types/scheduler'
version: 0.16.2
registry.npmmirror.com/@types/styled-components/5.1.26:
resolution: {integrity: sha512-KuKJ9Z6xb93uJiIyxo/+ksS7yLjS1KzG6iv5i78dhVg/X3u5t1H7juRWqVmodIdz6wGVaIApo1u01kmFRdJHVw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/styled-components/-/styled-components-5.1.26.tgz}
name: '@types/styled-components'
version: 5.1.26
dependencies:
'@types/hoist-non-react-statics': registry.npmmirror.com/@types/hoist-non-react-statics/3.3.1
'@types/react': registry.npmmirror.com/@types/react/17.0.38
csstype: registry.npmmirror.com/csstype/3.1.1
dev: true
registry.npmmirror.com/@types/unist/2.0.6:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/unist/-/unist-2.0.6.tgz}
name: '@types/unist'
version: 2.0.6
registry.npmmirror.com/@vitejs/plugin-react/1.3.2:
resolution: {integrity: sha512-aurBNmMo0kz1O4qRoY+FM4epSA39y3ShWGuqfLRA/3z0oEJAdtoSfgA3aO98/PCCHAqMaduLxIxErWrVKIFzXA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-react/-/plugin-react-1.3.2.tgz}
name: '@vitejs/plugin-react'
version: 1.3.2
engines: {node: '>=12.0.0'}
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.20.2
'@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2
'@babel/plugin-transform-react-jsx-development': registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2
'@babel/plugin-transform-react-jsx-self': registry.npmmirror.com/@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.2
'@babel/plugin-transform-react-jsx-source': registry.npmmirror.com/@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.2
'@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/4.2.1
react-refresh: registry.npmmirror.com/react-refresh/0.13.0
resolve: registry.npmmirror.com/resolve/1.22.1
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/acorn-jsx/5.3.2_acorn@8.8.1:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz}
id: registry.npmmirror.com/acorn-jsx/5.3.2
name: acorn-jsx
version: 5.3.2
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: registry.npmmirror.com/acorn/8.8.1
dev: false
registry.npmmirror.com/acorn/8.8.1:
resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.8.1.tgz}
name: acorn
version: 8.8.1
engines: {node: '>=0.4.0'}
hasBin: true
dev: false
registry.npmmirror.com/ansi-regex/5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz}
name: ansi-regex
version: 5.0.1
engines: {node: '>=8'}
dev: false
registry.npmmirror.com/ansi-styles/3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz}
name: ansi-styles
version: 3.2.1
engines: {node: '>=4'}
dependencies:
color-convert: registry.npmmirror.com/color-convert/1.9.3
dev: false
registry.npmmirror.com/ansi-styles/4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz}
name: ansi-styles
version: 4.3.0
engines: {node: '>=8'}
dependencies:
color-convert: registry.npmmirror.com/color-convert/2.0.1
dev: false
registry.npmmirror.com/anymatch/3.1.2:
resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/anymatch/-/anymatch-3.1.2.tgz}
name: anymatch
version: 3.1.2
engines: {node: '>= 8'}
dependencies:
normalize-path: registry.npmmirror.com/normalize-path/3.0.0
picomatch: registry.npmmirror.com/picomatch/2.3.1