-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
6705 lines (6032 loc) · 362 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
importers:
.:
specifiers:
'@ckeditor/ckeditor5-adapter-ckfinder': ^35.4.0
'@ckeditor/ckeditor5-alignment': ^35.4.0
'@ckeditor/ckeditor5-autoformat': ^35.4.0
'@ckeditor/ckeditor5-basic-styles': ^35.4.0
'@ckeditor/ckeditor5-block-quote': ^35.4.0
'@ckeditor/ckeditor5-ckbox': ^35.4.0
'@ckeditor/ckeditor5-ckfinder': ^35.4.0
'@ckeditor/ckeditor5-clipboard': ^35.4.0
'@ckeditor/ckeditor5-cloud-services': ^35.4.0
'@ckeditor/ckeditor5-core': ^35.4.0
'@ckeditor/ckeditor5-dev-translations': ^32.0.0
'@ckeditor/ckeditor5-dev-utils': ^32.0.0
'@ckeditor/ckeditor5-easy-image': ^35.4.0
'@ckeditor/ckeditor5-editor-decoupled': ^35.4.0
'@ckeditor/ckeditor5-engine': ^35.4.0
'@ckeditor/ckeditor5-essentials': ^35.4.0
'@ckeditor/ckeditor5-font': ^35.4.0
'@ckeditor/ckeditor5-heading': ^35.4.0
'@ckeditor/ckeditor5-image': ^35.4.0
'@ckeditor/ckeditor5-indent': ^35.4.0
'@ckeditor/ckeditor5-link': ^35.4.0
'@ckeditor/ckeditor5-list': ^35.4.0
'@ckeditor/ckeditor5-media-embed': ^35.4.0
'@ckeditor/ckeditor5-paragraph': ^35.4.0
'@ckeditor/ckeditor5-paste-from-office': ^35.4.0
'@ckeditor/ckeditor5-table': ^35.4.0
'@ckeditor/ckeditor5-theme-lark': ^35.4.0
'@ckeditor/ckeditor5-typing': ^35.4.0
'@ckeditor/ckeditor5-ui': ^35.4.0
'@ckeditor/ckeditor5-upload': ^35.4.0
'@ckeditor/ckeditor5-utils': ^35.4.0
'@ckeditor/ckeditor5-widget': ^35.4.0
'@commitlint/cli': ^17.4.2
'@commitlint/config-conventional': ^17.4.2
'@typescript-eslint/eslint-plugin': ^5.0.0
ckeditor5: ^35.4.0
commitlint: ^17.4.2
eslint: ^8.32.0
eslint-config-standard-with-typescript: ^33.0.0
eslint-plugin-import: ^2.25.2
eslint-plugin-n: ^15.0.0
eslint-plugin-promise: ^6.0.0
husky: ^8.0.3
lint-staged: ^13.1.0
dependencies:
'@ckeditor/ckeditor5-adapter-ckfinder': registry.npmmirror.com/@ckeditor/ckeditor5-adapter-ckfinder/35.4.0
'@ckeditor/ckeditor5-alignment': registry.npmmirror.com/@ckeditor/ckeditor5-alignment/35.4.0
'@ckeditor/ckeditor5-autoformat': registry.npmmirror.com/@ckeditor/ckeditor5-autoformat/35.4.0
'@ckeditor/ckeditor5-basic-styles': registry.npmmirror.com/@ckeditor/ckeditor5-basic-styles/35.4.0
'@ckeditor/ckeditor5-block-quote': registry.npmmirror.com/@ckeditor/ckeditor5-block-quote/35.4.0
'@ckeditor/ckeditor5-ckbox': registry.npmmirror.com/@ckeditor/ckeditor5-ckbox/35.4.0
'@ckeditor/ckeditor5-ckfinder': registry.npmmirror.com/@ckeditor/ckeditor5-ckfinder/35.4.0
'@ckeditor/ckeditor5-clipboard': registry.npmmirror.com/@ckeditor/ckeditor5-clipboard/35.4.0
'@ckeditor/ckeditor5-cloud-services': registry.npmmirror.com/@ckeditor/ckeditor5-cloud-services/35.4.0
'@ckeditor/ckeditor5-easy-image': registry.npmmirror.com/@ckeditor/ckeditor5-easy-image/35.4.0
'@ckeditor/ckeditor5-editor-decoupled': registry.npmmirror.com/@ckeditor/ckeditor5-editor-decoupled/35.4.0
'@ckeditor/ckeditor5-essentials': registry.npmmirror.com/@ckeditor/ckeditor5-essentials/35.4.0
'@ckeditor/ckeditor5-font': registry.npmmirror.com/@ckeditor/ckeditor5-font/35.4.0
'@ckeditor/ckeditor5-heading': registry.npmmirror.com/@ckeditor/ckeditor5-heading/35.4.0
'@ckeditor/ckeditor5-image': registry.npmmirror.com/@ckeditor/ckeditor5-image/35.4.0
'@ckeditor/ckeditor5-indent': registry.npmmirror.com/@ckeditor/ckeditor5-indent/35.4.0
'@ckeditor/ckeditor5-link': registry.npmmirror.com/@ckeditor/ckeditor5-link/35.4.0
'@ckeditor/ckeditor5-list': registry.npmmirror.com/@ckeditor/ckeditor5-list/35.4.0
'@ckeditor/ckeditor5-media-embed': registry.npmmirror.com/@ckeditor/ckeditor5-media-embed/35.4.0
'@ckeditor/ckeditor5-paragraph': registry.npmmirror.com/@ckeditor/ckeditor5-paragraph/35.4.0
'@ckeditor/ckeditor5-paste-from-office': registry.npmmirror.com/@ckeditor/ckeditor5-paste-from-office/35.4.0
'@ckeditor/ckeditor5-table': registry.npmmirror.com/@ckeditor/ckeditor5-table/35.4.0
'@ckeditor/ckeditor5-typing': registry.npmmirror.com/@ckeditor/ckeditor5-typing/35.4.0
'@ckeditor/ckeditor5-upload': registry.npmmirror.com/@ckeditor/ckeditor5-upload/35.4.0
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
'@ckeditor/ckeditor5-widget': registry.npmmirror.com/@ckeditor/ckeditor5-widget/35.4.0
devDependencies:
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-dev-translations': registry.npmmirror.com/@ckeditor/ckeditor5-dev-translations/32.1.2
'@ckeditor/ckeditor5-dev-utils': registry.npmmirror.com/@ckeditor/ckeditor5-dev-utils/32.1.2_3fkjkrd3audxnith3e7fo4fnxi
'@ckeditor/ckeditor5-engine': registry.npmmirror.com/@ckeditor/ckeditor5-engine/35.4.0
'@ckeditor/ckeditor5-theme-lark': registry.npmmirror.com/@ckeditor/ckeditor5-theme-lark/35.4.0
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
'@commitlint/cli': registry.npmmirror.com/@commitlint/cli/17.4.2
'@commitlint/config-conventional': registry.npmmirror.com/@commitlint/config-conventional/17.4.2
'@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/5.43.0_iu322prlnwsygkcra5kbpy22si
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
commitlint: registry.npmmirror.com/commitlint/17.4.2
eslint: registry.npmmirror.com/eslint/8.32.0
eslint-config-standard-with-typescript: registry.npmmirror.com/eslint-config-standard-with-typescript/33.0.0_uxxtbeyq5h4skirbpivn4o2m5a
eslint-plugin-import: registry.npmmirror.com/eslint-plugin-import/2.27.5_6savw6y3b7jng6f64kgkyoij64
eslint-plugin-n: registry.npmmirror.com/eslint-plugin-n/15.6.1_eslint@8.32.0
eslint-plugin-promise: registry.npmmirror.com/eslint-plugin-promise/6.1.1_eslint@8.32.0
husky: registry.npmmirror.com/husky/8.0.3
lint-staged: registry.npmmirror.com/lint-staged/13.1.0
packages/ckeditor5-build-decoupled-document:
specifiers:
'@chenxingzhi1/ckeditor5-fullscreen': workspace:^1.0.0
'@chenxingzhi1/ckeditor5-paste-from-office': workspace:^1.0.0
css-loader: ^5.2.7
postcss-loader: ^4.3.0
raw-loader: ^4.0.1
style-loader: ^2.0.0
terser-webpack-plugin: ^4.2.3
ts-loader: ^9.3.0
webpack: ^5.58.1
webpack-cli: ^4.9.0
dependencies:
'@chenxingzhi1/ckeditor5-fullscreen': link:../ckeditor5-fullscreen
'@chenxingzhi1/ckeditor5-paste-from-office': link:../ckeditor5-paste-from-office
devDependencies:
css-loader: registry.npmmirror.com/css-loader/5.2.7_webpack@5.75.0
postcss-loader: registry.npmmirror.com/postcss-loader/4.3.0_6jdsrmfenkuhhw3gx4zvjlznce
raw-loader: registry.npmmirror.com/raw-loader/4.0.2_webpack@5.75.0
style-loader: registry.npmmirror.com/style-loader/2.0.0_webpack@5.75.0
terser-webpack-plugin: registry.npmmirror.com/terser-webpack-plugin/4.2.3_webpack@5.75.0
ts-loader: registry.npmmirror.com/ts-loader/9.4.2_3fkjkrd3audxnith3e7fo4fnxi
webpack: registry.npmmirror.com/webpack/5.75.0_webpack-cli@4.10.0
webpack-cli: registry.npmmirror.com/webpack-cli/4.10.0_webpack@5.75.0
packages/ckeditor5-fullscreen:
specifiers: {}
packages/ckeditor5-paste-from-office:
specifiers:
'@ckeditor/ckeditor5-basic-styles': ^35.4.0
'@ckeditor/ckeditor5-clipboard': ^35.4.0
'@ckeditor/ckeditor5-cloud-services': ^35.4.0
'@ckeditor/ckeditor5-code-block': ^35.4.0
'@ckeditor/ckeditor5-core': ^35.4.0
'@ckeditor/ckeditor5-dev-utils': ^32.0.0
'@ckeditor/ckeditor5-easy-image': ^35.4.0
'@ckeditor/ckeditor5-editor-classic': ^35.4.0
'@ckeditor/ckeditor5-engine': ^35.4.0
'@ckeditor/ckeditor5-enter': ^35.4.0
'@ckeditor/ckeditor5-font': ^35.4.0
'@ckeditor/ckeditor5-heading': ^35.4.0
'@ckeditor/ckeditor5-image': ^35.4.0
'@ckeditor/ckeditor5-link': ^35.4.0
'@ckeditor/ckeditor5-list': ^35.4.0
'@ckeditor/ckeditor5-page-break': ^35.4.0
'@ckeditor/ckeditor5-paragraph': ^35.4.0
'@ckeditor/ckeditor5-table': ^35.4.0
'@ckeditor/ckeditor5-theme-lark': ^35.4.0
'@ckeditor/ckeditor5-utils': ^35.4.0
ckeditor5: ^35.4.0
typescript: ^4.8.4
webpack: ^5.58.1
webpack-cli: ^4.9.0
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
devDependencies:
'@ckeditor/ckeditor5-basic-styles': registry.npmmirror.com/@ckeditor/ckeditor5-basic-styles/35.4.0
'@ckeditor/ckeditor5-clipboard': registry.npmmirror.com/@ckeditor/ckeditor5-clipboard/35.4.0
'@ckeditor/ckeditor5-cloud-services': registry.npmmirror.com/@ckeditor/ckeditor5-cloud-services/35.4.0
'@ckeditor/ckeditor5-code-block': registry.npmmirror.com/@ckeditor/ckeditor5-code-block/35.4.0
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-dev-utils': registry.npmmirror.com/@ckeditor/ckeditor5-dev-utils/32.1.2_3fkjkrd3audxnith3e7fo4fnxi
'@ckeditor/ckeditor5-easy-image': registry.npmmirror.com/@ckeditor/ckeditor5-easy-image/35.4.0
'@ckeditor/ckeditor5-editor-classic': registry.npmmirror.com/@ckeditor/ckeditor5-editor-classic/35.4.0
'@ckeditor/ckeditor5-engine': registry.npmmirror.com/@ckeditor/ckeditor5-engine/35.4.0
'@ckeditor/ckeditor5-enter': registry.npmmirror.com/@ckeditor/ckeditor5-enter/35.4.0
'@ckeditor/ckeditor5-font': registry.npmmirror.com/@ckeditor/ckeditor5-font/35.4.0
'@ckeditor/ckeditor5-heading': registry.npmmirror.com/@ckeditor/ckeditor5-heading/35.4.0
'@ckeditor/ckeditor5-image': registry.npmmirror.com/@ckeditor/ckeditor5-image/35.4.0
'@ckeditor/ckeditor5-link': registry.npmmirror.com/@ckeditor/ckeditor5-link/35.4.0
'@ckeditor/ckeditor5-list': registry.npmmirror.com/@ckeditor/ckeditor5-list/35.4.0
'@ckeditor/ckeditor5-page-break': registry.npmmirror.com/@ckeditor/ckeditor5-page-break/35.4.0
'@ckeditor/ckeditor5-paragraph': registry.npmmirror.com/@ckeditor/ckeditor5-paragraph/35.4.0
'@ckeditor/ckeditor5-table': registry.npmmirror.com/@ckeditor/ckeditor5-table/35.4.0
'@ckeditor/ckeditor5-theme-lark': registry.npmmirror.com/@ckeditor/ckeditor5-theme-lark/35.4.0
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
typescript: registry.npmmirror.com/typescript/4.9.4
webpack: registry.npmmirror.com/webpack/5.75.0_webpack-cli@4.10.0
webpack-cli: registry.npmmirror.com/webpack-cli/4.10.0_webpack@5.75.0
packages:
registry.npmmirror.com/@babel/code-frame/7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==, registry: http://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: true
registry.npmmirror.com/@babel/generator/7.20.14:
resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.20.14.tgz}
name: '@babel/generator'
version: 7.20.14
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.7
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping/0.3.2
jsesc: registry.npmmirror.com/jsesc/2.5.2
dev: true
registry.npmmirror.com/@babel/helper-environment-visitor/7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, registry: http://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: true
registry.npmmirror.com/@babel/helper-function-name/7.19.0:
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==, registry: http://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.20.7
'@babel/types': registry.npmmirror.com/@babel/types/7.20.7
dev: true
registry.npmmirror.com/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, registry: http://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.7
dev: true
registry.npmmirror.com/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, registry: http://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.7
dev: true
registry.npmmirror.com/@babel/helper-string-parser/7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, registry: http://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: true
registry.npmmirror.com/@babel/helper-validator-identifier/7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, registry: http://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: true
registry.npmmirror.com/@babel/highlight/7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, registry: http://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: true
registry.npmmirror.com/@babel/parser/7.20.13:
resolution: {integrity: sha512-gFDLKMfpiXCsjt4za2JA9oTMn70CeseCehb11kRZgvd7+F67Hih3OHOK24cRrWECJ/ljfPGac6ygXAs/C8kIvw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.20.13.tgz}
name: '@babel/parser'
version: 7.20.13
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.20.7
dev: true
registry.npmmirror.com/@babel/template/7.20.7:
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.20.7.tgz}
name: '@babel/template'
version: 7.20.7
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.13
'@babel/types': registry.npmmirror.com/@babel/types/7.20.7
dev: true
registry.npmmirror.com/@babel/traverse/7.20.13:
resolution: {integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.20.13.tgz}
name: '@babel/traverse'
version: 7.20.13
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.14
'@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.13
'@babel/types': registry.npmmirror.com/@babel/types/7.20.7
debug: registry.npmmirror.com/debug/4.3.4
globals: registry.npmmirror.com/globals/11.12.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/types/7.20.7:
resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.20.7.tgz}
name: '@babel/types'
version: 7.20.7
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: true
registry.npmmirror.com/@ckeditor/ckeditor5-adapter-ckfinder/35.4.0:
resolution: {integrity: sha512-0o0nkggKYwjx60Ge7GGuJp2jJGwGW9LlAOZEVPTMRG8b/uSzMNLHyCChKeakRO4z7tiopJM6o9Y8sfbDM/nKpA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-35.4.0.tgz}
name: '@ckeditor/ckeditor5-adapter-ckfinder'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-alignment/35.4.0:
resolution: {integrity: sha512-hRrP7b5VBsndwxzyNvUpGqTtUsCPDFRWSJq8vk9hk3f0AjioJZE0/rQA9U41dYKZdOKpTXBVrt+3DBMjObV6cQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-35.4.0.tgz}
name: '@ckeditor/ckeditor5-alignment'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-autoformat/35.4.0:
resolution: {integrity: sha512-4vAOaoiziR2XN8KmismiBiknCeOYKtskW8yQnSrFWUX3Fkok3KrHaRFr48AbIN4pHI2xTMKPLeMLeRtZd8tTVw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-35.4.0.tgz}
name: '@ckeditor/ckeditor5-autoformat'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-basic-styles/35.4.0:
resolution: {integrity: sha512-6JkoplYMwIHN1E/w3DoY0i95B41sbGwsNAtlvx6qaBvNKkLu4rRCtiBUJDnx8qZxxQXHih5ZOw8bUQHl4mt8hw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-35.4.0.tgz}
name: '@ckeditor/ckeditor5-basic-styles'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-block-quote/35.4.0:
resolution: {integrity: sha512-AXoJhSVwl/RSelmxqxMcLq0VUXubjEvMc32xvF6CyUkc/vlSkZec6noznXyVo0P5TXOxsFbzwFAdBOSFTFjD+A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-35.4.0.tgz}
name: '@ckeditor/ckeditor5-block-quote'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-ckbox/35.4.0:
resolution: {integrity: sha512-kpEleQLsu3/nyvc46zkWBp3EvvxinnQfmwvi52h+FLbbI0TE0dxadRppQHZjHXd4yw29N6B1ePeMAVFRX1iYjQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-35.4.0.tgz}
name: '@ckeditor/ckeditor5-ckbox'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-ckfinder/35.4.0:
resolution: {integrity: sha512-PeA3PA1c1JGn9f+rZlnWHSuXUU4DjWU4oUp5tMWAtS8OV1srJ2DbU/+Z/WZHO4jmDMfQX9XmN5B/sdLvTQ7ZjQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-35.4.0.tgz}
name: '@ckeditor/ckeditor5-ckfinder'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-clipboard/35.4.0:
resolution: {integrity: sha512-B6rIQxvOrHvO9TZRC8JA0wKk+IfN880UJkYIg1qlhf9HFNVjdVbtHaiCsPD+TzGmQN3XHXfNjgjabGRIn0iZmw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-35.4.0.tgz}
name: '@ckeditor/ckeditor5-clipboard'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-engine': registry.npmmirror.com/@ckeditor/ckeditor5-engine/35.4.0
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
'@ckeditor/ckeditor5-widget': registry.npmmirror.com/@ckeditor/ckeditor5-widget/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
registry.npmmirror.com/@ckeditor/ckeditor5-cloud-services/35.4.0:
resolution: {integrity: sha512-iavLfEKx0GVPMIyPnnOlD9TCVVLIrwp1dCQAfO3A7WUySiLBcC7ShJ+6Bm00CVQQE6VtrYOevrKN/RcRzImzHw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-35.4.0.tgz}
name: '@ckeditor/ckeditor5-cloud-services'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-code-block/35.4.0:
resolution: {integrity: sha512-En7FBmyyEj8zdt48fUJhlY023LAxEKoi1vUHsr7gK+3E8UKvzWdO2KkTvC2f4YB3rHXYkw8dK2WSJ2LIwID+Ng==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-35.4.0.tgz}
name: '@ckeditor/ckeditor5-code-block'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: true
registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0:
resolution: {integrity: sha512-Rf0H7C4inCj/YC8aii0cT7TC/IuBIQ+tXmu9qd8/1BJ/rz1MCHXtBPApjTbFp33OE3aOFB5+NUaKt05k/dL3OA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-core/-/ckeditor5-core-35.4.0.tgz}
name: '@ckeditor/ckeditor5-core'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-engine': registry.npmmirror.com/@ckeditor/ckeditor5-engine/35.4.0
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
registry.npmmirror.com/@ckeditor/ckeditor5-dev-translations/32.1.2:
resolution: {integrity: sha512-TudMnRaiYMTNuDMWExeBh0Mk96GySWzgnh4fkXfoqiABQzd9Pp/Fcl40q0LJl4jtyS3qhQGFz88GxzkxAXXU9Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-dev-translations/-/ckeditor5-dev-translations-32.1.2.tgz}
name: '@ckeditor/ckeditor5-dev-translations'
version: 32.1.2
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@babel/parser': registry.npmmirror.com/@babel/parser/7.20.13
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.20.13
chalk: registry.npmmirror.com/chalk/4.1.2
pofile: registry.npmmirror.com/pofile/1.1.4
rimraf: registry.npmmirror.com/rimraf/3.0.2
webpack-sources: registry.npmmirror.com/webpack-sources/2.3.1
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@ckeditor/ckeditor5-dev-utils/32.1.2_3fkjkrd3audxnith3e7fo4fnxi:
resolution: {integrity: sha512-C9c6EnWhOElN5c56xhJ7mYA9AsgZbaME6d8hTGJ43J5ZG6wg7MFwVlRpv0u2unu8whLO6vsjrW7yeqBrFvo65Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-dev-utils/-/ckeditor5-dev-utils-32.1.2.tgz}
id: registry.npmmirror.com/@ckeditor/ckeditor5-dev-utils/32.1.2
name: '@ckeditor/ckeditor5-dev-utils'
version: 32.1.2
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
peerDependencies:
webpack: ^4.43.0 || ^5.24.0
dependencies:
'@ckeditor/ckeditor5-dev-translations': registry.npmmirror.com/@ckeditor/ckeditor5-dev-translations/32.1.2
chalk: registry.npmmirror.com/chalk/3.0.0
cli-cursor: registry.npmmirror.com/cli-cursor/3.1.0
cli-spinners: registry.npmmirror.com/cli-spinners/2.7.0
cssnano: registry.npmmirror.com/cssnano/5.1.14_postcss@8.4.21
del: registry.npmmirror.com/del/5.1.0
fs-extra: registry.npmmirror.com/fs-extra/8.1.0
is-interactive: registry.npmmirror.com/is-interactive/1.0.0
javascript-stringify: registry.npmmirror.com/javascript-stringify/1.6.0
postcss: registry.npmmirror.com/postcss/8.4.21
postcss-import: registry.npmmirror.com/postcss-import/14.1.0_postcss@8.4.21
postcss-loader: registry.npmmirror.com/postcss-loader/4.3.0_6jdsrmfenkuhhw3gx4zvjlznce
postcss-mixins: registry.npmmirror.com/postcss-mixins/9.0.4_postcss@8.4.21
postcss-nesting: registry.npmmirror.com/postcss-nesting/10.2.0_postcss@8.4.21
raw-loader: registry.npmmirror.com/raw-loader/4.0.2_webpack@5.75.0
shelljs: registry.npmmirror.com/shelljs/0.8.5
style-loader: registry.npmmirror.com/style-loader/2.0.0_webpack@5.75.0
terser-webpack-plugin: registry.npmmirror.com/terser-webpack-plugin/4.2.3_webpack@5.75.0
through2: registry.npmmirror.com/through2/3.0.2
ts-loader: registry.npmmirror.com/ts-loader/9.4.2_3fkjkrd3audxnith3e7fo4fnxi
webpack: registry.npmmirror.com/webpack/5.75.0_webpack-cli@4.10.0
transitivePeerDependencies:
- bluebird
- supports-color
- typescript
dev: true
registry.npmmirror.com/@ckeditor/ckeditor5-easy-image/35.4.0:
resolution: {integrity: sha512-DRCQ/zh2Ul0f7RrSBG3WYKnZbrU2jj1RazX4qZM1b1WlM81y7+i+Rnp209JIT9TnlrTdYJy2EUY17YHughuyzA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-35.4.0.tgz}
name: '@ckeditor/ckeditor5-easy-image'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-editor-classic/35.4.0:
resolution: {integrity: sha512-EqAqFD/5oPtDMU2AoH3eJaDplcS8MxfkiRQ5hzeC1JeIPT94w5FCHnB4SAkjLPDnlyZnBWOOYdZSuln2TRIbEw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-35.4.0.tgz}
name: '@ckeditor/ckeditor5-editor-classic'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
dev: true
registry.npmmirror.com/@ckeditor/ckeditor5-editor-decoupled/35.4.0:
resolution: {integrity: sha512-+edFHimxt60u9XnD4AitZGU8+dshthvlftbpD8Qi3aXwZ9SuIoYdi3fe4ufRgtdkcJT2qLKWghyKPLatCqM1tg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-35.4.0.tgz}
name: '@ckeditor/ckeditor5-editor-decoupled'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-engine/35.4.0:
resolution: {integrity: sha512-67QKtUGJeLM072h9qURvzczYGU3ecuxR9LLmM4dffnV+PBNQ9e8RDCY7PuuEP0pplmAUI6/XqoZJIbk6h7ZV3Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-35.4.0.tgz}
name: '@ckeditor/ckeditor5-engine'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
registry.npmmirror.com/@ckeditor/ckeditor5-enter/35.4.0:
resolution: {integrity: sha512-y95RnA/Gw72e220PJKVwNbwPzX4SRs82/rXu1jVyJXty7CcEZqqfyRtW6odICAXr5eKI5XKgzFgpFYULL3D9Nw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-35.4.0.tgz}
name: '@ckeditor/ckeditor5-enter'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-engine': registry.npmmirror.com/@ckeditor/ckeditor5-engine/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-essentials/35.4.0:
resolution: {integrity: sha512-tTtTb4NYSQi99LPDzAVUnFhW6iTqSuaylkg0XnDvO2lVR3tAA27gOOjGqc8Ri9NMGGeZkFTvXpnVkXkFnDP2nQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-35.4.0.tgz}
name: '@ckeditor/ckeditor5-essentials'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-font/35.4.0:
resolution: {integrity: sha512-eCXrssQKy+1kUM6LaRk7lGCam99sruJKnIofu3/mCfYaoIJUCHX0Zzk+uDijH0AOSCH0+EwaLTajQwXrbBZrhg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-font/-/ckeditor5-font-35.4.0.tgz}
name: '@ckeditor/ckeditor5-font'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-heading/35.4.0:
resolution: {integrity: sha512-cZwKzAg0USxaDZstQXKMkzrE+fOEr+6YFtXpHGrKgsaisI9xkuOWD40dZvLovTmENLGPopDkdfGewj8jscB9Kg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-35.4.0.tgz}
name: '@ckeditor/ckeditor5-heading'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-image/35.4.0:
resolution: {integrity: sha512-SQ+IiIB6SLhdhVy3gRKxxfBXpLikInvaP3ILOvPQlaC0Bt5ciJ3t/180zCBlbCvvRwIQNo4bYbZc5cI8UBIAaA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-image/-/ckeditor5-image-35.4.0.tgz}
name: '@ckeditor/ckeditor5-image'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
registry.npmmirror.com/@ckeditor/ckeditor5-indent/35.4.0:
resolution: {integrity: sha512-FNp5S6t/RlY4eARR4E/jzxqjAbsGMa+30ZKS9maTOCx0TDmvmjD0jvZc9+1fe/KzSBk9wtmHYOil1J+W66rKvw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-35.4.0.tgz}
name: '@ckeditor/ckeditor5-indent'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-link/35.4.0:
resolution: {integrity: sha512-aqHFwlnGyjW/fp/fklD1VupYLsfbvSwsh9RFGIdgJL4TuWnlhxR5JXCOAKyZtvCWpdyuKyqzEB8EV0NQAa+OMg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-link/-/ckeditor5-link-35.4.0.tgz}
name: '@ckeditor/ckeditor5-link'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
registry.npmmirror.com/@ckeditor/ckeditor5-list/35.4.0:
resolution: {integrity: sha512-fPENWzEicpoXZsDmGR6EiR/j3Z4Q3KYAsBMsmWf8YwUlbM/hERt+V3yIB+LKdGQKbFrL6CWOA1JBB4tmmwd50A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-list/-/ckeditor5-list-35.4.0.tgz}
name: '@ckeditor/ckeditor5-list'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-media-embed/35.4.0:
resolution: {integrity: sha512-So+BYkI82pdIGP2VQ+b+gstEOnHLHA9yBX94pTJM9eW1O+ZTPMR1t2wJFFmEbCjQUYDVC8SdGUGaOb1gaeVXiw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-35.4.0.tgz}
name: '@ckeditor/ckeditor5-media-embed'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-page-break/35.4.0:
resolution: {integrity: sha512-KuZx0Qo4bQjl3mSretqb/CijU0IZdpn91R8H4EX7G5uK0W2SwGZ3RNF/2fpgNcU3T/tuEbKqRfr4QuH8qaV64A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-35.4.0.tgz}
name: '@ckeditor/ckeditor5-page-break'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: true
registry.npmmirror.com/@ckeditor/ckeditor5-paragraph/35.4.0:
resolution: {integrity: sha512-8nhkEEFv1WClhH6q/HW8P596d+dlatSVc46kQ2+jGlYirL8P66tV/nK+OiE8z1d897oVr4QPGsqk2qGkRFUChw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-35.4.0.tgz}
name: '@ckeditor/ckeditor5-paragraph'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-paste-from-office/35.4.0:
resolution: {integrity: sha512-Uav1z9t52+qcu1axykcZ/NeH7JnURuZF9l0o+Pq/sNg3zjzVqB92V5cvFXg9hXeod8LzxlNLHy1BR8ZWTHeKHQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-35.4.0.tgz}
name: '@ckeditor/ckeditor5-paste-from-office'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
dev: false
registry.npmmirror.com/@ckeditor/ckeditor5-select-all/35.4.0:
resolution: {integrity: sha512-c+pIIY77SP6ux4/cyD7cCrllQAqtFVSnzNYdy7ygNPqljCGngCnpSV9xfCO/blFo6/zx2vsmzVGdRq3ArzGoMg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-35.4.0.tgz}
name: '@ckeditor/ckeditor5-select-all'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-table/35.4.0:
resolution: {integrity: sha512-u2g3CIqXO7ByrfFVqlHagPssta8hd/zSE37CjFuylc5KYVmMxcuh3TiFirKaladH92/3gjfnf+GWEC5X14mA8w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-table/-/ckeditor5-table-35.4.0.tgz}
name: '@ckeditor/ckeditor5-table'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
ckeditor5: registry.npmmirror.com/ckeditor5/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
registry.npmmirror.com/@ckeditor/ckeditor5-theme-lark/35.4.0:
resolution: {integrity: sha512-cf6pJN96KwKrs3KIvxrKR9pGMH2/I6MAFMyliN7O1MbauKeyC6cjwui41Yan10cWwpm6a6PeadyRbwQPa9HUaw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-35.4.0.tgz}
name: '@ckeditor/ckeditor5-theme-lark'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
dev: true
registry.npmmirror.com/@ckeditor/ckeditor5-typing/35.4.0:
resolution: {integrity: sha512-Ad/PHWbVWcnAj9oevkkfLqf6CmvCFOti466uhvfOCKRNVf2+/xuGwleOGr8W6Lir/x/qav7ojFjKPKDxqbPXhA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-35.4.0.tgz}
name: '@ckeditor/ckeditor5-typing'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-engine': registry.npmmirror.com/@ckeditor/ckeditor5-engine/35.4.0
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0:
resolution: {integrity: sha512-0SmYE+k1cYQPqyw2rQsPDV/RpudneBh1bNfiaTOz+rqViJIMe+TxiuK6Fz+znNZ05s0exr+ZHWvMttGqlVoQNw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-35.4.0.tgz}
name: '@ckeditor/ckeditor5-ui'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
registry.npmmirror.com/@ckeditor/ckeditor5-undo/35.4.0:
resolution: {integrity: sha512-0RhsK0f/pX/7KB/JXYTLiDOswmUTQ9EKIIuewAwr7LTsBf4Q309FZSFdbeTmc0wIyX33212Xh5xsi3LyG1VJRg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-35.4.0.tgz}
name: '@ckeditor/ckeditor5-undo'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-engine': registry.npmmirror.com/@ckeditor/ckeditor5-engine/35.4.0
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-upload/35.4.0:
resolution: {integrity: sha512-+eJAluAc4mAFmx5FNuSGjkCYmbm0V9NpSleubAXEx2e+KNiLarPAnsolwRaAcYXcloNp4C9/l0D+lPEx7VRYtg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-35.4.0.tgz}
name: '@ckeditor/ckeditor5-upload'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0:
resolution: {integrity: sha512-sFjbb+1VYdLbELDLWVYk86WzVN7Lo3sXHbVhdr8+kc0Ufxdr3mTFHDAkiymFt2fs1FOB5gZyWJlJU+EeJnhKUw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-35.4.0.tgz}
name: '@ckeditor/ckeditor5-utils'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
registry.npmmirror.com/@ckeditor/ckeditor5-widget/35.4.0:
resolution: {integrity: sha512-SNYOXXWu7XV1BZET+ar0Cea25836vzNtUqXlDPwBx/jrmK86b8GMbFR99P2bUG0NvtIsH5cSk7XCmnxb4ZQ6wA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-35.4.0.tgz}
name: '@ckeditor/ckeditor5-widget'
version: 35.4.0
engines: {node: '>=14.0.0', npm: '>=5.7.1'}
dependencies:
'@ckeditor/ckeditor5-core': registry.npmmirror.com/@ckeditor/ckeditor5-core/35.4.0
'@ckeditor/ckeditor5-engine': registry.npmmirror.com/@ckeditor/ckeditor5-engine/35.4.0
'@ckeditor/ckeditor5-enter': registry.npmmirror.com/@ckeditor/ckeditor5-enter/35.4.0
'@ckeditor/ckeditor5-typing': registry.npmmirror.com/@ckeditor/ckeditor5-typing/35.4.0
'@ckeditor/ckeditor5-ui': registry.npmmirror.com/@ckeditor/ckeditor5-ui/35.4.0
'@ckeditor/ckeditor5-utils': registry.npmmirror.com/@ckeditor/ckeditor5-utils/35.4.0
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
registry.npmmirror.com/@commitlint/cli/17.4.2:
resolution: {integrity: sha512-0rPGJ2O1owhpxMIXL9YJ2CgPkdrFLKZElIZHXDN8L8+qWK1DGH7Q7IelBT1pchXTYTuDlqkOTdh//aTvT3bSUA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/cli/-/cli-17.4.2.tgz}
name: '@commitlint/cli'
version: 17.4.2
engines: {node: '>=v14'}
hasBin: true
dependencies:
'@commitlint/format': registry.npmmirror.com/@commitlint/format/17.4.0
'@commitlint/lint': registry.npmmirror.com/@commitlint/lint/17.4.2
'@commitlint/load': registry.npmmirror.com/@commitlint/load/17.4.2
'@commitlint/read': registry.npmmirror.com/@commitlint/read/17.4.2
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
execa: registry.npmmirror.com/execa/5.1.1
lodash.isfunction: registry.npmmirror.com/lodash.isfunction/3.0.9
resolve-from: registry.npmmirror.com/resolve-from/5.0.0
resolve-global: registry.npmmirror.com/resolve-global/1.0.0
yargs: registry.npmmirror.com/yargs/17.6.2
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
dev: true
registry.npmmirror.com/@commitlint/config-conventional/17.4.2:
resolution: {integrity: sha512-JVo1moSj5eDMoql159q8zKCU8lkOhQ+b23Vl3LVVrS6PXDLQIELnJ34ChQmFVbBdSSRNAbbXnRDhosFU+wnuHw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/config-conventional/-/config-conventional-17.4.2.tgz}
name: '@commitlint/config-conventional'
version: 17.4.2
engines: {node: '>=v14'}
dependencies:
conventional-changelog-conventionalcommits: registry.npmmirror.com/conventional-changelog-conventionalcommits/5.0.0
dev: true
registry.npmmirror.com/@commitlint/config-validator/17.4.0:
resolution: {integrity: sha512-Sa/+8KNpDXz4zT4bVbz2fpFjvgkPO6u2V2fP4TKgt6FjmOw2z3eEX859vtfeaTav/ukBw0/0jr+5ZTZp9zCBhA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-17.4.0.tgz}
name: '@commitlint/config-validator'
version: 17.4.0
engines: {node: '>=v14'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
ajv: registry.npmmirror.com/ajv/8.12.0
dev: true
registry.npmmirror.com/@commitlint/ensure/17.4.0:
resolution: {integrity: sha512-7oAxt25je0jeQ/E0O/M8L3ADb1Cvweu/5lc/kYF8g/kXatI0wxGE5La52onnAUAWeWlsuvBNar15WcrmDmr5Mw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/ensure/-/ensure-17.4.0.tgz}
name: '@commitlint/ensure'
version: 17.4.0
engines: {node: '>=v14'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
lodash.camelcase: registry.npmmirror.com/lodash.camelcase/4.3.0
lodash.kebabcase: registry.npmmirror.com/lodash.kebabcase/4.1.1
lodash.snakecase: registry.npmmirror.com/lodash.snakecase/4.1.1
lodash.startcase: registry.npmmirror.com/lodash.startcase/4.4.0
lodash.upperfirst: registry.npmmirror.com/lodash.upperfirst/4.3.1
dev: true
registry.npmmirror.com/@commitlint/execute-rule/17.4.0:
resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz}
name: '@commitlint/execute-rule'
version: 17.4.0
engines: {node: '>=v14'}
dev: true
registry.npmmirror.com/@commitlint/format/17.4.0:
resolution: {integrity: sha512-Z2bWAU5+f1YZh9W76c84J8iLIWIvvm+mzqogTz0Nsc1x6EHW0Z2gI38g5HAjB0r0I3ZjR15IDEJKhsxyblcyhA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/format/-/format-17.4.0.tgz}
name: '@commitlint/format'
version: 17.4.0
engines: {node: '>=v14'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
chalk: registry.npmmirror.com/chalk/4.1.2
dev: true
registry.npmmirror.com/@commitlint/is-ignored/17.4.2:
resolution: {integrity: sha512-1b2Y2qJ6n7bHG9K6h8S4lBGUl6kc7mMhJN9gy1SQfUZqe92ToDjUTtgNWb6LbzR1X8Cq4SEus4VU8Z/riEa94Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/is-ignored/-/is-ignored-17.4.2.tgz}
name: '@commitlint/is-ignored'
version: 17.4.2
engines: {node: '>=v14'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
semver: registry.npmmirror.com/semver/7.3.8
dev: true
registry.npmmirror.com/@commitlint/lint/17.4.2:
resolution: {integrity: sha512-HcymabrdBhsDMNzIv146+ZPNBPBK5gMNsVH+el2lCagnYgCi/4ixrHooeVyS64Fgce2K26+MC7OQ4vVH8wQWVw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/lint/-/lint-17.4.2.tgz}
name: '@commitlint/lint'
version: 17.4.2
engines: {node: '>=v14'}
dependencies:
'@commitlint/is-ignored': registry.npmmirror.com/@commitlint/is-ignored/17.4.2
'@commitlint/parse': registry.npmmirror.com/@commitlint/parse/17.4.2
'@commitlint/rules': registry.npmmirror.com/@commitlint/rules/17.4.2
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
dev: true
registry.npmmirror.com/@commitlint/load/17.4.2:
resolution: {integrity: sha512-Si++F85rJ9t4hw6JcOw1i2h0fdpdFQt0YKwjuK4bk9KhFjyFkRxvR3SB2dPaMs+EwWlDrDBGL+ygip1QD6gmPw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/load/-/load-17.4.2.tgz}
name: '@commitlint/load'
version: 17.4.2
engines: {node: '>=v14'}
dependencies:
'@commitlint/config-validator': registry.npmmirror.com/@commitlint/config-validator/17.4.0
'@commitlint/execute-rule': registry.npmmirror.com/@commitlint/execute-rule/17.4.0
'@commitlint/resolve-extends': registry.npmmirror.com/@commitlint/resolve-extends/17.4.0
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
'@types/node': registry.npmmirror.com/@types/node/18.11.18
chalk: registry.npmmirror.com/chalk/4.1.2
cosmiconfig: registry.npmmirror.com/cosmiconfig/8.0.0
cosmiconfig-typescript-loader: registry.npmmirror.com/cosmiconfig-typescript-loader/4.3.0_bxtyj3et3xbsdyxhh3oblnfbj4
lodash.isplainobject: registry.npmmirror.com/lodash.isplainobject/4.0.6
lodash.merge: registry.npmmirror.com/lodash.merge/4.6.2
lodash.uniq: registry.npmmirror.com/lodash.uniq/4.5.0
resolve-from: registry.npmmirror.com/resolve-from/5.0.0
ts-node: registry.npmmirror.com/ts-node/10.9.1_awa2wsr5thmg3i7jqycphctjfq
typescript: registry.npmmirror.com/typescript/4.9.4
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
dev: true
registry.npmmirror.com/@commitlint/message/17.4.2:
resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/message/-/message-17.4.2.tgz}
name: '@commitlint/message'
version: 17.4.2
engines: {node: '>=v14'}
dev: true
registry.npmmirror.com/@commitlint/parse/17.4.2:
resolution: {integrity: sha512-DK4EwqhxfXpyCA+UH8TBRIAXAfmmX4q9QRBz/2h9F9sI91yt6mltTrL6TKURMcjUVmgaB80wgS9QybNIyVBIJA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/parse/-/parse-17.4.2.tgz}
name: '@commitlint/parse'
version: 17.4.2
engines: {node: '>=v14'}
dependencies:
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
conventional-changelog-angular: registry.npmmirror.com/conventional-changelog-angular/5.0.13
conventional-commits-parser: registry.npmmirror.com/conventional-commits-parser/3.2.4
dev: true
registry.npmmirror.com/@commitlint/read/17.4.2:
resolution: {integrity: sha512-hasYOdbhEg+W4hi0InmXHxtD/1favB4WdwyFxs1eOy/DvMw6+2IZBmATgGOlqhahsypk4kChhxjAFJAZ2F+JBg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/read/-/read-17.4.2.tgz}
name: '@commitlint/read'
version: 17.4.2
engines: {node: '>=v14'}
dependencies:
'@commitlint/top-level': registry.npmmirror.com/@commitlint/top-level/17.4.0
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
fs-extra: registry.npmmirror.com/fs-extra/11.1.0
git-raw-commits: registry.npmmirror.com/git-raw-commits/2.0.11
minimist: registry.npmmirror.com/minimist/1.2.7
dev: true
registry.npmmirror.com/@commitlint/resolve-extends/17.4.0:
resolution: {integrity: sha512-3JsmwkrCzoK8sO22AzLBvNEvC1Pmdn/65RKXzEtQMy6oYMl0Snrq97a5bQQEFETF0VsvbtUuKttLqqgn99OXRQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-17.4.0.tgz}
name: '@commitlint/resolve-extends'
version: 17.4.0
engines: {node: '>=v14'}
dependencies:
'@commitlint/config-validator': registry.npmmirror.com/@commitlint/config-validator/17.4.0
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
import-fresh: registry.npmmirror.com/import-fresh/3.3.0
lodash.mergewith: registry.npmmirror.com/lodash.mergewith/4.6.2
resolve-from: registry.npmmirror.com/resolve-from/5.0.0
resolve-global: registry.npmmirror.com/resolve-global/1.0.0
dev: true
registry.npmmirror.com/@commitlint/rules/17.4.2:
resolution: {integrity: sha512-OGrPsMb9Fx3/bZ64/EzJehY9YDSGWzp81Pj+zJiY+r/NSgJI3nUYdlS37jykNIugzazdEXfMtQ10kmA+Kx2pZQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/rules/-/rules-17.4.2.tgz}
name: '@commitlint/rules'
version: 17.4.2
engines: {node: '>=v14'}
dependencies:
'@commitlint/ensure': registry.npmmirror.com/@commitlint/ensure/17.4.0
'@commitlint/message': registry.npmmirror.com/@commitlint/message/17.4.2
'@commitlint/to-lines': registry.npmmirror.com/@commitlint/to-lines/17.4.0
'@commitlint/types': registry.npmmirror.com/@commitlint/types/17.4.0
execa: registry.npmmirror.com/execa/5.1.1
dev: true
registry.npmmirror.com/@commitlint/to-lines/17.4.0:
resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/to-lines/-/to-lines-17.4.0.tgz}
name: '@commitlint/to-lines'
version: 17.4.0
engines: {node: '>=v14'}
dev: true
registry.npmmirror.com/@commitlint/top-level/17.4.0:
resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/top-level/-/top-level-17.4.0.tgz}
name: '@commitlint/top-level'
version: 17.4.0
engines: {node: '>=v14'}
dependencies:
find-up: registry.npmmirror.com/find-up/5.0.0
dev: true
registry.npmmirror.com/@commitlint/types/17.4.0:
resolution: {integrity: sha512-2NjAnq5IcxY9kXtUeO2Ac0aPpvkuOmwbH/BxIm36XXK5LtWFObWJWjXOA+kcaABMrthjWu6la+FUpyYFMHRvbA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@commitlint/types/-/types-17.4.0.tgz}
name: '@commitlint/types'
version: 17.4.0
engines: {node: '>=v14'}
dependencies:
chalk: registry.npmmirror.com/chalk/4.1.2
dev: true
registry.npmmirror.com/@cspotcode/source-map-support/0.8.1:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz}
name: '@cspotcode/source-map-support'
version: 0.8.1
engines: {node: '>=12'}
dependencies:
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.9
dev: true
registry.npmmirror.com/@csstools/selector-specificity/2.1.1_wajs5nedgkikc5pcuwett7legi:
resolution: {integrity: sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz}
id: registry.npmmirror.com/@csstools/selector-specificity/2.1.1
name: '@csstools/selector-specificity'
version: 2.1.1
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
postcss-selector-parser: ^6.0.10
dependencies:
postcss: registry.npmmirror.com/postcss/8.4.21
postcss-selector-parser: registry.npmmirror.com/postcss-selector-parser/6.0.11
dev: true
registry.npmmirror.com/@discoveryjs/json-ext/0.5.7:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz}
name: '@discoveryjs/json-ext'
version: 0.5.7
engines: {node: '>=10.0.0'}
dev: true
registry.npmmirror.com/@eslint/eslintrc/1.4.1:
resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz}
name: '@eslint/eslintrc'
version: 1.4.1
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.4
espree: registry.npmmirror.com/espree/9.4.1
globals: registry.npmmirror.com/globals/13.19.0
ignore: registry.npmmirror.com/ignore/5.2.4
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/@gar/promisify/1.1.3:
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@gar/promisify/-/promisify-1.1.3.tgz}
name: '@gar/promisify'
version: 1.1.3
dev: true
registry.npmmirror.com/@humanwhocodes/config-array/0.11.8:
resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz}
name: '@humanwhocodes/config-array'
version: 0.11.8
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.4
minimatch: registry.npmmirror.com/minimatch/3.1.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@humanwhocodes/module-importer/1.0.1:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz}
name: '@humanwhocodes/module-importer'
version: 1.0.1
engines: {node: '>=12.22'}
dev: true
registry.npmmirror.com/@humanwhocodes/object-schema/1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, registry: http://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/gen-mapping/0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==, registry: http://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: true
registry.npmmirror.com/@jridgewell/resolve-uri/3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz}