-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyarn.lock
More file actions
4070 lines (3501 loc) · 143 KB
/
yarn.lock
File metadata and controls
4070 lines (3501 loc) · 143 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@antfu/utils@^0.5.0", "@antfu/utils@^0.5.1":
"integrity" "sha512-8Afo0+xvYe1K8Wm4xHTymfTkpzy36aaqDvhXIayUwl+mecMG9Xzl3XjXa6swG6Bk8FBeQ646RyvmsYt6+2Be9g=="
"resolved" "https://registry.npmmirror.com/@antfu/utils/-/utils-0.5.1.tgz"
"version" "0.5.1"
"@babel/helper-validator-identifier@^7.16.7":
"integrity" "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
"resolved" "http://snpm.cnsuning.com/@babel%2fhelper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"
"version" "7.16.7"
"@babel/parser@^7.15.8", "@babel/parser@^7.16.4", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
"integrity" "sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg=="
"resolved" "http://snpm.cnsuning.com/@babel%2fparser/-/parser-7.17.9.tgz"
"version" "7.17.9"
"@babel/types@^7.6.1", "@babel/types@^7.9.6":
"integrity" "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="
"resolved" "http://snpm.cnsuning.com/@babel%2ftypes/-/types-7.17.0.tgz"
"version" "7.17.0"
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
"to-fast-properties" "^2.0.0"
"@braintree/sanitize-url@^6.0.0":
"integrity" "sha512-mgmE7XBYY/21erpzhexk4Cj1cyTQ9LzvnTxtzM17BJ7ERMNE6W72mQRo0I1Ud8eFJ+RVVIcBNhLFZ3GX4XFz5w=="
"resolved" "http://snpm.cnsuning.com/@braintree%2fsanitize-url/-/sanitize-url-6.0.0.tgz"
"version" "6.0.0"
"@bytemd/plugin-breaks@^1.15.0":
"integrity" "sha512-irIsqAco4vY7H4FgG3oEIVWckN8l01NBy8PqyyPSIM4o6Xzzv2G4TrnQn6ge47s4P/DarMGEhB0pKoWV/vIZ2g=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-breaks/-/plugin-breaks-1.15.0.tgz"
"version" "1.15.0"
"@bytemd/plugin-footnotes@^1.12.4":
"integrity" "sha512-wyj3UkAxzx9lg47Esc5W/co2k9YA5MOHAPQkUo0dX0gF8vydSuc1FRx3w9Q3N3ILT3rTOzmp97FaqsUmThmktA=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-footnotes/-/plugin-footnotes-1.12.4.tgz"
"version" "1.12.4"
"@bytemd/plugin-frontmatter@^1.15.0":
"integrity" "sha512-NY26H/lNymGX6i0iwbLZWG+v7xQaAaMpL0d7MQbH4t2EqxyPvkbZdkiluplzvbT6Kg3ViPkB7poOCj4GTBNOYw=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-frontmatter/-/plugin-frontmatter-1.15.0.tgz"
"version" "1.15.0"
"@bytemd/plugin-gemoji@^1.15.0":
"integrity" "sha512-v9TuERHxUhsEV9VbA14gIjtsTX/pqz/xMRDy/sCF/KzRqCiImX2EW35GtXXt5QEZ/AE+og1nRI65tFiAqYWSow=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-gemoji/-/plugin-gemoji-1.15.0.tgz"
"version" "1.15.0"
"@bytemd/plugin-gfm@^1.15.0":
"integrity" "sha512-yrDIomnuuOWVm4pMUfbcCHnWBtPySmt/ytZah/eEz1tdMLlHQ7dfoGMl2irmD4lVF4qmADAfaRjtT1kbMN2CAA=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-gfm/-/plugin-gfm-1.15.0.tgz"
"version" "1.15.0"
"@bytemd/plugin-highlight-ssr@^1.15.0":
"integrity" "sha512-tFbsIcWxEybSl4ii0CSymPJmH+PlYgwc7qm46klhmJ9ePduM7xme0pG8Q2cwgHg2HzQypeMo4qhZMtBTaRxsQw=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-highlight-ssr/-/plugin-highlight-ssr-1.15.0.tgz"
"version" "1.15.0"
dependencies:
"highlight.js" "^11.5.1"
"@bytemd/plugin-highlight@^1.15.0":
"integrity" "sha512-FEVZhwss0NPnIsoPSM2ZORxp4KEZGsRVluaknM1eXCVDt8iclVl7M8ShKLGQ7DG6bTx++m13tJVfkA0k8fOw+g=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-highlight/-/plugin-highlight-1.15.0.tgz"
"version" "1.15.0"
dependencies:
"highlight.js" "^11.5.1"
"@bytemd/plugin-math-ssr@^1.15.0":
"integrity" "sha512-vv3I8p9BTH4Iay9EZhRkBBAxqyGYg42N7yCk60/wCOjvLAqCpM0m6qhJ7QS8mselLoi77L4Yi4u9kQClpp5NgA=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-math-ssr/-/plugin-math-ssr-1.15.0.tgz"
"version" "1.15.0"
"@bytemd/plugin-math@^1.15.0":
"integrity" "sha512-M8EgaPBg7u5ClP2v6mU1D2YGtdMrrGgzwy2T9wvpdTe9PFHI4Lm4hq0vOCyGYLSAd8K7KxQjp8ufEW5aWqFN6w=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-math/-/plugin-math-1.15.0.tgz"
"version" "1.15.0"
dependencies:
"@types/katex" "^0.14.0"
"katex" "^0.15.3"
"@bytemd/plugin-medium-zoom@^1.15.0":
"integrity" "sha512-eNKYM+Gzizl54X1guY2XGnlN+eCvLL3fQx4CxSiFrWCmCpqsZ4BkFZNfjI+y43mpfrZzkbqEcr01/0pVn20Z9g=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-medium-zoom/-/plugin-medium-zoom-1.15.0.tgz"
"version" "1.15.0"
dependencies:
"medium-zoom" "^1.0.6"
"@bytemd/plugin-mermaid@^1.15.0":
"integrity" "sha512-OdptSDYC1NE3pmFHQCCL18pbIv3aosL6/a98aSQBo+nQSAbG2ENIPRrjn8BUWtEvGrtv4d9uVY6gpmklJxwR4Q=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fplugin-mermaid/-/plugin-mermaid-1.15.0.tgz"
"version" "1.15.0"
dependencies:
"@types/mermaid" "^8.2.9"
"mermaid" "^9.1.1"
"@bytemd/vue-next@^1.15.0":
"integrity" "sha512-Ka1ZbluUo2uV0QkZnkhhwVi2rzS8C8HNVR71rKE7mjByK3IX2h9pVNmdSiJTgJAQtMfomrgtGSroOk1tt0QEUw=="
"resolved" "http://snpm.cnsuning.com/@bytemd%2fvue-next/-/vue-next-1.15.0.tgz"
"version" "1.15.0"
dependencies:
"bytemd" "1.15.0"
"@ctrl/tinycolor@^3.4.1":
"integrity" "sha512-ej5oVy6lykXsvieQtqZxCOaLT+xD4+QNarq78cIYISHmZXshCvROLudpQN3lfL8G0NL7plMSSK+zlyvCaIJ4Iw=="
"resolved" "http://snpm.cnsuning.com/@ctrl%2ftinycolor/-/tinycolor-3.4.1.tgz"
"version" "3.4.1"
"@element-plus/icons-vue@^1.1.4":
"integrity" "sha512-Iz/nHqdp1sFPmdzRwHkEQQA3lKvoObk8azgABZ81QUOpW9s/lUyQVUSh0tNtEPZXQlKwlSh7SPgoVxzrE0uuVQ=="
"resolved" "http://snpm.cnsuning.com/@element-plus%2ficons-vue/-/icons-vue-1.1.4.tgz"
"version" "1.1.4"
"@emmetio/abbreviation@^2.2.3":
"integrity" "sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA=="
"resolved" "http://snpm.cnsuning.com/@emmetio%2fabbreviation/-/abbreviation-2.2.3.tgz"
"version" "2.2.3"
dependencies:
"@emmetio/scanner" "^1.0.0"
"@emmetio/css-abbreviation@^2.1.4":
"integrity" "sha1-kDYuihEizjt29sMVeQfTAYL1P1Q="
"resolved" "http://snpm.cnsuning.com/@emmetio%2fcss-abbreviation/-/css-abbreviation-2.1.4.tgz"
"version" "2.1.4"
dependencies:
"@emmetio/scanner" "^1.0.0"
"@emmetio/scanner@^1.0.0":
"integrity" "sha1-Blsq9iM/50dNRII+PeuJckr0K18="
"resolved" "http://snpm.cnsuning.com/@emmetio%2fscanner/-/scanner-1.0.0.tgz"
"version" "1.0.0"
"@eslint/eslintrc@^1.2.1":
"integrity" "sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ=="
"resolved" "http://snpm.cnsuning.com/@eslint%2feslintrc/-/eslintrc-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.3.1"
"globals" "^13.9.0"
"ignore" "^5.2.0"
"import-fresh" "^3.2.1"
"js-yaml" "^4.1.0"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@floating-ui/core@^0.6.2":
"integrity" "sha512-jktYRmZwmau63adUG3GKOAVCofBXkk55S/zQ94XOorAHhwqFIOFAy1rSp2N0Wp6/tGbe9V3u/ExlGZypyY17rg=="
"resolved" "http://snpm.cnsuning.com/@floating-ui%2fcore/-/core-0.6.2.tgz"
"version" "0.6.2"
"@floating-ui/dom@^0.4.4":
"integrity" "sha512-b+prvQgJt8pieaKYMSJBXHxX/DYwdLsAWxKYqnO5dO2V4oo/TYBZJAUQCVNjTWWsrs6o4VDrNcP9+E70HAhJdw=="
"resolved" "http://snpm.cnsuning.com/@floating-ui%2fdom/-/dom-0.4.5.tgz"
"version" "0.4.5"
dependencies:
"@floating-ui/core" "^0.6.2"
"@humanwhocodes/config-array@^0.9.2":
"integrity" "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw=="
"resolved" "http://snpm.cnsuning.com/@humanwhocodes%2fconfig-array/-/config-array-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
"debug" "^4.1.1"
"minimatch" "^3.0.4"
"@humanwhocodes/object-schema@^1.2.1":
"integrity" "sha1-tSBSnsIdjllFoYUd/Rwy6U45/0U="
"resolved" "http://snpm.cnsuning.com/@humanwhocodes%2fobject-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@nodelib/fs.scandir@2.1.5":
"integrity" "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U="
"resolved" "http://snpm.cnsuning.com/@nodelib%2ffs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
"integrity" "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos="
"resolved" "http://snpm.cnsuning.com/@nodelib%2ffs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po="
"resolved" "http://snpm.cnsuning.com/@nodelib%2ffs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@popperjs/core@^2.11.5":
"integrity" "sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw=="
"resolved" "http://snpm.cnsuning.com/@popperjs%2fcore/-/core-2.11.5.tgz"
"version" "2.11.5"
"@rollup/pluginutils@^4.2.0":
"integrity" "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="
"resolved" "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz"
"version" "4.2.1"
dependencies:
"estree-walker" "^2.0.1"
"picomatch" "^2.2.2"
"@tootallnate/once@1":
"integrity" "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="
"resolved" "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz"
"version" "1.1.2"
"@types/codemirror@^5.60.5":
"integrity" "sha1-W5iaO0u+ZXRYzzcskra/2mBhorc="
"resolved" "http://snpm.cnsuning.com/@types%2fcodemirror/-/codemirror-5.60.5.tgz"
"version" "5.60.5"
dependencies:
"@types/tern" "*"
"@types/estree@*":
"integrity" "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ=="
"resolved" "http://snpm.cnsuning.com/@types%2festree/-/estree-0.0.51.tgz"
"version" "0.0.51"
"@types/js-cookie@^3.0.2":
"integrity" "sha512-6+0ekgfusHftJNYpihfkMu8BWdeHs9EOJuGcSofErjstGPfPGEu9yTu4t460lTzzAMl2cM5zngQJqPMHbbnvYA=="
"resolved" "https://registry.npmmirror.com/@types/js-cookie/-/js-cookie-3.0.2.tgz"
"version" "3.0.2"
"@types/js-md5@^0.4.3":
"integrity" "sha1-wTTLtxx1AYh2GB+IahKi+ZYqMSo="
"resolved" "http://snpm.cnsuning.com/@types%2fjs-md5/-/js-md5-0.4.3.tgz"
"version" "0.4.3"
"@types/json-schema@^7.0.9":
"integrity" "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="
"resolved" "http://snpm.cnsuning.com/@types%2fjson-schema/-/json-schema-7.0.11.tgz"
"version" "7.0.11"
"@types/json5@^0.0.29":
"integrity" "sha1-7ihweulOEdK4J7y+UnC86n8+ce4="
"resolved" "http://snpm.cnsuning.com/@types%2fjson5/-/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/katex@^0.14.0":
"integrity" "sha512-+2FW2CcT0K3P+JMR8YG846bmDwplKUTsWgT2ENwdQ1UdVfRk3GQrh6Mi4sTopy30gI8Uau5CEqHTDZ6YvWIUPA=="
"resolved" "http://snpm.cnsuning.com/@types%2fkatex/-/katex-0.14.0.tgz"
"version" "0.14.0"
"@types/lodash-es@*", "@types/lodash-es@^4.17.6":
"integrity" "sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg=="
"resolved" "http://snpm.cnsuning.com/@types%2flodash-es/-/lodash-es-4.17.6.tgz"
"version" "4.17.6"
dependencies:
"@types/lodash" "*"
"@types/lodash@*", "@types/lodash@^4.14.181":
"integrity" "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q=="
"resolved" "http://snpm.cnsuning.com/@types%2flodash/-/lodash-4.14.182.tgz"
"version" "4.14.182"
"@types/mermaid@^8.2.9":
"integrity" "sha512-f1i8fNoVFVJXedk+R7GcEk4KoOWzWAU3CzFqlVw1qWKktfsataBERezCz1pOdKy8Ec02ZdPQXGM7NU2lPHABYQ=="
"resolved" "http://snpm.cnsuning.com/@types%2fmermaid/-/mermaid-8.2.9.tgz"
"version" "8.2.9"
"@types/node@^17.0.23":
"integrity" "sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw=="
"resolved" "http://snpm.cnsuning.com/@types%2fnode/-/node-17.0.23.tgz"
"version" "17.0.23"
"@types/tern@*":
"integrity" "sha1-A5JusT2+rzrg05DK9wayZDoBJ/s="
"resolved" "http://snpm.cnsuning.com/@types%2ftern/-/tern-0.23.4.tgz"
"version" "0.23.4"
dependencies:
"@types/estree" "*"
"@typescript-eslint/eslint-plugin@^5.19.0":
"integrity" "sha512-w59GpFqDYGnWFim9p6TGJz7a3qWeENJuAKCqjGSx+Hq/bwq3RZwXYqy98KIfN85yDqz9mq6QXiY5h0FjGQLyEg=="
"resolved" "http://snpm.cnsuning.com/@typescript-eslint%2feslint-plugin/-/eslint-plugin-5.19.0.tgz"
"version" "5.19.0"
dependencies:
"@typescript-eslint/scope-manager" "5.19.0"
"@typescript-eslint/type-utils" "5.19.0"
"@typescript-eslint/utils" "5.19.0"
"debug" "^4.3.2"
"functional-red-black-tree" "^1.0.1"
"ignore" "^5.1.8"
"regexpp" "^3.2.0"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/parser@^5.0.0", "@typescript-eslint/parser@^5.19.0":
"integrity" "sha512-yhktJjMCJX8BSBczh1F/uY8wGRYrBeyn84kH6oyqdIJwTGKmzX5Qiq49LRQ0Jh0LXnWijEziSo6BRqny8nqLVQ=="
"resolved" "http://snpm.cnsuning.com/@typescript-eslint%2fparser/-/parser-5.19.0.tgz"
"version" "5.19.0"
dependencies:
"@typescript-eslint/scope-manager" "5.19.0"
"@typescript-eslint/types" "5.19.0"
"@typescript-eslint/typescript-estree" "5.19.0"
"debug" "^4.3.2"
"@typescript-eslint/scope-manager@5.19.0":
"integrity" "sha512-Fz+VrjLmwq5fbQn5W7cIJZ066HxLMKvDEmf4eu1tZ8O956aoX45jAuBB76miAECMTODyUxH61AQM7q4/GOMQ5g=="
"resolved" "http://snpm.cnsuning.com/@typescript-eslint%2fscope-manager/-/scope-manager-5.19.0.tgz"
"version" "5.19.0"
dependencies:
"@typescript-eslint/types" "5.19.0"
"@typescript-eslint/visitor-keys" "5.19.0"
"@typescript-eslint/type-utils@5.19.0":
"integrity" "sha512-O6XQ4RI4rQcBGshTQAYBUIGsKqrKeuIOz9v8bckXZnSeXjn/1+BDZndHLe10UplQeJLXDNbaZYrAytKNQO2T4Q=="
"resolved" "http://snpm.cnsuning.com/@typescript-eslint%2ftype-utils/-/type-utils-5.19.0.tgz"
"version" "5.19.0"
dependencies:
"@typescript-eslint/utils" "5.19.0"
"debug" "^4.3.2"
"tsutils" "^3.21.0"
"@typescript-eslint/types@5.19.0":
"integrity" "sha512-zR1ithF4Iyq1wLwkDcT+qFnhs8L5VUtjgac212ftiOP/ZZUOCuuF2DeGiZZGQXGoHA50OreZqLH5NjDcDqn34w=="
"resolved" "http://snpm.cnsuning.com/@typescript-eslint%2ftypes/-/types-5.19.0.tgz"
"version" "5.19.0"
"@typescript-eslint/typescript-estree@5.19.0":
"integrity" "sha512-dRPuD4ocXdaE1BM/dNR21elSEUPKaWgowCA0bqJ6YbYkvtrPVEvZ+zqcX5a8ECYn3q5iBSSUcBBD42ubaOp0Hw=="
"resolved" "http://snpm.cnsuning.com/@typescript-eslint%2ftypescript-estree/-/typescript-estree-5.19.0.tgz"
"version" "5.19.0"
dependencies:
"@typescript-eslint/types" "5.19.0"
"@typescript-eslint/visitor-keys" "5.19.0"
"debug" "^4.3.2"
"globby" "^11.0.4"
"is-glob" "^4.0.3"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/utils@5.19.0":
"integrity" "sha512-ZuEckdupXpXamKvFz/Ql8YnePh2ZWcwz7APICzJL985Rp5C2AYcHO62oJzIqNhAMtMK6XvrlBTZeNG8n7gS3lQ=="
"resolved" "http://snpm.cnsuning.com/@typescript-eslint%2futils/-/utils-5.19.0.tgz"
"version" "5.19.0"
dependencies:
"@types/json-schema" "^7.0.9"
"@typescript-eslint/scope-manager" "5.19.0"
"@typescript-eslint/types" "5.19.0"
"@typescript-eslint/typescript-estree" "5.19.0"
"eslint-scope" "^5.1.1"
"eslint-utils" "^3.0.0"
"@typescript-eslint/visitor-keys@5.19.0":
"integrity" "sha512-Ym7zZoMDZcAKWsULi2s7UMLREdVQdScPQ/fKWMYefarCztWlHPFVJo8racf8R0Gc8FAEJ2eD4of8As1oFtnQlQ=="
"resolved" "http://snpm.cnsuning.com/@typescript-eslint%2fvisitor-keys/-/visitor-keys-5.19.0.tgz"
"version" "5.19.0"
dependencies:
"@typescript-eslint/types" "5.19.0"
"eslint-visitor-keys" "^3.0.0"
"@vitejs/plugin-vue@^2.3.1":
"integrity" "sha512-YNzBt8+jt6bSwpt7LP890U1UcTOIZZxfpE5WOJ638PNxSEKOqAi0+FSKS0nVeukfdZ0Ai/H7AFd6k3hayfGZqQ=="
"resolved" "http://snpm.cnsuning.com/@vitejs%2fplugin-vue/-/plugin-vue-2.3.1.tgz"
"version" "2.3.1"
"@volar/code-gen@0.29.8":
"integrity" "sha512-eohLLUqPChHRPDFT5gXn4V6pr/CeTri7Ou5GI26lUvBRRAbP8p+oYfQRcbMPGeKmVkYjfVj0chsxQGx6T8PQ4Q=="
"resolved" "http://snpm.cnsuning.com/@volar%2fcode-gen/-/code-gen-0.29.8.tgz"
"version" "0.29.8"
dependencies:
"@volar/shared" "0.29.8"
"@volar/source-map" "0.29.8"
"@volar/html2pug@0.29.8":
"integrity" "sha512-bhSNXg8A2aD3w0B+CwmHjqCAaKtj5rORbE5C/q/UdGqptJbC6STCmi30KuRTdfPhR++Xb18Hauf3s/WCmtNAPA=="
"resolved" "http://snpm.cnsuning.com/@volar%2fhtml2pug/-/html2pug-0.29.8.tgz"
"version" "0.29.8"
dependencies:
"domelementtype" "^2.2.0"
"domhandler" "^4.2.2"
"htmlparser2" "^7.1.2"
"pug" "^3.0.2"
"@volar/shared@0.29.8":
"integrity" "sha512-Y1NN6irkIukD+T0wf4p/dHWYL90sacN2e2lYoDXxRlvoYxwANnHgw0J0Rcp+yw58ElWRScdG7/YntEIuZWeJsw=="
"resolved" "http://snpm.cnsuning.com/@volar%2fshared/-/shared-0.29.8.tgz"
"version" "0.29.8"
dependencies:
"upath" "^2.0.1"
"vscode-jsonrpc" "^8.0.0-next.2"
"vscode-uri" "^3.0.2"
"@volar/source-map@0.29.8":
"integrity" "sha512-7w+UoYtnc6UQu30CgMVvx0YN4dzDgP4TIsSmUaW62AGmxU9Lxwp3Kkn/4N8efi91z8ma5Z78v/HddyJPwAC3LA=="
"resolved" "http://snpm.cnsuning.com/@volar%2fsource-map/-/source-map-0.29.8.tgz"
"version" "0.29.8"
dependencies:
"@volar/shared" "0.29.8"
"@volar/transforms@0.29.8":
"integrity" "sha512-o2hRa8CoDwYTO1Mu5KA47+1elUnYUjDaVhCvbyKlRfd8qpHea2llotArq7B6OORSL2M9DVs1IRJ5NGURBFeZ3Q=="
"resolved" "http://snpm.cnsuning.com/@volar%2ftransforms/-/transforms-0.29.8.tgz"
"version" "0.29.8"
dependencies:
"@volar/shared" "0.29.8"
"vscode-languageserver" "^8.0.0-next.2"
"@volar/vue-code-gen@0.29.8":
"integrity" "sha512-E1e7P2oktNC/DzgDBditfla4s8+HlUlluZ+BtcLvEdbkl3QEjujkB0x1wxguWzXmpWgLIDPtrS3Jzll5cCOkTg=="
"resolved" "http://snpm.cnsuning.com/@volar%2fvue-code-gen/-/vue-code-gen-0.29.8.tgz"
"version" "0.29.8"
dependencies:
"@volar/code-gen" "0.29.8"
"@volar/shared" "0.29.8"
"@volar/source-map" "0.29.8"
"@vue/compiler-core" "^3.2.21"
"@vue/compiler-dom" "^3.2.21"
"@vue/shared" "^3.2.21"
"upath" "^2.0.1"
"@vscode/emmet-helper@^2.8.0":
"integrity" "sha512-lUki5QLS47bz/U8IlG9VQ+1lfxMtxMZENmU5nu4Z71eOD5j9FK0SmYGL5NiVJg9WBWeAU0VxRADMY2Qpq7BfVg=="
"resolved" "http://snpm.cnsuning.com/@vscode%2femmet-helper/-/emmet-helper-2.8.4.tgz"
"version" "2.8.4"
dependencies:
"emmet" "^2.3.0"
"jsonc-parser" "^2.3.0"
"vscode-languageserver-textdocument" "^1.0.1"
"vscode-languageserver-types" "^3.15.1"
"vscode-nls" "^5.0.0"
"vscode-uri" "^2.1.2"
"@vue/compiler-core@^3.2.21", "@vue/compiler-core@3.2.32":
"integrity" "sha512-bRQ8Rkpm/aYFElDWtKkTPHeLnX5pEkNxhPUcqu5crEJIilZH0yeFu/qUAcV4VfSE2AudNPkQSOwMZofhnuutmA=="
"resolved" "http://snpm.cnsuning.com/@vue%2fcompiler-core/-/compiler-core-3.2.32.tgz"
"version" "3.2.32"
dependencies:
"@babel/parser" "^7.16.4"
"@vue/shared" "3.2.32"
"estree-walker" "^2.0.2"
"source-map" "^0.6.1"
"@vue/compiler-dom@^3.2.21", "@vue/compiler-dom@3.2.32":
"integrity" "sha512-maa3PNB/NxR17h2hDQfcmS02o1f9r9QIpN1y6fe8tWPrS1E4+q8MqrvDDQNhYVPd84rc3ybtyumrgm9D5Rf/kg=="
"resolved" "http://snpm.cnsuning.com/@vue%2fcompiler-dom/-/compiler-dom-3.2.32.tgz"
"version" "3.2.32"
dependencies:
"@vue/compiler-core" "3.2.32"
"@vue/shared" "3.2.32"
"@vue/compiler-sfc@3.2.32":
"integrity" "sha512-uO6+Gh3AVdWm72lRRCjMr8nMOEqc6ezT9lWs5dPzh1E9TNaJkMYPaRtdY9flUv/fyVQotkfjY/ponjfR+trPSg=="
"resolved" "http://snpm.cnsuning.com/@vue%2fcompiler-sfc/-/compiler-sfc-3.2.32.tgz"
"version" "3.2.32"
dependencies:
"@babel/parser" "^7.16.4"
"@vue/compiler-core" "3.2.32"
"@vue/compiler-dom" "3.2.32"
"@vue/compiler-ssr" "3.2.32"
"@vue/reactivity-transform" "3.2.32"
"@vue/shared" "3.2.32"
"estree-walker" "^2.0.2"
"magic-string" "^0.25.7"
"postcss" "^8.1.10"
"source-map" "^0.6.1"
"@vue/compiler-ssr@3.2.32":
"integrity" "sha512-ZklVUF/SgTx6yrDUkaTaBL/JMVOtSocP+z5Xz/qIqqLdW/hWL90P+ob/jOQ0Xc/om57892Q7sRSrex0wujOL2Q=="
"resolved" "http://snpm.cnsuning.com/@vue%2fcompiler-ssr/-/compiler-ssr-3.2.32.tgz"
"version" "3.2.32"
dependencies:
"@vue/compiler-dom" "3.2.32"
"@vue/shared" "3.2.32"
"@vue/devtools-api@^6.0.0", "@vue/devtools-api@^6.1.4":
"integrity" "sha512-IiA0SvDrJEgXvVxjNkHPFfDx6SXw0b/TUkqMcDZWNg9fnCAHbTpoo59YfJ9QLFkwa3raau5vSlRVzMSLDnfdtQ=="
"resolved" "http://snpm.cnsuning.com/@vue%2fdevtools-api/-/devtools-api-6.1.4.tgz"
"version" "6.1.4"
"@vue/reactivity-transform@3.2.32":
"integrity" "sha512-CW1W9zaJtE275tZSWIfQKiPG0iHpdtSlmTqYBu7Y62qvtMgKG5yOxtvBs4RlrZHlaqFSE26avLAgQiTp4YHozw=="
"resolved" "http://snpm.cnsuning.com/@vue%2freactivity-transform/-/reactivity-transform-3.2.32.tgz"
"version" "3.2.32"
dependencies:
"@babel/parser" "^7.16.4"
"@vue/compiler-core" "3.2.32"
"@vue/shared" "3.2.32"
"estree-walker" "^2.0.2"
"magic-string" "^0.25.7"
"@vue/reactivity@^3.2.21", "@vue/reactivity@3.2.32":
"integrity" "sha512-4zaDumuyDqkuhbb63hRd+YHFGopW7srFIWesLUQ2su/rJfWrSq3YUvoKAJE8Eu1EhZ2Q4c1NuwnEreKj1FkDxA=="
"resolved" "http://snpm.cnsuning.com/@vue%2freactivity/-/reactivity-3.2.32.tgz"
"version" "3.2.32"
dependencies:
"@vue/shared" "3.2.32"
"@vue/runtime-core@3.2.32":
"integrity" "sha512-uKKzK6LaCnbCJ7rcHvsK0azHLGpqs+Vi9B28CV1mfWVq1F3Bj8Okk3cX+5DtD06aUh4V2bYhS2UjjWiUUKUF0w=="
"resolved" "http://snpm.cnsuning.com/@vue%2fruntime-core/-/runtime-core-3.2.32.tgz"
"version" "3.2.32"
dependencies:
"@vue/reactivity" "3.2.32"
"@vue/shared" "3.2.32"
"@vue/runtime-dom@3.2.32":
"integrity" "sha512-AmlIg+GPqjkNoADLjHojEX5RGcAg+TsgXOOcUrtDHwKvA8mO26EnLQLB8nylDjU6AMJh2CIYn8NEgyOV5ZIScQ=="
"resolved" "http://snpm.cnsuning.com/@vue%2fruntime-dom/-/runtime-dom-3.2.32.tgz"
"version" "3.2.32"
dependencies:
"@vue/runtime-core" "3.2.32"
"@vue/shared" "3.2.32"
"csstype" "^2.6.8"
"@vue/server-renderer@3.2.32":
"integrity" "sha512-TYKpZZfRJpGTTiy/s6bVYwQJpAUx3G03z4G7/3O18M11oacrMTVHaHjiPuPqf3xQtY8R4LKmQ3EOT/DRCA/7Wg=="
"resolved" "http://snpm.cnsuning.com/@vue%2fserver-renderer/-/server-renderer-3.2.32.tgz"
"version" "3.2.32"
dependencies:
"@vue/compiler-ssr" "3.2.32"
"@vue/shared" "3.2.32"
"@vue/shared@^3.2.21", "@vue/shared@3.2.32":
"integrity" "sha512-bjcixPErUsAnTQRQX4Z5IQnICYjIfNCyCl8p29v1M6kfVzvwOICPw+dz48nNuWlTOOx2RHhzHdazJibE8GSnsw=="
"resolved" "http://snpm.cnsuning.com/@vue%2fshared/-/shared-3.2.32.tgz"
"version" "3.2.32"
"@vueuse/core@*", "@vueuse/core@^8.2.5":
"integrity" "sha512-fzlpM3B5oVe+UhCT1mXlhG1Zxdq2lq1Z2AvddSB8+RxrsSFzII7DKfsQEz8Vop7Lzc++4m8drTNbhPovYoFqHw=="
"resolved" "http://snpm.cnsuning.com/@vueuse%2fcore/-/core-8.2.6.tgz"
"version" "8.2.6"
dependencies:
"@vueuse/metadata" "8.2.6"
"@vueuse/shared" "8.2.6"
"vue-demi" "*"
"@vueuse/metadata@8.2.6":
"integrity" "sha512-OBKtafCt+4RcEJlYDCjp1vl65pBCL2g4TmipEtdZ8/qphKlW6nakJbkY7XRN5grPmjqU99/ahJGtyGk5NHS2hw=="
"resolved" "http://snpm.cnsuning.com/@vueuse%2fmetadata/-/metadata-8.2.6.tgz"
"version" "8.2.6"
"@vueuse/shared@8.2.6":
"integrity" "sha512-J/W4CMfdL8TahELuSOgtfVO4eQXTjhigp7dVWIBsLUVFCeY9d49gvHUcQN3y5xYLZ6iNP57TjTQjMMT/zhklkw=="
"resolved" "http://snpm.cnsuning.com/@vueuse%2fshared/-/shared-8.2.6.tgz"
"version" "8.2.6"
dependencies:
"vue-demi" "*"
"acorn-jsx@^5.3.1":
"integrity" "sha1-ftW7VZCLOy8bxVxq8WU7rafweTc="
"resolved" "http://snpm.cnsuning.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
"version" "5.3.2"
"acorn-walk@^8.2.0":
"integrity" "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="
"resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz"
"version" "8.2.0"
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^7.1.1":
"integrity" "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo="
"resolved" "http://snpm.cnsuning.com/acorn/-/acorn-7.4.1.tgz"
"version" "7.4.1"
"acorn@^8.7.0":
"integrity" "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ=="
"resolved" "http://snpm.cnsuning.com/acorn/-/acorn-8.7.0.tgz"
"version" "8.7.0"
"agent-base@^6.0.0", "agent-base@^6.0.2", "agent-base@6":
"integrity" "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="
"resolved" "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz"
"version" "6.0.2"
dependencies:
"debug" "4"
"aggregate-error@^3.0.0":
"integrity" "sha1-kmcP9Q9TWb23o+DUDQ7DDFc3aHo="
"resolved" "http://snpm.cnsuning.com/aggregate-error/-/aggregate-error-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"clean-stack" "^2.0.0"
"indent-string" "^4.0.0"
"ajv@^6.10.0", "ajv@^6.12.4":
"integrity" "sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ="
"resolved" "http://snpm.cnsuning.com/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-escapes@^4.3.0":
"integrity" "sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4="
"resolved" "http://snpm.cnsuning.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
"version" "4.3.2"
dependencies:
"type-fest" "^0.21.3"
"ansi-regex@^5.0.1":
"integrity" "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ="
"resolved" "http://snpm.cnsuning.com/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-regex@^6.0.1":
"integrity" "sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo="
"resolved" "http://snpm.cnsuning.com/ansi-regex/-/ansi-regex-6.0.1.tgz"
"version" "6.0.1"
"ansi-styles@^4.0.0", "ansi-styles@^4.1.0":
"integrity" "sha1-7dgDYornHATIWuegkG7a00tkiTc="
"resolved" "http://snpm.cnsuning.com/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansi-styles@^6.0.0":
"integrity" "sha1-hzE8ECuBGKvVc3GvqzRhi/c1DtM="
"resolved" "http://snpm.cnsuning.com/ansi-styles/-/ansi-styles-6.1.0.tgz"
"version" "6.1.0"
"anymatch@~3.1.2":
"integrity" "sha1-wFV8CWrzLxBhmPT04qODU343hxY="
"resolved" "http://snpm.cnsuning.com/anymatch/-/anymatch-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"normalize-path" "^3.0.0"
"picomatch" "^2.0.4"
"argparse@^2.0.1":
"integrity" "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg="
"resolved" "http://snpm.cnsuning.com/argparse/-/argparse-2.0.1.tgz"
"version" "2.0.1"
"array-includes@^3.1.4":
"integrity" "sha1-9bSTFix2DzU5Yx8AW6K7Rqy0W6k="
"resolved" "http://snpm.cnsuning.com/array-includes/-/array-includes-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"es-abstract" "^1.19.1"
"get-intrinsic" "^1.1.1"
"is-string" "^1.0.7"
"array-union@^2.1.0":
"integrity" "sha1-t5hCCtvrHego2ErNii4j0+/oXo0="
"resolved" "http://snpm.cnsuning.com/array-union/-/array-union-2.1.0.tgz"
"version" "2.1.0"
"array.prototype.flat@^1.2.5":
"integrity" "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw=="
"resolved" "http://snpm.cnsuning.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"es-abstract" "^1.19.2"
"es-shim-unscopables" "^1.0.0"
"asap@^2.0.0", "asap@~2.0.3":
"integrity" "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
"resolved" "http://snpm.cnsuning.com/asap/-/asap-2.0.6.tgz"
"version" "2.0.6"
"assert-never@^1.2.1":
"integrity" "sha1-EfDjY78UYgX7CBk7XHuQ9NHPRP4="
"resolved" "http://snpm.cnsuning.com/assert-never/-/assert-never-1.2.1.tgz"
"version" "1.2.1"
"ast-types@^0.13.2":
"integrity" "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w=="
"resolved" "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz"
"version" "0.13.4"
dependencies:
"tslib" "^2.0.1"
"astral-regex@^2.0.0":
"integrity" "sha1-SDFDxWeu7UeFdZwIZXhtx319LjE="
"resolved" "http://snpm.cnsuning.com/astral-regex/-/astral-regex-2.0.0.tgz"
"version" "2.0.0"
"async-validator@^4.0.7":
"integrity" "sha1-A0oP0hA6ay6/AQ2nUYO+wpkkev4="
"resolved" "http://snpm.cnsuning.com/async-validator/-/async-validator-4.0.7.tgz"
"version" "4.0.7"
"asynckit@^0.4.0":
"integrity" "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
"resolved" "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
"version" "0.4.0"
"axios@^0.26.1":
"integrity" "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA=="
"resolved" "http://snpm.cnsuning.com/axios/-/axios-0.26.1.tgz"
"version" "0.26.1"
dependencies:
"follow-redirects" "^1.14.8"
"babel-walk@3.0.0-canary-5":
"integrity" "sha1-9m7Ncpg1eu5ElV8jWm71QhkQSxE="
"resolved" "http://snpm.cnsuning.com/babel-walk/-/babel-walk-3.0.0-canary-5.tgz"
"version" "3.0.0-canary-5"
dependencies:
"@babel/types" "^7.9.6"
"balanced-match@^1.0.0":
"integrity" "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4="
"resolved" "http://snpm.cnsuning.com/balanced-match/-/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"baota@^0.2.1":
"integrity" "sha512-Yt9OlW9t1C9wjz5F3V3b1kshn9jsjxb9kObgoqiZpA7cAvcqWgTFQ+Me7H4I4wrbS6p4IOL7BiO/Y5nR2+8hjA=="
"resolved" "https://registry.npmjs.org/baota/-/baota-0.2.1.tgz"
"version" "0.2.1"
dependencies:
"md5" "^2.3.0"
"superagent" "^7.1.3"
"superagent-proxy" "^3.0.0"
"binary-extensions@^2.0.0":
"integrity" "sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0="
"resolved" "http://snpm.cnsuning.com/binary-extensions/-/binary-extensions-2.2.0.tgz"
"version" "2.2.0"
"brace-expansion@^1.1.7":
"integrity" "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0="
"resolved" "http://snpm.cnsuning.com/brace-expansion/-/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"brace-expansion@^2.0.1":
"integrity" "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="
"resolved" "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"balanced-match" "^1.0.0"
"braces@^3.0.2", "braces@~3.0.2":
"integrity" "sha1-NFThpGLujVmeI23zNs2epPiv4Qc="
"resolved" "http://snpm.cnsuning.com/braces/-/braces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"fill-range" "^7.0.1"
"bytemd@^1.15.0", "bytemd@^1.5.0", "bytemd@1.15.0":
"integrity" "sha512-27G6vP4oLuaAEISCs+PnCcrQu4aeUkvkcViSefU0KxqXjmFHzjouqKWgd55S7jZWdNy1GwPAYyzpAR8A7qqxLQ=="
"resolved" "http://snpm.cnsuning.com/bytemd/-/bytemd-1.15.0.tgz"
"version" "1.15.0"
dependencies:
"@types/codemirror" "^5.60.5"
"bytes@3.1.2":
"integrity" "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="
"resolved" "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz"
"version" "3.1.2"
"call-bind@^1.0.0", "call-bind@^1.0.2":
"integrity" "sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw="
"resolved" "http://snpm.cnsuning.com/call-bind/-/call-bind-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"function-bind" "^1.1.1"
"get-intrinsic" "^1.0.2"
"callsites@^3.0.0":
"integrity" "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M="
"resolved" "http://snpm.cnsuning.com/callsites/-/callsites-3.1.0.tgz"
"version" "3.1.0"
"chalk@^4.0.0":
"integrity" "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE="
"resolved" "http://snpm.cnsuning.com/chalk/-/chalk-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"character-parser@^2.2.0":
"integrity" "sha1-x84o821LzZdE5f/CxfzeHHMmH8A="
"resolved" "http://snpm.cnsuning.com/character-parser/-/character-parser-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"is-regex" "^1.0.3"
"charenc@0.0.2":
"integrity" "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA=="
"resolved" "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz"
"version" "0.0.2"
"chokidar@^3.5.3", "chokidar@>=3.0.0 <4.0.0":
"integrity" "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="
"resolved" "http://snpm.cnsuning.com/chokidar/-/chokidar-3.5.3.tgz"
"version" "3.5.3"
dependencies:
"anymatch" "~3.1.2"
"braces" "~3.0.2"
"glob-parent" "~5.1.2"
"is-binary-path" "~2.1.0"
"is-glob" "~4.0.1"
"normalize-path" "~3.0.0"
"readdirp" "~3.6.0"
optionalDependencies:
"fsevents" "~2.3.2"
"clean-stack@^2.0.0":
"integrity" "sha1-7oRy27Ep5yezHooQpCfe6d/kAIs="
"resolved" "http://snpm.cnsuning.com/clean-stack/-/clean-stack-2.2.0.tgz"
"version" "2.2.0"
"cli-cursor@^3.1.0":
"integrity" "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc="
"resolved" "http://snpm.cnsuning.com/cli-cursor/-/cli-cursor-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"restore-cursor" "^3.1.0"
"cli-truncate@^2.1.0":
"integrity" "sha1-w54ovwXtzeW+O5iZKiLe7Vork8c="
"resolved" "http://snpm.cnsuning.com/cli-truncate/-/cli-truncate-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"slice-ansi" "^3.0.0"
"string-width" "^4.2.0"
"cli-truncate@^3.1.0":
"integrity" "sha1-PyOrElNePXPoObtD5zyd5IfbE4k="
"resolved" "http://snpm.cnsuning.com/cli-truncate/-/cli-truncate-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"slice-ansi" "^5.0.0"
"string-width" "^5.0.0"
"color-convert@^2.0.1":
"integrity" "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM="
"resolved" "http://snpm.cnsuning.com/color-convert/-/color-convert-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"color-name" "~1.1.4"
"color-name@~1.1.4":
"integrity" "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI="
"resolved" "http://snpm.cnsuning.com/color-name/-/color-name-1.1.4.tgz"
"version" "1.1.4"
"colorette@^2.0.16":
"integrity" "sha1-cTua+E/bAAE58EVGvUqT9ipQhdo="
"resolved" "http://snpm.cnsuning.com/colorette/-/colorette-2.0.16.tgz"
"version" "2.0.16"
"combined-stream@^1.0.8":
"integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="
"resolved" "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"
"version" "1.0.8"
dependencies:
"delayed-stream" "~1.0.0"
"commander@^8.0.0", "commander@^8.3.0":
"integrity" "sha1-SDfqGy2me5xhamevuw+v7lZ7ymY="
"resolved" "http://snpm.cnsuning.com/commander/-/commander-8.3.0.tgz"
"version" "8.3.0"
"commander@2":
"integrity" "sha1-/UhehMA+tIgcIHIrpIA16FMa6zM="
"resolved" "http://snpm.cnsuning.com/commander/-/commander-2.20.3.tgz"
"version" "2.20.3"
"commander@7":
"integrity" "sha1-o2y1fQtQHOEI5NIFWaFQo5HZerc="
"resolved" "http://snpm.cnsuning.com/commander/-/commander-7.2.0.tgz"
"version" "7.2.0"
"component-emitter@^1.3.0":
"integrity" "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="
"resolved" "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz"
"version" "1.3.0"
"concat-map@0.0.1":
"integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
"resolved" "http://snpm.cnsuning.com/concat-map/-/concat-map-0.0.1.tgz"
"version" "0.0.1"
"confusing-browser-globals@^1.0.10":
"integrity" "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA=="
"resolved" "http://snpm.cnsuning.com/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz"
"version" "1.0.11"
"constantinople@^4.0.1":
"integrity" "sha1-De8RP6Dk3I3oMzGlz3nIsyUhMVE="
"resolved" "http://snpm.cnsuning.com/constantinople/-/constantinople-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"@babel/parser" "^7.6.0"
"@babel/types" "^7.6.1"
"cookiejar@^2.1.3":
"integrity" "sha512-JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ=="
"resolved" "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.3.tgz"
"version" "2.1.3"
"core-util-is@~1.0.0":
"integrity" "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
"resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"
"version" "1.0.3"
"cross-spawn@^7.0.2", "cross-spawn@^7.0.3":
"integrity" "sha1-9zqFudXUHQRVUcF34ogtSshXKKY="
"resolved" "http://snpm.cnsuning.com/cross-spawn/-/cross-spawn-7.0.3.tgz"
"version" "7.0.3"
dependencies:
"path-key" "^3.1.0"
"shebang-command" "^2.0.0"
"which" "^2.0.1"
"crypt@0.0.2":
"integrity" "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow=="
"resolved" "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz"
"version" "0.0.2"
"csstype@^2.6.8":
"integrity" "sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA=="
"resolved" "http://snpm.cnsuning.com/csstype/-/csstype-2.6.20.tgz"
"version" "2.6.20"
"d3-array@^1.1.1", "d3-array@^1.2.0", "d3-array@1":
"integrity" "sha1-o/2TjvuO1q4hoUi84zlO1jA9T00="
"resolved" "http://snpm.cnsuning.com/d3-array/-/d3-array-1.3.0.tgz"
"version" "1.3.0"
"d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", "d3-array@3":
"integrity" "sha512-DCbBBNuKOeiR9h04ySRBMW52TFVc91O9wJziuyXw6Ztmy8D3oZbmCkOO3UHKC7ceNJsN2Mavo9+vwV8EAEUXzA=="
"resolved" "http://snpm.cnsuning.com/d3-array/-/d3-array-3.1.6.tgz"
"version" "3.1.6"
dependencies:
"internmap" "1 - 2"
"d3-axis@1":
"integrity" "sha1-zfILohDPu0N5WvM3Vohvs2ONqsk="
"resolved" "http://snpm.cnsuning.com/d3-axis/-/d3-axis-1.0.12.tgz"
"version" "1.0.12"
"d3-axis@3":
"integrity" "sha1-xCpKE+gTHWN7dF/Clzgkz+r5MyI="
"resolved" "http://snpm.cnsuning.com/d3-axis/-/d3-axis-3.0.0.tgz"
"version" "3.0.0"
"d3-brush@1":
"integrity" "sha1-sKIsc3LKvsEovd35vdwFhZL4nps="
"resolved" "http://snpm.cnsuning.com/d3-brush/-/d3-brush-1.1.6.tgz"
"version" "1.1.6"
dependencies:
"d3-dispatch" "1"
"d3-drag" "1"
"d3-interpolate" "1"
"d3-selection" "1"
"d3-transition" "1"
"d3-brush@3":
"integrity" "sha1-b3Z8Ttjct53n7ePhwPieY+9k0xw="
"resolved" "http://snpm.cnsuning.com/d3-brush/-/d3-brush-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"d3-dispatch" "1 - 3"
"d3-drag" "2 - 3"
"d3-interpolate" "1 - 3"
"d3-selection" "3"
"d3-transition" "3"
"d3-chord@1":
"integrity" "sha1-MJFX4/LbLHUvAoD+3TXyBnzLsV8="
"resolved" "http://snpm.cnsuning.com/d3-chord/-/d3-chord-1.0.6.tgz"
"version" "1.0.6"
dependencies:
"d3-array" "1"
"d3-path" "1"
"d3-chord@3":
"integrity" "sha1-0VbWH0hfzoMn5qvzOctB2Mu6aWY="
"resolved" "http://snpm.cnsuning.com/d3-chord/-/d3-chord-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"d3-path" "1 - 3"
"d3-collection@1":
"integrity" "sha1-NJvSqpl32wcQkcExRNXk8WtbMQ4="
"resolved" "http://snpm.cnsuning.com/d3-collection/-/d3-collection-1.0.7.tgz"
"version" "1.0.7"
"d3-color@1 - 3", "d3-color@3":
"integrity" "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA=="
"resolved" "http://snpm.cnsuning.com/d3-color/-/d3-color-3.1.0.tgz"
"version" "3.1.0"
"d3-color@1":
"integrity" "sha1-xSACv4hGraRCTVXZeYL+8m6zvIo="
"resolved" "http://snpm.cnsuning.com/d3-color/-/d3-color-1.4.1.tgz"