-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
4199 lines (3765 loc) · 222 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.3
specifiers:
'@ant-design/icons-vue': ^6.0.1
'@types/node': ^17.0.21
'@types/nprogress': ^0.2.0
'@typescript-eslint/eslint-plugin': ^5.14.0
'@typescript-eslint/parser': ^5.14.0
'@vitejs/plugin-vue': ^2.2.0
'@vitejs/plugin-vue-jsx': ^1.3.8
'@vueuse/core': ^7.7.1
ant-design-vue: 3.1.0-rc.3
eslint: ^8.10.0
eslint-config-prettier: ^8.5.0
eslint-define-config: ^1.2.5
eslint-plugin-import: ^2.25.4
eslint-plugin-prettier: ^4.0.0
eslint-plugin-vue: ^8.5.0
less: ^4.1.2
nprogress: ^0.2.0
pinia: ^2.0.11
prettier: ^2.5.1
typescript: ^4.5.4
unplugin-auto-import: ^0.6.1
unplugin-vue-components: ^0.17.21
vite: ^2.8.0
vue: ^3.2.25
vue-eslint-parser: ^8.3.0
vue-router: ^4.0.13
vue-tsc: ^0.29.8
dependencies:
'@ant-design/icons-vue': registry.npmmirror.com/@ant-design/icons-vue/6.0.1_vue@3.2.31
'@vueuse/core': registry.npmmirror.com/@vueuse/core/7.7.1_vue@3.2.31
ant-design-vue: registry.npmmirror.com/ant-design-vue/3.1.0-rc.3_vue@3.2.31
nprogress: registry.npmmirror.com/nprogress/0.2.0
pinia: registry.npmmirror.com/pinia/2.0.11_typescript@4.6.2+vue@3.2.31
vue: registry.npmmirror.com/vue/3.2.31
vue-router: registry.npmmirror.com/vue-router/4.0.13_vue@3.2.31
devDependencies:
'@types/node': registry.npmmirror.com/@types/node/17.0.21
'@types/nprogress': registry.npmmirror.com/@types/nprogress/0.2.0
'@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.14.0_f4054b8c3cd621db16ae1b9d571bccc0
'@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.14.0_eslint@8.10.0+typescript@4.6.2
'@vitejs/plugin-vue': registry.npmmirror.com/@vitejs/plugin-vue/2.2.4_vite@2.8.6+vue@3.2.31
'@vitejs/plugin-vue-jsx': registry.npmmirror.com/@vitejs/plugin-vue-jsx/1.3.8
eslint: registry.npmmirror.com/eslint/8.10.0
eslint-config-prettier: registry.npmmirror.com/eslint-config-prettier/8.5.0_eslint@8.10.0
eslint-define-config: registry.npmmirror.com/eslint-define-config/1.2.5
eslint-plugin-import: registry.npmmirror.com/eslint-plugin-import/2.25.4_eslint@8.10.0
eslint-plugin-prettier: registry.npmmirror.com/eslint-plugin-prettier/4.0.0_f3d13a703a9c1079e3d1af6044603beb
eslint-plugin-vue: registry.npmmirror.com/eslint-plugin-vue/8.5.0_eslint@8.10.0
less: registry.npmmirror.com/less/4.1.2
prettier: registry.npmmirror.com/prettier/2.5.1
typescript: registry.npmmirror.com/typescript/4.6.2
unplugin-auto-import: registry.npmmirror.com/unplugin-auto-import/0.6.1_@vueuse+core@7.7.1+vite@2.8.6
unplugin-vue-components: registry.npmmirror.com/unplugin-vue-components/0.17.21_vite@2.8.6+vue@3.2.31
vite: registry.npmmirror.com/vite/2.8.6_less@4.1.2
vue-eslint-parser: registry.npmmirror.com/vue-eslint-parser/8.3.0_eslint@8.10.0
vue-tsc: registry.npmmirror.com/vue-tsc/0.29.8_typescript@4.6.2
packages:
registry.nlark.com/@nodelib/fs.scandir/2.1.5:
resolution: {integrity: sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/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: true
registry.nlark.com/concat-map/0.0.1:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/concat-map/download/concat-map-0.0.1.tgz}
name: concat-map
version: 0.0.1
dev: true
registry.npmmirror.com/@ampproject/remapping/2.1.2:
resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.1.2.tgz}
name: '@ampproject/remapping'
version: 2.1.2
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.4
dev: true
registry.npmmirror.com/@ant-design/colors/5.1.1:
resolution: {integrity: sha512-Txy4KpHrp3q4XZdfgOBqLl+lkQIc3tEvHXOimRN1giX1AEC7mGtyrO9p8iRGJ3FLuVMGa2gNEzQyghVymLttKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ant-design/colors/-/colors-5.1.1.tgz}
name: '@ant-design/colors'
version: 5.1.1
dependencies:
'@ctrl/tinycolor': registry.npmmirror.com/@ctrl/tinycolor/3.4.0
dev: false
registry.npmmirror.com/@ant-design/colors/6.0.0:
resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ant-design/colors/-/colors-6.0.0.tgz}
name: '@ant-design/colors'
version: 6.0.0
dependencies:
'@ctrl/tinycolor': registry.npmmirror.com/@ctrl/tinycolor/3.4.0
dev: false
registry.npmmirror.com/@ant-design/icons-svg/4.2.1:
resolution: {integrity: sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ant-design/icons-svg/-/icons-svg-4.2.1.tgz}
name: '@ant-design/icons-svg'
version: 4.2.1
dev: false
registry.npmmirror.com/@ant-design/icons-vue/6.0.1_vue@3.2.31:
resolution: {integrity: sha512-HigIgEVV6bbcrz2A92/qDzi/aKWB5EC6b6E1mxMB6aQA7ksiKY+gi4U94TpqyEIIhR23uaDrjufJ+xCZQ+vx6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ant-design/icons-vue/-/icons-vue-6.0.1.tgz}
id: registry.npmmirror.com/@ant-design/icons-vue/6.0.1
name: '@ant-design/icons-vue'
version: 6.0.1
peerDependencies:
vue: '>=3.0.3'
dependencies:
'@ant-design/colors': registry.npmmirror.com/@ant-design/colors/5.1.1
'@ant-design/icons-svg': registry.npmmirror.com/@ant-design/icons-svg/4.2.1
'@types/lodash': registry.npmmirror.com/@types/lodash/4.14.179
lodash: registry.npmmirror.com/lodash/4.17.21
vue: registry.npmmirror.com/vue/3.2.31
dev: false
registry.npmmirror.com/@ant-design/icons-vue/6.1.0_vue@3.2.31:
resolution: {integrity: sha512-EX6bYm56V+ZrKN7+3MT/ubDkvJ5rK/O2t380WFRflDcVFgsvl3NLH7Wxeau6R8DbrO5jWR6DSTC3B6gYFp77AA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ant-design/icons-vue/-/icons-vue-6.1.0.tgz}
id: registry.npmmirror.com/@ant-design/icons-vue/6.1.0
name: '@ant-design/icons-vue'
version: 6.1.0
peerDependencies:
vue: '>=3.0.3'
dependencies:
'@ant-design/colors': registry.npmmirror.com/@ant-design/colors/6.0.0
'@ant-design/icons-svg': registry.npmmirror.com/@ant-design/icons-svg/4.2.1
vue: registry.npmmirror.com/vue/3.2.31
dev: false
registry.npmmirror.com/@antfu/utils/0.4.0:
resolution: {integrity: sha512-gqkpvjkgFUu+s3kP+Ly33OKpo5zvVY3FDFhv5BIb98SncS3KD6DNxPfNDjwHIoyXbz1leWo1j8DtRLZ1D2Jv+Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/utils/-/utils-0.4.0.tgz}
name: '@antfu/utils'
version: 0.4.0
dependencies:
'@types/throttle-debounce': registry.npmmirror.com/@types/throttle-debounce/2.1.0
dev: true
registry.npmmirror.com/@antfu/utils/0.5.0:
resolution: {integrity: sha512-MrAQ/MrPSxbh1bBrmwJjORfJymw4IqSHFBXqvxaga3ZdDM+/zokYF8DjyJpSjY2QmpmgQrajDUBJOWrYeARfzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antfu/utils/-/utils-0.5.0.tgz}
name: '@antfu/utils'
version: 0.5.0
dev: true
registry.npmmirror.com/@babel/code-frame/7.16.7:
resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.16.7.tgz}
name: '@babel/code-frame'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight/7.16.10
dev: true
registry.npmmirror.com/@babel/compat-data/7.17.0:
resolution: {integrity: sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.17.0.tgz}
name: '@babel/compat-data'
version: 7.17.0
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/core/7.17.5:
resolution: {integrity: sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.17.5.tgz}
name: '@babel/core'
version: 7.17.5
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.1.2
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.7
'@babel/generator': registry.npmmirror.com/@babel/generator/7.17.3
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.16.7_@babel+core@7.17.5
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.17.6
'@babel/helpers': registry.npmmirror.com/@babel/helpers/7.17.2
'@babel/parser': registry.npmmirror.com/@babel/parser/7.17.3
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.17.3
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
convert-source-map: registry.npmmirror.com/convert-source-map/1.8.0
debug: registry.npmmirror.com/debug/4.3.3
gensync: registry.npmmirror.com/gensync/1.0.0-beta.2
json5: registry.npmmirror.com/json5/2.2.0
semver: registry.npmmirror.com/semver/6.3.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/generator/7.17.3:
resolution: {integrity: sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.17.3.tgz}
name: '@babel/generator'
version: 7.17.3
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
jsesc: registry.npmmirror.com/jsesc/2.5.2
source-map: registry.npmmirror.com/source-map/0.5.7
dev: true
registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.7:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz}
name: '@babel/helper-annotate-as-pure'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-compilation-targets/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz}
id: registry.npmmirror.com/@babel/helper-compilation-targets/7.16.7
name: '@babel/helper-compilation-targets'
version: 7.16.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.17.0
'@babel/core': registry.npmmirror.com/@babel/core/7.17.5
'@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.16.7
browserslist: registry.npmmirror.com/browserslist/4.20.0
semver: registry.npmmirror.com/semver/6.3.0
dev: true
registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.17.5:
resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz}
id: registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.17.6
name: '@babel/helper-create-class-features-plugin'
version: 7.17.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.5
'@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.7
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.16.7
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.16.7
'@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.16.7
'@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.16.7
'@babel/helper-replace-supers': registry.npmmirror.com/@babel/helper-replace-supers/7.16.7
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.7
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/helper-environment-visitor/7.16.7:
resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz}
name: '@babel/helper-environment-visitor'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-function-name/7.16.7:
resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz}
name: '@babel/helper-function-name'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-get-function-arity': registry.npmmirror.com/@babel/helper-get-function-arity/7.16.7
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-get-function-arity/7.16.7:
resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz}
name: '@babel/helper-get-function-arity'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-hoist-variables/7.16.7:
resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz}
name: '@babel/helper-hoist-variables'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.16.7:
resolution: {integrity: sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz}
name: '@babel/helper-member-expression-to-functions'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-module-imports/7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz}
name: '@babel/helper-module-imports'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-module-transforms/7.17.6:
resolution: {integrity: sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.6.tgz}
name: '@babel/helper-module-transforms'
version: 7.17.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.16.7
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.7
'@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.16.7
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.7
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.17.3
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/helper-optimise-call-expression/7.16.7:
resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz}
name: '@babel/helper-optimise-call-expression'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-plugin-utils/7.16.7:
resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz}
name: '@babel/helper-plugin-utils'
version: 7.16.7
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-replace-supers/7.16.7:
resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz}
name: '@babel/helper-replace-supers'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.16.7
'@babel/helper-member-expression-to-functions': registry.npmmirror.com/@babel/helper-member-expression-to-functions/7.16.7
'@babel/helper-optimise-call-expression': registry.npmmirror.com/@babel/helper-optimise-call-expression/7.16.7
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.17.3
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/helper-simple-access/7.16.7:
resolution: {integrity: sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz}
name: '@babel/helper-simple-access'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.7:
resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz}
name: '@babel/helper-validator-identifier'
version: 7.16.7
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-validator-option/7.16.7:
resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz}
name: '@babel/helper-validator-option'
version: 7.16.7
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helpers/7.17.2:
resolution: {integrity: sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.17.2.tgz}
name: '@babel/helpers'
version: 7.17.2
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.17.3
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/highlight/7.16.10:
resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.16.10.tgz}
name: '@babel/highlight'
version: 7.16.10
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7
chalk: registry.npmmirror.com/chalk/2.4.2
js-tokens: registry.npmmirror.com/js-tokens/4.0.0
dev: true
registry.npmmirror.com/@babel/parser/7.17.3:
resolution: {integrity: sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.17.3.tgz}
name: '@babel/parser'
version: 7.17.3
engines: {node: '>=6.0.0'}
hasBin: true
registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.5:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4
name: '@babel/plugin-syntax-import-meta'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.16.7
dev: true
registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.7
name: '@babel/plugin-syntax-jsx'
version: 7.16.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.16.7
dev: true
registry.npmmirror.com/@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-typescript/7.16.7
name: '@babel/plugin-syntax-typescript'
version: 7.16.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.16.7
dev: true
registry.npmmirror.com/@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.5:
resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.8.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-typescript/7.16.8
name: '@babel/plugin-transform-typescript'
version: 7.16.8
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.5
'@babel/helper-create-class-features-plugin': registry.npmmirror.com/@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.17.5
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.16.7
'@babel/plugin-syntax-typescript': registry.npmmirror.com/@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.5
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/runtime/7.17.2:
resolution: {integrity: sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.17.2.tgz}
name: '@babel/runtime'
version: 7.17.2
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.13.9
dev: false
registry.npmmirror.com/@babel/template/7.16.7:
resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.16.7.tgz}
name: '@babel/template'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.7
'@babel/parser': registry.npmmirror.com/@babel/parser/7.17.3
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/traverse/7.17.3:
resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.17.3.tgz}
name: '@babel/traverse'
version: 7.17.3
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.7
'@babel/generator': registry.npmmirror.com/@babel/generator/7.17.3
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.16.7
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.16.7
'@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.16.7
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.7
'@babel/parser': registry.npmmirror.com/@babel/parser/7.17.3
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
debug: registry.npmmirror.com/debug/4.3.3
globals: registry.npmmirror.com/globals/11.12.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/types/7.17.0:
resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.17.0.tgz}
name: '@babel/types'
version: 7.17.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7
to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
dev: true
registry.npmmirror.com/@ctrl/tinycolor/3.4.0:
resolution: {integrity: sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz}
name: '@ctrl/tinycolor'
version: 3.4.0
engines: {node: '>=10'}
dev: false
registry.npmmirror.com/@emmetio/abbreviation/2.2.3:
resolution: {integrity: sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emmetio/abbreviation/-/abbreviation-2.2.3.tgz}
name: '@emmetio/abbreviation'
version: 2.2.3
dependencies:
'@emmetio/scanner': registry.npmmirror.com/@emmetio/scanner/1.0.0
dev: true
registry.npmmirror.com/@emmetio/css-abbreviation/2.1.4:
resolution: {integrity: sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emmetio/css-abbreviation/-/css-abbreviation-2.1.4.tgz}
name: '@emmetio/css-abbreviation'
version: 2.1.4
dependencies:
'@emmetio/scanner': registry.npmmirror.com/@emmetio/scanner/1.0.0
dev: true
registry.npmmirror.com/@emmetio/scanner/1.0.0:
resolution: {integrity: sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@emmetio/scanner/-/scanner-1.0.0.tgz}
name: '@emmetio/scanner'
version: 1.0.0
dev: true
registry.npmmirror.com/@eslint/eslintrc/1.2.0:
resolution: {integrity: sha512-igm9SjJHNEJRiUnecP/1R5T3wKLEJ7pL6e2P+GUSfCd0dGjPYYZve08uzw8L2J8foVHFz+NGu12JxRcU2gGo6w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.2.0.tgz}
name: '@eslint/eslintrc'
version: 1.2.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: registry.npmmirror.com/ajv/6.12.6
debug: registry.npmmirror.com/debug/4.3.3
espree: registry.npmmirror.com/espree/9.3.1
globals: registry.npmmirror.com/globals/13.12.1
ignore: registry.npmmirror.com/ignore/4.0.6
import-fresh: registry.npmmirror.com/import-fresh/3.3.0
js-yaml: registry.npmmirror.com/js-yaml/4.1.0
minimatch: registry.npmmirror.com/minimatch/3.1.2
strip-json-comments: registry.npmmirror.com/strip-json-comments/3.1.1
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@humanwhocodes/config-array/0.9.5:
resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz}
name: '@humanwhocodes/config-array'
version: 0.9.5
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1
debug: registry.npmmirror.com/debug/4.3.3
minimatch: registry.npmmirror.com/minimatch/3.1.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz}
name: '@humanwhocodes/object-schema'
version: 1.2.1
dev: true
registry.npmmirror.com/@jridgewell/resolve-uri/3.0.5:
resolution: {integrity: sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz}
name: '@jridgewell/resolve-uri'
version: 3.0.5
engines: {node: '>=6.0.0'}
dev: true
registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.11:
resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz}
name: '@jridgewell/sourcemap-codec'
version: 1.4.11
dev: true
registry.npmmirror.com/@jridgewell/trace-mapping/0.3.4:
resolution: {integrity: sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz}
name: '@jridgewell/trace-mapping'
version: 0.3.4
dependencies:
'@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri/3.0.5
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec/1.4.11
dev: true
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: true
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.nlark.com/@nodelib/fs.scandir/2.1.5
fastq: registry.npmmirror.com/fastq/1.13.0
dev: true
registry.npmmirror.com/@rollup/pluginutils/4.2.0:
resolution: {integrity: sha512-2WUyJNRkyH5p487pGnn4tWAsxhEFKN/pT8CMgHshd5H+IXkOnKvKZwsz5ZWz+YCXkleZRAU5kwbfgF8CPfDRqA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.0.tgz}
name: '@rollup/pluginutils'
version: 4.2.0
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: true
registry.npmmirror.com/@simonwep/pickr/1.8.2:
resolution: {integrity: sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@simonwep/pickr/-/pickr-1.8.2.tgz}
name: '@simonwep/pickr'
version: 1.8.2
dependencies:
core-js: registry.npmmirror.com/core-js/3.21.1
nanopop: registry.npmmirror.com/nanopop/2.1.0
dev: false
registry.npmmirror.com/@types/json-schema/7.0.9:
resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.9.tgz}
name: '@types/json-schema'
version: 7.0.9
dev: true
registry.npmmirror.com/@types/json5/0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/json5/-/json5-0.0.29.tgz}
name: '@types/json5'
version: 0.0.29
dev: true
registry.npmmirror.com/@types/lodash/4.14.179:
resolution: {integrity: sha512-uwc1x90yCKqGcIOAT6DwOSuxnrAbpkdPsUOZtwrXb4D/6wZs+6qG7QnIawDuZWg0sWpxl+ltIKCaLoMlna678w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.179.tgz}
name: '@types/lodash'
version: 4.14.179
dev: false
registry.npmmirror.com/@types/node/17.0.21:
resolution: {integrity: sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-17.0.21.tgz}
name: '@types/node'
version: 17.0.21
dev: true
registry.npmmirror.com/@types/nprogress/0.2.0:
resolution: {integrity: sha512-1cYJrqq9GezNFPsWTZpFut/d4CjpZqA0vhqDUPFWYKF1oIyBz5qnoYMzR+0C/T96t3ebLAC1SSnwrVOm5/j74A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/nprogress/-/nprogress-0.2.0.tgz}
name: '@types/nprogress'
version: 0.2.0
dev: true
registry.npmmirror.com/@types/throttle-debounce/2.1.0:
resolution: {integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/throttle-debounce/-/throttle-debounce-2.1.0.tgz}
name: '@types/throttle-debounce'
version: 2.1.0
dev: true
registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.14.0_f4054b8c3cd621db16ae1b9d571bccc0:
resolution: {integrity: sha512-ir0wYI4FfFUDfLcuwKzIH7sMVA+db7WYen47iRSaCGl+HMAZI9fpBwfDo45ZALD3A45ZGyHWDNLhbg8tZrMX4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.14.0.tgz}
id: registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.14.0
name: '@typescript-eslint/eslint-plugin'
version: 5.14.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
'@typescript-eslint/parser': ^5.0.0
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/5.14.0_eslint@8.10.0+typescript@4.6.2
'@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.14.0
'@typescript-eslint/type-utils': registry.npmmirror.com/@typescript-eslint/type-utils/5.14.0_eslint@8.10.0+typescript@4.6.2
'@typescript-eslint/utils': registry.npmmirror.com/@typescript-eslint/utils/5.14.0_eslint@8.10.0+typescript@4.6.2
debug: registry.npmmirror.com/debug/4.3.3
eslint: registry.npmmirror.com/eslint/8.10.0
functional-red-black-tree: registry.npmmirror.com/functional-red-black-tree/1.0.1
ignore: registry.npmmirror.com/ignore/5.2.0
regexpp: registry.npmmirror.com/regexpp/3.2.0
semver: registry.npmmirror.com/semver/7.3.5
tsutils: registry.npmmirror.com/tsutils/3.21.0_typescript@4.6.2
typescript: registry.npmmirror.com/typescript/4.6.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@typescript-eslint/parser/5.14.0_eslint@8.10.0+typescript@4.6.2:
resolution: {integrity: sha512-aHJN8/FuIy1Zvqk4U/gcO/fxeMKyoSv/rS46UXMXOJKVsLQ+iYPuXNbpbH7cBLcpSbmyyFbwrniLx5+kutu1pw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.14.0.tgz}
id: registry.npmmirror.com/@typescript-eslint/parser/5.14.0
name: '@typescript-eslint/parser'
version: 5.14.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.14.0
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.14.0
'@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.14.0_typescript@4.6.2
debug: registry.npmmirror.com/debug/4.3.3
eslint: registry.npmmirror.com/eslint/8.10.0
typescript: registry.npmmirror.com/typescript/4.6.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@typescript-eslint/scope-manager/5.14.0:
resolution: {integrity: sha512-LazdcMlGnv+xUc5R4qIlqH0OWARyl2kaP8pVCS39qSL3Pd1F7mI10DbdXeARcE62sVQE4fHNvEqMWsypWO+yEw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.14.0.tgz}
name: '@typescript-eslint/scope-manager'
version: 5.14.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.14.0
'@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.14.0
dev: true
registry.npmmirror.com/@typescript-eslint/type-utils/5.14.0_eslint@8.10.0+typescript@4.6.2:
resolution: {integrity: sha512-d4PTJxsqaUpv8iERTDSQBKUCV7Q5yyXjqXUl3XF7Sd9ogNLuKLkxz82qxokqQ4jXdTPZudWpmNtr/JjbbvUixw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.14.0.tgz}
id: registry.npmmirror.com/@typescript-eslint/type-utils/5.14.0
name: '@typescript-eslint/type-utils'
version: 5.14.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '*'
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/utils': registry.npmmirror.com/@typescript-eslint/utils/5.14.0_eslint@8.10.0+typescript@4.6.2
debug: registry.npmmirror.com/debug/4.3.3
eslint: registry.npmmirror.com/eslint/8.10.0
tsutils: registry.npmmirror.com/tsutils/3.21.0_typescript@4.6.2
typescript: registry.npmmirror.com/typescript/4.6.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@typescript-eslint/types/5.14.0:
resolution: {integrity: sha512-BR6Y9eE9360LNnW3eEUqAg6HxS9Q35kSIs4rp4vNHRdfg0s+/PgHgskvu5DFTM7G5VKAVjuyaN476LCPrdA7Mw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.14.0.tgz}
name: '@typescript-eslint/types'
version: 5.14.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
registry.npmmirror.com/@typescript-eslint/typescript-estree/5.14.0_typescript@4.6.2:
resolution: {integrity: sha512-QGnxvROrCVtLQ1724GLTHBTR0lZVu13izOp9njRvMkCBgWX26PKvmMP8k82nmXBRD3DQcFFq2oj3cKDwr0FaUA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.14.0.tgz}
id: registry.npmmirror.com/@typescript-eslint/typescript-estree/5.14.0
name: '@typescript-eslint/typescript-estree'
version: 5.14.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.14.0
'@typescript-eslint/visitor-keys': registry.npmmirror.com/@typescript-eslint/visitor-keys/5.14.0
debug: registry.npmmirror.com/debug/4.3.3
globby: registry.npmmirror.com/globby/11.1.0
is-glob: registry.npmmirror.com/is-glob/4.0.3
semver: registry.npmmirror.com/semver/7.3.5
tsutils: registry.npmmirror.com/tsutils/3.21.0_typescript@4.6.2
typescript: registry.npmmirror.com/typescript/4.6.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@typescript-eslint/utils/5.14.0_eslint@8.10.0+typescript@4.6.2:
resolution: {integrity: sha512-EHwlII5mvUA0UsKYnVzySb/5EE/t03duUTweVy8Zqt3UQXBrpEVY144OTceFKaOe4xQXZJrkptCf7PjEBeGK4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.14.0.tgz}
id: registry.npmmirror.com/@typescript-eslint/utils/5.14.0
name: '@typescript-eslint/utils'
version: 5.14.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
'@types/json-schema': registry.npmmirror.com/@types/json-schema/7.0.9
'@typescript-eslint/scope-manager': registry.npmmirror.com/@typescript-eslint/scope-manager/5.14.0
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.14.0
'@typescript-eslint/typescript-estree': registry.npmmirror.com/@typescript-eslint/typescript-estree/5.14.0_typescript@4.6.2
eslint: registry.npmmirror.com/eslint/8.10.0
eslint-scope: registry.npmmirror.com/eslint-scope/5.1.1
eslint-utils: registry.npmmirror.com/eslint-utils/3.0.0_eslint@8.10.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
registry.npmmirror.com/@typescript-eslint/visitor-keys/5.14.0:
resolution: {integrity: sha512-yL0XxfzR94UEkjBqyymMLgCBdojzEuy/eim7N9/RIcTNxpJudAcqsU8eRyfzBbcEzGoPWfdM3AGak3cN08WOIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.14.0.tgz}
name: '@typescript-eslint/visitor-keys'
version: 5.14.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
'@typescript-eslint/types': registry.npmmirror.com/@typescript-eslint/types/5.14.0
eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys/3.3.0
dev: true
registry.npmmirror.com/@vitejs/plugin-vue-jsx/1.3.8:
resolution: {integrity: sha512-gPtie8IM7G5OI2O2/Xwk/oYjnw2gKBzayVuEOM5Jx65KmpVcW444F+H7IsIMduvAgwLQPEYMGiO1V8dBgk7qog==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.3.8.tgz}
name: '@vitejs/plugin-vue-jsx'
version: 1.3.8
engines: {node: '>=12.0.0'}
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.5
'@babel/plugin-syntax-import-meta': registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.5
'@babel/plugin-transform-typescript': registry.npmmirror.com/@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.5
'@rollup/pluginutils': registry.npmmirror.com/@rollup/pluginutils/4.2.0
'@vue/babel-plugin-jsx': registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1_@babel+core@7.17.5
hash-sum: registry.npmmirror.com/hash-sum/2.0.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@vitejs/plugin-vue/2.2.4_vite@2.8.6+vue@3.2.31:
resolution: {integrity: sha512-ev9AOlp0ljCaDkFZF3JwC/pD2N4Hh+r5srl5JHM6BKg5+99jiiK0rE/XaRs3pVm1wzyKkjUy/StBSoXX5fFzcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-2.2.4.tgz}
id: registry.npmmirror.com/@vitejs/plugin-vue/2.2.4
name: '@vitejs/plugin-vue'
version: 2.2.4
engines: {node: '>=12.0.0'}
peerDependencies:
vite: ^2.5.10
vue: ^3.2.25
dependencies:
vite: registry.npmmirror.com/vite/2.8.6_less@4.1.2
vue: registry.npmmirror.com/vue/3.2.31
dev: true
registry.npmmirror.com/@volar/code-gen/0.29.8:
resolution: {integrity: sha512-eohLLUqPChHRPDFT5gXn4V6pr/CeTri7Ou5GI26lUvBRRAbP8p+oYfQRcbMPGeKmVkYjfVj0chsxQGx6T8PQ4Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/code-gen/-/code-gen-0.29.8.tgz}
name: '@volar/code-gen'
version: 0.29.8
dependencies:
'@volar/shared': registry.npmmirror.com/@volar/shared/0.29.8
'@volar/source-map': registry.npmmirror.com/@volar/source-map/0.29.8
dev: true
registry.npmmirror.com/@volar/html2pug/0.29.8:
resolution: {integrity: sha512-bhSNXg8A2aD3w0B+CwmHjqCAaKtj5rORbE5C/q/UdGqptJbC6STCmi30KuRTdfPhR++Xb18Hauf3s/WCmtNAPA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/html2pug/-/html2pug-0.29.8.tgz}
name: '@volar/html2pug'
version: 0.29.8
dependencies:
domelementtype: registry.npmmirror.com/domelementtype/2.2.0
domhandler: registry.npmmirror.com/domhandler/4.3.0
htmlparser2: registry.npmmirror.com/htmlparser2/7.2.0
pug: registry.npmmirror.com/pug/3.0.2
dev: true
registry.npmmirror.com/@volar/shared/0.29.8:
resolution: {integrity: sha512-Y1NN6irkIukD+T0wf4p/dHWYL90sacN2e2lYoDXxRlvoYxwANnHgw0J0Rcp+yw58ElWRScdG7/YntEIuZWeJsw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/shared/-/shared-0.29.8.tgz}
name: '@volar/shared'
version: 0.29.8
dependencies:
upath: registry.npmmirror.com/upath/2.0.1
vscode-jsonrpc: registry.npmmirror.com/vscode-jsonrpc/8.0.0-next.7
vscode-uri: registry.npmmirror.com/vscode-uri/3.0.3
dev: true
registry.npmmirror.com/@volar/source-map/0.29.8:
resolution: {integrity: sha512-7w+UoYtnc6UQu30CgMVvx0YN4dzDgP4TIsSmUaW62AGmxU9Lxwp3Kkn/4N8efi91z8ma5Z78v/HddyJPwAC3LA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/source-map/-/source-map-0.29.8.tgz}
name: '@volar/source-map'
version: 0.29.8
dependencies:
'@volar/shared': registry.npmmirror.com/@volar/shared/0.29.8
dev: true
registry.npmmirror.com/@volar/transforms/0.29.8:
resolution: {integrity: sha512-o2hRa8CoDwYTO1Mu5KA47+1elUnYUjDaVhCvbyKlRfd8qpHea2llotArq7B6OORSL2M9DVs1IRJ5NGURBFeZ3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/transforms/-/transforms-0.29.8.tgz}
name: '@volar/transforms'
version: 0.29.8
dependencies:
'@volar/shared': registry.npmmirror.com/@volar/shared/0.29.8
vscode-languageserver: registry.npmmirror.com/vscode-languageserver/8.0.0-next.9
dev: true
registry.npmmirror.com/@volar/vue-code-gen/0.29.8:
resolution: {integrity: sha512-E1e7P2oktNC/DzgDBditfla4s8+HlUlluZ+BtcLvEdbkl3QEjujkB0x1wxguWzXmpWgLIDPtrS3Jzll5cCOkTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@volar/vue-code-gen/-/vue-code-gen-0.29.8.tgz}
name: '@volar/vue-code-gen'
version: 0.29.8
dependencies:
'@volar/code-gen': registry.npmmirror.com/@volar/code-gen/0.29.8
'@volar/shared': registry.npmmirror.com/@volar/shared/0.29.8
'@volar/source-map': registry.npmmirror.com/@volar/source-map/0.29.8
'@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.31
'@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.31
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.31
upath: registry.npmmirror.com/upath/2.0.1
dev: true
registry.npmmirror.com/@vscode/emmet-helper/2.8.4:
resolution: {integrity: sha512-lUki5QLS47bz/U8IlG9VQ+1lfxMtxMZENmU5nu4Z71eOD5j9FK0SmYGL5NiVJg9WBWeAU0VxRADMY2Qpq7BfVg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vscode/emmet-helper/-/emmet-helper-2.8.4.tgz}
name: '@vscode/emmet-helper'
version: 2.8.4
dependencies:
emmet: registry.npmmirror.com/emmet/2.3.6
jsonc-parser: registry.npmmirror.com/jsonc-parser/2.3.1
vscode-languageserver-textdocument: registry.npmmirror.com/vscode-languageserver-textdocument/1.0.4
vscode-languageserver-types: registry.npmmirror.com/vscode-languageserver-types/3.16.0
vscode-nls: registry.npmmirror.com/vscode-nls/5.0.0
vscode-uri: registry.npmmirror.com/vscode-uri/2.1.2
dev: true
registry.npmmirror.com/@vue/babel-helper-vue-transform-on/1.0.2:
resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz}
name: '@vue/babel-helper-vue-transform-on'
version: 1.0.2
dev: true
registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1_@babel+core@7.17.5:
resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.1.tgz}
id: registry.npmmirror.com/@vue/babel-plugin-jsx/1.1.1
name: '@vue/babel-plugin-jsx'
version: 1.1.1
dependencies:
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.7
'@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.5
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.17.3
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
'@vue/babel-helper-vue-transform-on': registry.npmmirror.com/@vue/babel-helper-vue-transform-on/1.0.2
camelcase: registry.npmmirror.com/camelcase/6.3.0
html-tags: registry.npmmirror.com/html-tags/3.1.0
svg-tags: registry.npmmirror.com/svg-tags/1.0.0
transitivePeerDependencies:
- '@babel/core'
- supports-color
dev: true
registry.npmmirror.com/@vue/compiler-core/3.2.31:
resolution: {integrity: sha512-aKno00qoA4o+V/kR6i/pE+aP+esng5siNAVQ422TkBNM6qA4veXiZbSe8OTXHXquEi/f6Akc+nLfB4JGfe4/WQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.2.31.tgz}
name: '@vue/compiler-core'
version: 3.2.31
dependencies:
'@babel/parser': registry.npmmirror.com/@babel/parser/7.17.3
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.31
estree-walker: registry.npmmirror.com/estree-walker/2.0.2
source-map: registry.npmmirror.com/source-map/0.6.1
registry.npmmirror.com/@vue/compiler-dom/3.2.31:
resolution: {integrity: sha512-60zIlFfzIDf3u91cqfqy9KhCKIJgPeqxgveH2L+87RcGU/alT6BRrk5JtUso0OibH3O7NXuNOQ0cDc9beT0wrg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.2.31.tgz}
name: '@vue/compiler-dom'
version: 3.2.31
dependencies:
'@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.31
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.31
registry.npmmirror.com/@vue/compiler-sfc/3.2.31:
resolution: {integrity: sha512-748adc9msSPGzXgibHiO6T7RWgfnDcVQD+VVwYgSsyyY8Ans64tALHZANrKtOzvkwznV/F4H7OAod/jIlp/dkQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.2.31.tgz}
name: '@vue/compiler-sfc'
version: 3.2.31
dependencies:
'@babel/parser': registry.npmmirror.com/@babel/parser/7.17.3
'@vue/compiler-core': registry.npmmirror.com/@vue/compiler-core/3.2.31
'@vue/compiler-dom': registry.npmmirror.com/@vue/compiler-dom/3.2.31
'@vue/compiler-ssr': registry.npmmirror.com/@vue/compiler-ssr/3.2.31
'@vue/reactivity-transform': registry.npmmirror.com/@vue/reactivity-transform/3.2.31
'@vue/shared': registry.npmmirror.com/@vue/shared/3.2.31
estree-walker: registry.npmmirror.com/estree-walker/2.0.2
magic-string: registry.npmmirror.com/magic-string/0.25.9
postcss: registry.npmmirror.com/postcss/8.4.8
source-map: registry.npmmirror.com/source-map/0.6.1
dev: false
registry.npmmirror.com/@vue/compiler-ssr/3.2.31:
resolution: {integrity: sha512-mjN0rqig+A8TVDnsGPYJM5dpbjlXeHUm2oZHZwGyMYiGT/F4fhJf/cXy8QpjnLQK4Y9Et4GWzHn9PS8AHUnSkw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.2.31.tgz}
name: '@vue/compiler-ssr'