-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
6907 lines (6171 loc) · 368 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: 5.3
importers:
.:
specifiers: {}
packages/bff-cms:
specifiers:
'@antv/g2plot': ^2.4.8
'@antv/layout': ^0.1.31
'@antv/x6': ^1.29.5
'@antv/x6-react-shape': ^1.6.0
'@douyinfe/semi-icons': ^2.1.5
'@douyinfe/semi-ui': ^2.1.5
'@reduxjs/toolkit': ^1.7.1
'@types/node': ^17.0.8
'@types/react': ^17.0.33
'@types/react-dom': ^17.0.10
'@types/react-json-editor-ajrm': ^2.5.2
'@typescript-eslint/eslint-plugin': ^4.28.2
'@typescript-eslint/parser': ^4.28.2
'@uiw/react-codemirror': ^4.5.3
'@vitejs/plugin-react': ^1.0.7
axios: ^0.26.1
browser-fs-access: ^0.24.0
eslint: ^7.30.0
eslint-config-prettier: ^8.3.0
eslint-plugin-import: ^2.25.3
eslint-plugin-jsx-a11y: ^6.5.1
eslint-plugin-prettier: ^3.4.0
eslint-plugin-react: ^7.27.1
koa: ^2.13.4
moment: ^2.29.1
monaco-editor: ^0.33.0
nanoid: ^3.2.0
prettier: ^2.5.1
qs: ^6.10.3
react: ^17.0.2
react-dom: ^17.0.2
react-json-editor-ajrm: ^2.5.13
react-redux: ^7.2.6
react-router-dom: ^6.1.1
reconnecting-websocket: ^4.4.0
sass: ^1.49.9
socket.io-client: ^4.4.1
typescript: ^4.5.4
vite: ^2.7.2
dependencies:
'@antv/g2plot': registry.npmmirror.com/@antv/g2plot/2.4.15
'@antv/layout': registry.npmmirror.com/@antv/layout/0.1.31
'@antv/x6': registry.npmmirror.com/@antv/x6/1.31.1
'@antv/x6-react-shape': registry.npmmirror.com/@antv/x6-react-shape/1.6.0_9995fc21dab43b750302f7357f6c84b9
'@douyinfe/semi-icons': registry.npmmirror.com/@douyinfe/semi-icons/[email protected]
'@douyinfe/semi-ui': registry.npmmirror.com/@douyinfe/semi-ui/2.7.1_b8199948237381d32641430399d599f8
'@reduxjs/toolkit': registry.npmmirror.com/@reduxjs/toolkit/[email protected][email protected]
'@uiw/react-codemirror': registry.npmmirror.com/@uiw/react-codemirror/[email protected][email protected]
axios: registry.npmmirror.com/axios/0.26.1
browser-fs-access: registry.npmmirror.com/browser-fs-access/0.24.1
koa: registry.npmmirror.com/koa/2.13.4
moment: registry.npmmirror.com/moment/2.29.2
monaco-editor: registry.npmmirror.com/monaco-editor/0.33.0
nanoid: registry.npmmirror.com/nanoid/3.3.2
qs: registry.npmmirror.com/qs/6.10.3
react: registry.npmmirror.com/react/17.0.2
react-dom: registry.npmmirror.com/react-dom/[email protected]
react-json-editor-ajrm: registry.npmmirror.com/react-json-editor-ajrm/[email protected][email protected]
react-redux: registry.npmmirror.com/react-redux/[email protected][email protected]
react-router-dom: registry.npmmirror.com/react-router-dom/[email protected][email protected]
reconnecting-websocket: registry.npmmirror.com/reconnecting-websocket/4.4.0
sass: registry.npmmirror.com/sass/1.50.0
socket.io-client: registry.npmmirror.com/socket.io-client/4.4.1
devDependencies:
'@types/node': registry.npmmirror.com/@types/node/17.0.23
'@types/react': registry.npmmirror.com/@types/react/17.0.43
'@types/react-dom': registry.npmmirror.com/@types/react-dom/17.0.14
'@types/react-json-editor-ajrm': registry.npmmirror.com/@types/react-json-editor-ajrm/2.5.3
'@typescript-eslint/eslint-plugin': registry.npmmirror.com/@typescript-eslint/eslint-plugin/4.33.0_0c49e12669280545a7ea3f36dba6eb0a
'@typescript-eslint/parser': registry.npmmirror.com/@typescript-eslint/parser/[email protected][email protected]
'@vitejs/plugin-react': registry.npmmirror.com/@vitejs/plugin-react/1.3.0
eslint: registry.npmmirror.com/eslint/7.32.0
eslint-config-prettier: registry.npmmirror.com/eslint-config-prettier/[email protected]
eslint-plugin-import: registry.npmmirror.com/eslint-plugin-import/[email protected]
eslint-plugin-jsx-a11y: registry.npmmirror.com/eslint-plugin-jsx-a11y/[email protected]
eslint-plugin-prettier: registry.npmmirror.com/eslint-plugin-prettier/3.4.1_2544802fe0b6e1e28814bd742f96f471
eslint-plugin-react: registry.npmmirror.com/eslint-plugin-react/[email protected]
prettier: registry.npmmirror.com/prettier/2.6.2
typescript: registry.npmmirror.com/typescript/4.6.3
vite: registry.npmmirror.com/vite/[email protected]
packages/bff-cms-server:
specifiers:
'@types/cookie': ^0.5.0
'@types/koa': ^2.13.4
'@types/koa-bodyparser': ^4.3.7
'@types/koa-router': ^7.4.4
'@types/lodash': ^4.14.181
'@types/module-alias': ^2.0.1
'@types/ws': ^8.5.3
cookie: ^0.5.0
koa: ^2.13.4
koa-bodyparser: ^4.3.0
koa-router: ^10.1.1
lodash: ^4.17.21
module-alias: ^2.2.2
moment: ^2.29.2
mongoose: ^6.2.8
node-fetch: ^3.2.4
qs: ^6.10.3
ts-node: ^10.7.0
winston: ^3.7.2
ws: ^8.5.0
dependencies:
'@types/cookie': registry.npmmirror.com/@types/cookie/0.5.0
'@types/koa': registry.npmmirror.com/@types/koa/2.13.4
'@types/koa-bodyparser': registry.npmmirror.com/@types/koa-bodyparser/4.3.7
'@types/koa-router': registry.npmmirror.com/@types/koa-router/7.4.4
'@types/lodash': registry.npmmirror.com/@types/lodash/4.14.182
'@types/module-alias': registry.npmmirror.com/@types/module-alias/2.0.1
'@types/ws': registry.npmmirror.com/@types/ws/8.5.3
cookie: registry.npmmirror.com/cookie/0.5.0
koa: registry.npmmirror.com/koa/2.13.4
koa-bodyparser: registry.npmmirror.com/koa-bodyparser/4.3.0
koa-router: registry.npmmirror.com/koa-router/10.1.1
lodash: registry.npmmirror.com/lodash/4.17.21
module-alias: registry.npmmirror.com/module-alias/2.2.2
moment: registry.npmmirror.com/moment/2.29.2
mongoose: registry.npmmirror.com/mongoose/6.2.10
qs: registry.npmmirror.com/qs/6.10.3
ts-node: registry.npmmirror.com/ts-node/10.7.0
winston: registry.npmmirror.com/winston/3.7.2
ws: registry.npmmirror.com/ws/8.5.0
devDependencies:
node-fetch: registry.npmmirror.com/node-fetch/3.2.4
packages/bff-service:
specifiers:
axios: ^0.26.1
debug: ^4.3.4
event-loop-stats: ^1.4.1
express: ^4.17.3
express-status-monitor: ^1.3.4
handlebars: ^4.7.7
on-headers: ^1.0.2
pidusage: ^3.0.0
socket.io: ^4.4.1
socket.io-client: ^4.4.1
ws: ^8.5.0
dependencies:
axios: registry.npmmirror.com/axios/[email protected]
debug: registry.npmmirror.com/debug/4.3.4
event-loop-stats: registry.npmmirror.com/event-loop-stats/1.4.1
express: registry.npmmirror.com/express/4.17.3
express-status-monitor: registry.npmmirror.com/express-status-monitor/1.3.4
handlebars: registry.npmmirror.com/handlebars/4.7.7
on-headers: registry.npmmirror.com/on-headers/1.0.2
pidusage: registry.npmmirror.com/pidusage/3.0.0
socket.io: registry.npmmirror.com/socket.io/4.4.1
socket.io-client: registry.npmmirror.com/socket.io-client/4.4.1
ws: registry.npmmirror.com/ws/8.5.0
packages:
/concat-map/0.0.1:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=, tarball: concat-map/download/concat-map-0.0.1.tgz}
/cookie-signature/1.0.6:
resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=, tarball: cookie-signature/download/cookie-signature-1.0.6.tgz}
dev: false
/media-typer/0.3.0:
resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=, tarball: media-typer/download/media-typer-0.3.0.tgz}
engines: {node: '>= 0.6'}
dev: false
/setprototypeof/1.2.0:
resolution: {integrity: sha1-ZsmiSnP5/CjL5msJ/tPTPcrxtCQ=, tarball: setprototypeof/download/setprototypeof-1.2.0.tgz}
dev: false
registry.nlark.com/@nodelib/fs.scandir/2.1.5:
resolution: {integrity: sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz}
name: '@nodelib/fs.scandir'
version: 2.1.5
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat/2.0.5
run-parallel: registry.npmmirror.com/run-parallel/1.2.0
dev: true
registry.nlark.com/forwarded/0.2.0:
resolution: {integrity: sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/forwarded/download/forwarded-0.2.0.tgz}
name: forwarded
version: 0.2.0
engines: {node: '>= 0.6'}
dev: false
registry.nlark.com/tsscmp/1.0.6:
resolution: {integrity: sha1-hbmVg6w1iexL/vgltQAKqRHWBes=, registry: https://registry.npm.taobao.org/, tarball: https://registry.nlark.com/tsscmp/download/tsscmp-1.0.6.tgz}
name: tsscmp
version: 1.0.6
engines: {node: '>=0.6.x'}
dev: false
registry.npmmirror.com/@ampproject/remapping/2.1.2:
resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.1.2.tgz}
name: '@ampproject/remapping'
version: 2.1.2
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping/0.3.4
dev: true
registry.npmmirror.com/@antv/adjust/0.2.5:
resolution: {integrity: sha512-MfWZOkD9CqXRES6MBGRNe27Q577a72EIwyMnE29wIlPliFvJfWwsrONddpGU7lilMpVKecS3WAzOoip3RfPTRQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/adjust/-/adjust-0.2.5.tgz}
name: '@antv/adjust'
version: 0.2.5
dependencies:
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
tslib: registry.npmmirror.com/tslib/1.14.1
dev: false
registry.npmmirror.com/@antv/attr/0.3.3:
resolution: {integrity: sha512-7iSSRhYzZ7pYXZKTL1ECGhTdKVHPQx1Vj7yYVTAiyLMsWsLUAoMf0m6dT6msTs0SdrXHRbjzXavVXxRj/wZZJA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/attr/-/attr-0.3.3.tgz}
name: '@antv/attr'
version: 0.3.3
dependencies:
'@antv/color-util': registry.npmmirror.com/@antv/color-util/2.0.6
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
tslib: registry.npmmirror.com/tslib/1.14.1
dev: false
registry.npmmirror.com/@antv/color-util/2.0.6:
resolution: {integrity: sha512-KnPEaAH+XNJMjax9U35W67nzPI+QQ2x27pYlzmSIWrbj4/k8PGrARXfzDTjwoozHJY8qG62Z+Ww6Alhu2FctXQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/color-util/-/color-util-2.0.6.tgz}
name: '@antv/color-util'
version: 2.0.6
dependencies:
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/component/0.8.26:
resolution: {integrity: sha512-PygBrpJ8ol8/9a31LHqAlyMq+4ykg+j0cVTjCDq9oKf1PVUy4ARpUgRjFGoP83TgoWP93Qw6zNdELExidS7nhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/component/-/component-0.8.26.tgz}
name: '@antv/component'
version: 0.8.26
dependencies:
'@antv/color-util': registry.npmmirror.com/@antv/color-util/2.0.6
'@antv/dom-util': registry.npmmirror.com/@antv/dom-util/2.0.4
'@antv/g-base': registry.npmmirror.com/@antv/g-base/0.5.11
'@antv/matrix-util': registry.npmmirror.com/@antv/matrix-util/3.1.0-beta.3
'@antv/path-util': registry.npmmirror.com/@antv/path-util/2.0.15
'@antv/scale': registry.npmmirror.com/@antv/scale/0.3.16
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
fecha: registry.npmmirror.com/fecha/4.2.1
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/coord/0.3.1:
resolution: {integrity: sha512-rFE94C8Xzbx4xmZnHh2AnlB3Qm1n5x0VT3OROy257IH6Rm4cuzv1+tZaUBATviwZd99S+rOY9telw/+6C9GbRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/coord/-/coord-0.3.1.tgz}
name: '@antv/coord'
version: 0.3.1
dependencies:
'@antv/matrix-util': registry.npmmirror.com/@antv/matrix-util/3.1.0-beta.3
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/dom-util/2.0.4:
resolution: {integrity: sha512-2shXUl504fKwt82T3GkuT4Uoc6p9qjCKnJ8gXGLSW4T1W37dqf9AV28aCfoVPHp2BUXpSsB+PAJX2rG/jLHsLQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/dom-util/-/dom-util-2.0.4.tgz}
name: '@antv/dom-util'
version: 2.0.4
dependencies:
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/event-emitter/0.1.3:
resolution: {integrity: sha512-4ddpsiHN9Pd4UIlWuKVK1C4IiZIdbwQvy9i7DUSI3xNJ89FPUFt8lxDYj8GzzfdllV0NkJTRxnG+FvLk0llidg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/event-emitter/-/event-emitter-0.1.3.tgz}
name: '@antv/event-emitter'
version: 0.1.3
dev: false
registry.npmmirror.com/@antv/g-base/0.5.11:
resolution: {integrity: sha512-10Hkq7XksVCqxZZrPkd6HTU9tb/+2meCVEMy/edhS4I/sokhcgC9m3fQP5bE8rA3EVKwELE7MJHZ98BEpVFqvQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/g-base/-/g-base-0.5.11.tgz}
name: '@antv/g-base'
version: 0.5.11
dependencies:
'@antv/event-emitter': registry.npmmirror.com/@antv/event-emitter/0.1.3
'@antv/g-math': registry.npmmirror.com/@antv/g-math/0.1.7
'@antv/matrix-util': registry.npmmirror.com/@antv/matrix-util/3.1.0-beta.3
'@antv/path-util': registry.npmmirror.com/@antv/path-util/2.0.15
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
'@types/d3-timer': registry.npmmirror.com/@types/d3-timer/2.0.1
d3-ease: registry.npmmirror.com/d3-ease/1.0.7
d3-interpolate: registry.npmmirror.com/d3-interpolate/1.4.0
d3-timer: registry.npmmirror.com/d3-timer/1.0.10
detect-browser: registry.npmmirror.com/detect-browser/5.3.0
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/g-canvas/0.5.12:
resolution: {integrity: sha512-iJ/muwwqCCNONVlPIzv/7OL5iLguaKRj2BxNMytUO3TWwamM+kHkiyYEOkS0dPn9h/hBsHYlLUluSVz2Fp6/bw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/g-canvas/-/g-canvas-0.5.12.tgz}
name: '@antv/g-canvas'
version: 0.5.12
dependencies:
'@antv/g-base': registry.npmmirror.com/@antv/g-base/0.5.11
'@antv/g-math': registry.npmmirror.com/@antv/g-math/0.1.7
'@antv/matrix-util': registry.npmmirror.com/@antv/matrix-util/3.1.0-beta.3
'@antv/path-util': registry.npmmirror.com/@antv/path-util/2.0.15
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
gl-matrix: registry.npmmirror.com/gl-matrix/3.4.3
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/g-math/0.1.7:
resolution: {integrity: sha512-xGyXaloD1ynfp7gS4VuV+MjSptZIwHvLHr8ekXJSFAeWPYLu84yOW2wOZHDdp1bzDAIuRv6xDBW58YGHrWsFcA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/g-math/-/g-math-0.1.7.tgz}
name: '@antv/g-math'
version: 0.1.7
dependencies:
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
gl-matrix: registry.npmmirror.com/gl-matrix/3.4.3
dev: false
registry.npmmirror.com/@antv/g-svg/0.5.6:
resolution: {integrity: sha512-Xve1EUGk4HMbl2nq4ozR4QLh6GyoZ8Xw/+9kHYI4B5P2lIUQU95MuRsaLFfW5NNpZDx85ZeH97tqEmC9L96E7A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/g-svg/-/g-svg-0.5.6.tgz}
name: '@antv/g-svg'
version: 0.5.6
dependencies:
'@antv/g-base': registry.npmmirror.com/@antv/g-base/0.5.11
'@antv/g-math': registry.npmmirror.com/@antv/g-math/0.1.7
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
detect-browser: registry.npmmirror.com/detect-browser/5.3.0
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/g-webgpu-core/0.5.6:
resolution: {integrity: sha512-DPiH3GkAUiT0Q+LAKeImpI+IOQ/gP2w6HstYKivpFIpBPIvZ/9equM3icVrn1iDfDkZANVXQ1PppcO3xBv1ZTw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/g-webgpu-core/-/g-webgpu-core-0.5.6.tgz}
name: '@antv/g-webgpu-core'
version: 0.5.6
dependencies:
eventemitter3: registry.npmmirror.com/eventemitter3/4.0.7
gl-matrix: registry.npmmirror.com/gl-matrix/3.4.3
inversify: registry.npmmirror.com/inversify/5.1.1
inversify-inject-decorators: registry.npmmirror.com/inversify-inject-decorators/3.1.0
probe.gl: registry.npmmirror.com/probe.gl/3.5.0
reflect-metadata: registry.npmmirror.com/reflect-metadata/0.1.13
dev: false
registry.npmmirror.com/@antv/g-webgpu-engine/0.5.6:
resolution: {integrity: sha512-D311qYUefdEFwLayutIHqucrAY3cAGH3BdnXS37nq+0nsglrHcNP0Ab1YTinn9RihLoY3yXFTLzrYkJHJbZXDg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/g-webgpu-engine/-/g-webgpu-engine-0.5.6.tgz}
name: '@antv/g-webgpu-engine'
version: 0.5.6
dependencies:
'@antv/g-webgpu-core': registry.npmmirror.com/@antv/g-webgpu-core/0.5.6
'@webgpu/glslang': registry.npmmirror.com/@webgpu/glslang/0.0.15
'@webgpu/types': registry.npmmirror.com/@webgpu/types/0.0.31
gl-matrix: registry.npmmirror.com/gl-matrix/3.4.3
hammerjs: registry.npmmirror.com/hammerjs/2.0.8
inversify: registry.npmmirror.com/inversify/5.1.1
inversify-inject-decorators: registry.npmmirror.com/inversify-inject-decorators/3.1.0
probe.gl: registry.npmmirror.com/probe.gl/3.5.0
reflect-metadata: registry.npmmirror.com/reflect-metadata/0.1.13
regl: registry.npmmirror.com/regl/1.7.0
dev: false
registry.npmmirror.com/@antv/g-webgpu/0.5.5:
resolution: {integrity: sha512-TxtBniINFq1jFGEPo46xjJfrbJbUqkFd5wmsRs3tcg/7J7xoldOP1kEadpI3AJG9knMYdE92VpILw1VPd6DgzQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/g-webgpu/-/g-webgpu-0.5.5.tgz}
name: '@antv/g-webgpu'
version: 0.5.5
dependencies:
'@antv/g-webgpu-core': registry.npmmirror.com/@antv/g-webgpu-core/0.5.6
'@antv/g-webgpu-engine': registry.npmmirror.com/@antv/g-webgpu-engine/0.5.6
'@webgpu/types': registry.npmmirror.com/@webgpu/types/0.0.31
gl-matrix: registry.npmmirror.com/gl-matrix/3.4.3
gl-vec2: registry.npmmirror.com/gl-vec2/1.3.0
hammerjs: registry.npmmirror.com/hammerjs/2.0.8
inversify: registry.npmmirror.com/inversify/5.1.1
inversify-inject-decorators: registry.npmmirror.com/inversify-inject-decorators/3.1.0
polyline-miter-util: registry.npmmirror.com/polyline-miter-util/1.0.1
polyline-normals: registry.npmmirror.com/polyline-normals/2.0.2
probe.gl: registry.npmmirror.com/probe.gl/3.5.0
reflect-metadata: registry.npmmirror.com/reflect-metadata/0.1.13
dev: false
registry.npmmirror.com/@antv/g2/4.1.49:
resolution: {integrity: sha512-z/wJdPehYjRzm5kMj4fHQZIqVloikATX/4vf8hcLJ3W1wnQVx0qivwWuNLPVxnbbe1PnUbfmovCCFUDUNJlvcw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/g2/-/g2-4.1.49.tgz}
name: '@antv/g2'
version: 4.1.49
dependencies:
'@antv/adjust': registry.npmmirror.com/@antv/adjust/0.2.5
'@antv/attr': registry.npmmirror.com/@antv/attr/0.3.3
'@antv/color-util': registry.npmmirror.com/@antv/color-util/2.0.6
'@antv/component': registry.npmmirror.com/@antv/component/0.8.26
'@antv/coord': registry.npmmirror.com/@antv/coord/0.3.1
'@antv/dom-util': registry.npmmirror.com/@antv/dom-util/2.0.4
'@antv/event-emitter': registry.npmmirror.com/@antv/event-emitter/0.1.3
'@antv/g-base': registry.npmmirror.com/@antv/g-base/0.5.11
'@antv/g-canvas': registry.npmmirror.com/@antv/g-canvas/0.5.12
'@antv/g-svg': registry.npmmirror.com/@antv/g-svg/0.5.6
'@antv/matrix-util': registry.npmmirror.com/@antv/matrix-util/3.1.0-beta.3
'@antv/path-util': registry.npmmirror.com/@antv/path-util/2.0.15
'@antv/scale': registry.npmmirror.com/@antv/scale/0.3.16
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/g2plot/2.4.15:
resolution: {integrity: sha512-VDE1w8iOCuxgWmowGIHRoDNjQ/WDD31wx/wjMaGcaV1xHFOccG+nVycPaAV21Pjb3jwzDlqAWqvwHpT1lOBKFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/g2plot/-/g2plot-2.4.15.tgz}
name: '@antv/g2plot'
version: 2.4.15
dependencies:
'@antv/event-emitter': registry.npmmirror.com/@antv/event-emitter/0.1.3
'@antv/g2': registry.npmmirror.com/@antv/g2/4.1.49
d3-hierarchy: registry.npmmirror.com/d3-hierarchy/2.0.0
d3-regression: registry.npmmirror.com/d3-regression/1.3.10
fmin: registry.npmmirror.com/fmin/0.0.2
pdfast: registry.npmmirror.com/pdfast/0.2.0
size-sensor: registry.npmmirror.com/size-sensor/1.0.1
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/layout/0.1.31:
resolution: {integrity: sha512-iz9i19dOJGiZr5xBWI5sfG+2K3QVMNAGOBrbjWKH2RGLvGpf2TSFySidhz0siDrcQA46cDsjLmGstezQdgeGzA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/layout/-/layout-0.1.31.tgz}
name: '@antv/layout'
version: 0.1.31
dependencies:
'@antv/g-webgpu': registry.npmmirror.com/@antv/g-webgpu/0.5.5
'@dagrejs/graphlib': registry.npmmirror.com/@dagrejs/graphlib/2.1.4
d3-force: registry.npmmirror.com/d3-force/2.1.1
ml-matrix: registry.npmmirror.com/ml-matrix/6.9.0
dev: false
registry.npmmirror.com/@antv/matrix-util/3.0.4:
resolution: {integrity: sha512-BAPyu6dUliHcQ7fm9hZSGKqkwcjEDVLVAstlHULLvcMZvANHeLXgHEgV7JqcAV/GIhIz8aZChIlzM1ZboiXpYQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/matrix-util/-/matrix-util-3.0.4.tgz}
name: '@antv/matrix-util'
version: 3.0.4
dependencies:
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
gl-matrix: registry.npmmirror.com/gl-matrix/3.4.3
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/matrix-util/3.1.0-beta.3:
resolution: {integrity: sha512-W2R6Za3A6CmG51Y/4jZUM/tFgYSq7vTqJL1VD9dKrvwxS4sE0ZcXINtkp55CdyBwJ6Cwm8pfoRpnD4FnHahN0A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/matrix-util/-/matrix-util-3.1.0-beta.3.tgz}
name: '@antv/matrix-util'
version: 3.1.0-beta.3
dependencies:
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
gl-matrix: registry.npmmirror.com/gl-matrix/3.4.3
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/path-util/2.0.15:
resolution: {integrity: sha512-R2VLZ5C8PLPtr3VciNyxtjKqJ0XlANzpFb5sE9GE61UQqSRuSVSzIakMxjEPrpqbgc+s+y8i+fmc89Snu7qbNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/path-util/-/path-util-2.0.15.tgz}
name: '@antv/path-util'
version: 2.0.15
dependencies:
'@antv/matrix-util': registry.npmmirror.com/@antv/matrix-util/3.0.4
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/scale/0.3.16:
resolution: {integrity: sha512-8rBo9VPob1z6M/Fcszx1waNwD7kwglc5G1HmF/rjYJRb4ASKVAAx4o4Nzxsp7AZK/a2lHPOQWRekx/9/BxID+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/scale/-/scale-0.3.16.tgz}
name: '@antv/scale'
version: 0.3.16
dependencies:
'@antv/util': registry.npmmirror.com/@antv/util/2.0.17
fecha: registry.npmmirror.com/fecha/4.2.1
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/util/2.0.17:
resolution: {integrity: sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/util/-/util-2.0.17.tgz}
name: '@antv/util'
version: 2.0.17
dependencies:
csstype: registry.npmmirror.com/csstype/3.0.11
tslib: registry.npmmirror.com/tslib/2.3.1
dev: false
registry.npmmirror.com/@antv/x6-react-shape/1.6.0_9995fc21dab43b750302f7357f6c84b9:
resolution: {integrity: sha512-sz5sEYUZq9Cm0DpajbPL21N21gowAeMDHfemGuzaVI5Ud07/JS6393spaopcqljVQAY8r7qL+jxxQnWP8hDIBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/x6-react-shape/-/x6-react-shape-1.6.0.tgz}
id: registry.npmmirror.com/@antv/x6-react-shape/1.6.0
name: '@antv/x6-react-shape'
version: 1.6.0
peerDependencies:
'@antv/x6': '>=1.0.0'
react: '>=16.8.6 || >=17.0.0'
react-dom: '>=16.8.6 || >=17.0.0'
dependencies:
'@antv/x6': registry.npmmirror.com/@antv/x6/1.31.1
react: registry.npmmirror.com/react/17.0.2
react-dom: registry.npmmirror.com/react-dom/[email protected]
dev: false
registry.npmmirror.com/@antv/x6/1.31.1:
resolution: {integrity: sha512-zpRXhxCYl6ZEzNFdkwUtXay0UpUYjAZnNrQd66neHW0gQJez11M+/9Vkm7h3BplMoxgQYn0LOVHN5fewo/xeJw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@antv/x6/-/x6-1.31.1.tgz}
name: '@antv/x6'
version: 1.31.1
dependencies:
csstype: registry.npmmirror.com/csstype/3.0.11
jquery: registry.npmmirror.com/jquery/3.6.0
jquery-mousewheel: registry.npmmirror.com/jquery-mousewheel/3.1.13
lodash-es: registry.npmmirror.com/lodash-es/4.17.21
mousetrap: registry.npmmirror.com/mousetrap/1.6.5
utility-types: registry.npmmirror.com/utility-types/3.10.0
dev: false
registry.npmmirror.com/@babel/code-frame/7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.12.11.tgz}
name: '@babel/code-frame'
version: 7.12.11
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight/7.17.9
dev: true
registry.npmmirror.com/@babel/code-frame/7.16.7:
resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.16.7.tgz}
name: '@babel/code-frame'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight/7.17.9
dev: true
registry.npmmirror.com/@babel/compat-data/7.17.7:
resolution: {integrity: sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.17.7.tgz}
name: '@babel/compat-data'
version: 7.17.7
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/core/7.17.9:
resolution: {integrity: sha512-5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.17.9.tgz}
name: '@babel/core'
version: 7.17.9
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': registry.npmmirror.com/@ampproject/remapping/2.1.2
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.7
'@babel/generator': registry.npmmirror.com/@babel/generator/7.17.9
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets/7.17.7_@[email protected]
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms/7.17.7
'@babel/helpers': registry.npmmirror.com/@babel/helpers/7.17.9
'@babel/parser': registry.npmmirror.com/@babel/parser/7.17.9
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.17.9
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
convert-source-map: registry.npmmirror.com/convert-source-map/1.8.0
debug: registry.npmmirror.com/debug/4.3.4
gensync: registry.npmmirror.com/gensync/1.0.0-beta.2
json5: registry.npmmirror.com/json5/2.2.1
semver: registry.npmmirror.com/semver/6.3.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/generator/7.17.9:
resolution: {integrity: sha512-rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.17.9.tgz}
name: '@babel/generator'
version: 7.17.9
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
jsesc: registry.npmmirror.com/jsesc/2.5.2
source-map: registry.npmmirror.com/source-map/0.5.7
dev: true
registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.7:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz}
name: '@babel/helper-annotate-as-pure'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-compilation-targets/7.17.7_@[email protected]:
resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz}
id: registry.npmmirror.com/@babel/helper-compilation-targets/7.17.7
name: '@babel/helper-compilation-targets'
version: 7.17.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': registry.npmmirror.com/@babel/compat-data/7.17.7
'@babel/core': registry.npmmirror.com/@babel/core/7.17.9
'@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option/7.16.7
browserslist: registry.npmmirror.com/browserslist/4.20.2
semver: registry.npmmirror.com/semver/6.3.0
dev: true
registry.npmmirror.com/@babel/helper-environment-visitor/7.16.7:
resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz}
name: '@babel/helper-environment-visitor'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-function-name/7.17.9:
resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz}
name: '@babel/helper-function-name'
version: 7.17.9
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-hoist-variables/7.16.7:
resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz}
name: '@babel/helper-hoist-variables'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-module-imports/7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz}
name: '@babel/helper-module-imports'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-module-transforms/7.17.7:
resolution: {integrity: sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz}
name: '@babel/helper-module-transforms'
version: 7.17.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.16.7
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.7
'@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access/7.17.7
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.7
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.17.9
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/helper-plugin-utils/7.16.7:
resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz}
name: '@babel/helper-plugin-utils'
version: 7.16.7
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-simple-access/7.17.7:
resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz}
name: '@babel/helper-simple-access'
version: 7.17.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.7:
resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz}
name: '@babel/helper-validator-identifier'
version: 7.16.7
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helper-validator-option/7.16.7:
resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz}
name: '@babel/helper-validator-option'
version: 7.16.7
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/helpers/7.17.9:
resolution: {integrity: sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.17.9.tgz}
name: '@babel/helpers'
version: 7.17.9
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template/7.16.7
'@babel/traverse': registry.npmmirror.com/@babel/traverse/7.17.9
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmmirror.com/@babel/highlight/7.17.9:
resolution: {integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.17.9.tgz}
name: '@babel/highlight'
version: 7.17.9
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7
chalk: registry.npmmirror.com/chalk/2.4.2
js-tokens: registry.npmmirror.com/js-tokens/4.0.0
dev: true
registry.npmmirror.com/@babel/parser/7.17.9:
resolution: {integrity: sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.17.9.tgz}
name: '@babel/parser'
version: 7.17.9
engines: {node: '>=6.0.0'}
hasBin: true
dev: true
registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.7_@[email protected]:
resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.7
name: '@babel/plugin-syntax-jsx'
version: 7.16.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.9
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.16.7
dev: true
registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/7.16.7_@[email protected]:
resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-react-jsx-development/7.16.7
name: '@babel/plugin-transform-react-jsx-development'
version: 7.16.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.9
'@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.17.3_@[email protected]
dev: true
registry.npmmirror.com/@babel/plugin-transform-react-jsx-self/7.16.7_@[email protected]:
resolution: {integrity: sha512-oe5VuWs7J9ilH3BCCApGoYjHoSO48vkjX2CbA5bFVhIuO2HKxA3vyF7rleA4o6/4rTDbk6r8hBW7Ul8E+UZrpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.16.7.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-react-jsx-self/7.16.7
name: '@babel/plugin-transform-react-jsx-self'
version: 7.16.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.9
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.16.7
dev: true
registry.npmmirror.com/@babel/plugin-transform-react-jsx-source/7.16.7_@[email protected]:
resolution: {integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.16.7.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-react-jsx-source/7.16.7
name: '@babel/plugin-transform-react-jsx-source'
version: 7.16.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.9
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.16.7
dev: true
registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.17.3_@[email protected]:
resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.3.tgz}
id: registry.npmmirror.com/@babel/plugin-transform-react-jsx/7.17.3
name: '@babel/plugin-transform-react-jsx'
version: 7.17.3
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core/7.17.9
'@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure/7.16.7
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports/7.16.7
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils/7.16.7
'@babel/plugin-syntax-jsx': registry.npmmirror.com/@babel/plugin-syntax-jsx/7.16.7_@[email protected]
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/runtime-corejs3/7.17.9:
resolution: {integrity: sha512-WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.9.tgz}
name: '@babel/runtime-corejs3'
version: 7.17.9
engines: {node: '>=6.9.0'}
dependencies:
core-js-pure: registry.npmmirror.com/core-js-pure/3.21.1
regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.13.9
registry.npmmirror.com/@babel/runtime/7.17.9:
resolution: {integrity: sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.17.9.tgz}
name: '@babel/runtime'
version: 7.17.9
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmmirror.com/regenerator-runtime/0.13.9
registry.npmmirror.com/@babel/template/7.16.7:
resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.16.7.tgz}
name: '@babel/template'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.7
'@babel/parser': registry.npmmirror.com/@babel/parser/7.17.9
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
dev: true
registry.npmmirror.com/@babel/traverse/7.17.9:
resolution: {integrity: sha512-PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.17.9.tgz}
name: '@babel/traverse'
version: 7.17.9
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame/7.16.7
'@babel/generator': registry.npmmirror.com/@babel/generator/7.17.9
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor/7.16.7
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name/7.17.9
'@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables/7.16.7
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration/7.16.7
'@babel/parser': registry.npmmirror.com/@babel/parser/7.17.9
'@babel/types': registry.npmmirror.com/@babel/types/7.17.0
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.17.0:
resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.17.0.tgz}
name: '@babel/types'
version: 7.17.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier/7.16.7
to-fast-properties: registry.npmmirror.com/to-fast-properties/2.0.0
dev: true
registry.npmmirror.com/@codemirror/autocomplete/0.19.15:
resolution: {integrity: sha512-GQWzvvuXxNUyaEk+5gawbAD8s51/v2Chb++nx0e2eGWrphWk42isBtzOMdc3DxrxrZtPZ55q2ldNp+6G8KJLIQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/autocomplete/-/autocomplete-0.19.15.tgz}
name: '@codemirror/autocomplete'
version: 0.19.15
dependencies:
'@codemirror/language': registry.npmmirror.com/@codemirror/language/0.19.10
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/text': registry.npmmirror.com/@codemirror/text/0.19.6
'@codemirror/tooltip': registry.npmmirror.com/@codemirror/tooltip/0.19.16
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
'@lezer/common': registry.npmmirror.com/@lezer/common/0.15.12
dev: false
registry.npmmirror.com/@codemirror/basic-setup/0.19.3:
resolution: {integrity: sha512-2hfO+QDk/HTpQzeYk1NyL1G9D5L7Sj78dtaQP8xBU42DKU9+OBPF5MdjLYnxP0jKzm6IfQfsLd89fnqW3rBVfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/basic-setup/-/basic-setup-0.19.3.tgz}
name: '@codemirror/basic-setup'
version: 0.19.3
dependencies:
'@codemirror/autocomplete': registry.npmmirror.com/@codemirror/autocomplete/0.19.15
'@codemirror/closebrackets': registry.npmmirror.com/@codemirror/closebrackets/0.19.2
'@codemirror/commands': registry.npmmirror.com/@codemirror/commands/0.19.8
'@codemirror/comment': registry.npmmirror.com/@codemirror/comment/0.19.1
'@codemirror/fold': registry.npmmirror.com/@codemirror/fold/0.19.3
'@codemirror/gutter': registry.npmmirror.com/@codemirror/gutter/0.19.9
'@codemirror/highlight': registry.npmmirror.com/@codemirror/highlight/0.19.8
'@codemirror/history': registry.npmmirror.com/@codemirror/history/0.19.2
'@codemirror/language': registry.npmmirror.com/@codemirror/language/0.19.10
'@codemirror/lint': registry.npmmirror.com/@codemirror/lint/0.19.6
'@codemirror/matchbrackets': registry.npmmirror.com/@codemirror/matchbrackets/0.19.4
'@codemirror/rectangular-selection': registry.npmmirror.com/@codemirror/rectangular-selection/0.19.2
'@codemirror/search': registry.npmmirror.com/@codemirror/search/0.19.10
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
dev: false
registry.npmmirror.com/@codemirror/closebrackets/0.19.2:
resolution: {integrity: sha512-ClMPzPcPP0eQiDcVjtVPl6OLxgdtZSYDazsvT0AKl70V1OJva0eHgl4/6kCW3RZ0pb2n34i9nJz4eXCmK+TYDA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/closebrackets/-/closebrackets-0.19.2.tgz}
name: '@codemirror/closebrackets'
version: 0.19.2
dependencies:
'@codemirror/language': registry.npmmirror.com/@codemirror/language/0.19.10
'@codemirror/rangeset': registry.npmmirror.com/@codemirror/rangeset/0.19.9
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/text': registry.npmmirror.com/@codemirror/text/0.19.6
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
dev: false
registry.npmmirror.com/@codemirror/commands/0.19.8:
resolution: {integrity: sha512-65LIMSGUGGpY3oH6mzV46YWRrgao6NmfJ+AuC7jNz3K5NPnH6GCV1H5I6SwOFyVbkiygGyd0EFwrWqywTBD1aw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/commands/-/commands-0.19.8.tgz}
name: '@codemirror/commands'
version: 0.19.8
dependencies:
'@codemirror/language': registry.npmmirror.com/@codemirror/language/0.19.10
'@codemirror/matchbrackets': registry.npmmirror.com/@codemirror/matchbrackets/0.19.4
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/text': registry.npmmirror.com/@codemirror/text/0.19.6
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
'@lezer/common': registry.npmmirror.com/@lezer/common/0.15.12
dev: false
registry.npmmirror.com/@codemirror/comment/0.19.1:
resolution: {integrity: sha512-uGKteBuVWAC6fW+Yt8u27DOnXMT/xV4Ekk2Z5mRsiADCZDqYvryrJd6PLL5+8t64BVyocwQwNfz1UswYS2CtFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/comment/-/comment-0.19.1.tgz}
name: '@codemirror/comment'
version: 0.19.1
dependencies:
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/text': registry.npmmirror.com/@codemirror/text/0.19.6
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
dev: false
registry.npmmirror.com/@codemirror/fold/0.19.3:
resolution: {integrity: sha512-8hT+Eq2G68mL0yPRvSD2ewhnLQAX6sbUJmtGVKFcj8oAXtfpYCX8LIcfXsuI19Qs7gZkOSpqZvn+KKj8IhZoAw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/fold/-/fold-0.19.3.tgz}
name: '@codemirror/fold'
version: 0.19.3
dependencies:
'@codemirror/gutter': registry.npmmirror.com/@codemirror/gutter/0.19.9
'@codemirror/language': registry.npmmirror.com/@codemirror/language/0.19.10
'@codemirror/rangeset': registry.npmmirror.com/@codemirror/rangeset/0.19.9
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
dev: false
registry.npmmirror.com/@codemirror/gutter/0.19.9:
resolution: {integrity: sha512-PFrtmilahin1g6uL27aG5tM/rqR9DZzZYZsIrCXA5Uc2OFTFqx4owuhoU9hqfYxHp5ovfvBwQ+txFzqS4vog6Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/gutter/-/gutter-0.19.9.tgz}
name: '@codemirror/gutter'
version: 0.19.9
dependencies:
'@codemirror/rangeset': registry.npmmirror.com/@codemirror/rangeset/0.19.9
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
dev: false
registry.npmmirror.com/@codemirror/highlight/0.19.8:
resolution: {integrity: sha512-v/lzuHjrYR8MN2mEJcUD6fHSTXXli9C1XGYpr+ElV6fLBIUhMTNKR3qThp611xuWfXfwDxeL7ppcbkM/MzPV3A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/highlight/-/highlight-0.19.8.tgz}
name: '@codemirror/highlight'
version: 0.19.8
dependencies:
'@codemirror/language': registry.npmmirror.com/@codemirror/language/0.19.10
'@codemirror/rangeset': registry.npmmirror.com/@codemirror/rangeset/0.19.9
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
'@lezer/common': registry.npmmirror.com/@lezer/common/0.15.12
style-mod: registry.npmmirror.com/style-mod/4.0.0
dev: false
registry.npmmirror.com/@codemirror/history/0.19.2:
resolution: {integrity: sha512-unhP4t3N2smzmHoo/Yio6ueWi+il8gm9VKrvi6wlcdGH5fOfVDNkmjHQ495SiR+EdOG35+3iNebSPYww0vN7ow==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/history/-/history-0.19.2.tgz}
name: '@codemirror/history'
version: 0.19.2
dependencies:
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
dev: false
registry.npmmirror.com/@codemirror/language/0.19.10:
resolution: {integrity: sha512-yA0DZ3RYn2CqAAGW62VrU8c4YxscMQn45y/I9sjBlqB1e2OTQLg4CCkMBuMSLXk4xaqjlsgazeOQWaJQOKfV8Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/language/-/language-0.19.10.tgz}
name: '@codemirror/language'
version: 0.19.10
dependencies:
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/text': registry.npmmirror.com/@codemirror/text/0.19.6
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
'@lezer/common': registry.npmmirror.com/@lezer/common/0.15.12
'@lezer/lr': registry.npmmirror.com/@lezer/lr/0.15.8
dev: false
registry.npmmirror.com/@codemirror/lint/0.19.6:
resolution: {integrity: sha512-Pbw1Y5kHVs2J+itQ0uez3dI4qY9ApYVap7eNfV81x1/3/BXgBkKfadaw0gqJ4h4FDG7OnJwb0VbPsjJQllHjaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/lint/-/lint-0.19.6.tgz}
name: '@codemirror/lint'
version: 0.19.6
dependencies:
'@codemirror/gutter': registry.npmmirror.com/@codemirror/gutter/0.19.9
'@codemirror/panel': registry.npmmirror.com/@codemirror/panel/0.19.1
'@codemirror/rangeset': registry.npmmirror.com/@codemirror/rangeset/0.19.9
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/tooltip': registry.npmmirror.com/@codemirror/tooltip/0.19.16
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
crelt: registry.npmmirror.com/crelt/1.0.5
dev: false
registry.npmmirror.com/@codemirror/matchbrackets/0.19.4:
resolution: {integrity: sha512-VFkaOKPNudAA5sGP1zikRHCEKU0hjYmkKpr04pybUpQvfTvNJXlReCyP0rvH/1iEwAGPL990ZTT+QrLdu4MeEA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/matchbrackets/-/matchbrackets-0.19.4.tgz}
name: '@codemirror/matchbrackets'
version: 0.19.4
dependencies:
'@codemirror/language': registry.npmmirror.com/@codemirror/language/0.19.10
'@codemirror/state': registry.npmmirror.com/@codemirror/state/0.19.9
'@codemirror/view': registry.npmmirror.com/@codemirror/view/0.19.48
'@lezer/common': registry.npmmirror.com/@lezer/common/0.15.12
dev: false
registry.npmmirror.com/@codemirror/panel/0.19.1:
resolution: {integrity: sha512-sYeOCMA3KRYxZYJYn5PNlt9yNsjy3zTNTrbYSfVgjgL9QomIVgOJWPO5hZ2sTN8lufO6lw0vTBsIPL9MSidmBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@codemirror/panel/-/panel-0.19.1.tgz}
name: '@codemirror/panel'
version: 0.19.1