-
Notifications
You must be signed in to change notification settings - Fork 52
/
package-lock.json
17577 lines (17576 loc) · 618 KB
/
package-lock.json
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
{
"name": "@choerodon/choerodon-front",
"version": "1.3.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ahooksjs/use-request": {
"version": "2.8.15",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ahooksjs/use-request/-/use-request-2.8.15.tgz",
"integrity": "sha512-xhVaM4fyIiAMdVFuuU5i3CFUdFa/IblF+fvITVMFaUEO3w/V5tVCAF6WIA3T03n1/RPuzRkA7Ao1PFtSGtGelw==",
"requires": {
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1"
}
},
"@ahooksjs/use-url-state": {
"version": "2.5.12",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ahooksjs/use-url-state/-/use-url-state-2.5.12.tgz",
"integrity": "sha512-NrQuEtumTYNag8y/H8eByYU3An1a25EMKdxQnPsC1FVq2gmBny1AyKYFqC82PV3e4efi9F88Od/FgoNjsm1frg==",
"requires": {
"@types/query-string": "^6.3.0",
"query-string": "^6.9.0"
},
"dependencies": {
"query-string": {
"version": "6.14.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/query-string/-/query-string-6.14.1.tgz",
"integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==",
"requires": {
"decode-uri-component": "^0.2.0",
"filter-obj": "^1.1.0",
"split-on-first": "^1.0.0",
"strict-uri-encode": "^2.0.0"
}
},
"strict-uri-encode": {
"version": "2.0.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz",
"integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY="
}
}
},
"@ant-design/colors": {
"version": "6.0.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ant-design/colors/-/colors-6.0.0.tgz",
"integrity": "sha1-m5NmJXz/zEfbQrnQIDu1ksE8Apg=",
"requires": {
"@ctrl/tinycolor": "^3.4.0"
}
},
"@ant-design/css-animation": {
"version": "1.7.3",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ant-design/css-animation/-/css-animation-1.7.3.tgz",
"integrity": "sha1-YKHJcAFOhrKPlAUQ1p5QPkKPETY="
},
"@ant-design/icons": {
"version": "4.7.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ant-design/icons/-/icons-4.7.0.tgz",
"integrity": "sha1-jDy+ClVrqSr13H0ecMCyW1F5rw8=",
"requires": {
"@ant-design/colors": "^6.0.0",
"@ant-design/icons-svg": "^4.2.1",
"@babel/runtime": "^7.11.2",
"classnames": "^2.2.6",
"rc-util": "^5.9.4"
}
},
"@ant-design/icons-svg": {
"version": "4.2.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ant-design/icons-svg/-/icons-svg-4.2.1.tgz",
"integrity": "sha1-hjDajrRHGkqr2u19H/apfcss8Fo="
},
"@ant-design/react-slick": {
"version": "0.27.14",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ant-design/react-slick/-/react-slick-0.27.14.tgz",
"integrity": "sha1-oQgsRzTlfHupxB0DU3X1v1d/O14=",
"requires": {
"@babel/runtime": "^7.10.4",
"classnames": "^2.2.5",
"json2mq": "^0.2.0",
"lodash": "^4.17.15",
"resize-observer-polyfill": "^1.5.0"
}
},
"@antv/algorithm": {
"version": "0.1.21",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/algorithm/-/algorithm-0.1.21.tgz",
"integrity": "sha512-R2BsqMoG2uwrV9778WKhGhVNv05sXRcV316R5capDTOutO9nFyQrsz52/ufvIYqaNY+k0Rv2XjOHWytJRW72Eg==",
"requires": {
"@antv/util": "^2.0.13",
"tslib": "^2.0.0"
}
},
"@antv/attr": {
"version": "0.0.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/attr/-/attr-0.0.7.tgz",
"integrity": "sha1-Mz8lLONfw+/fitSARsJjpr4tfQQ=",
"requires": {
"@antv/util": "~1.2.5"
},
"dependencies": {
"@antv/util": {
"version": "1.2.5",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/util/-/util-1.2.5.tgz",
"integrity": "sha1-iJbFBV7Cnko0S12ql7+CkF99QM0=",
"requires": {
"@antv/gl-matrix": "^2.7.1"
}
}
}
},
"@antv/component": {
"version": "0.0.9",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/component/-/component-0.0.9.tgz",
"integrity": "sha1-od3i0dS3eqoNQ2BiWQiuNd03Oak=",
"requires": {
"@antv/attr": "~0.0.7",
"@antv/g": "~3.2.2",
"@antv/util": "~1.2.5",
"wolfy87-eventemitter": "~5.1.0"
},
"dependencies": {
"@antv/g": {
"version": "3.2.2",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g/-/g-3.2.2.tgz",
"integrity": "sha1-qzD2mp1y5imRKu4EYfVNJ2UZwjc=",
"requires": {
"@antv/gl-matrix": "~2.7.1",
"@antv/util": "~1.2.3",
"d3-ease": "~1.0.3",
"d3-interpolate": "~1.1.5",
"d3-timer": "~1.0.6",
"wolfy87-eventemitter": "~5.1.0"
}
},
"@antv/util": {
"version": "1.2.5",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/util/-/util-1.2.5.tgz",
"integrity": "sha1-iJbFBV7Cnko0S12ql7+CkF99QM0=",
"requires": {
"@antv/gl-matrix": "^2.7.1"
}
},
"d3-interpolate": {
"version": "1.1.6",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/d3-interpolate/-/d3-interpolate-1.1.6.tgz",
"integrity": "sha1-LPOVriOBgE3wiqG/dmt/l7X2j7Y=",
"requires": {
"d3-color": "1"
}
},
"wolfy87-eventemitter": {
"version": "5.1.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/wolfy87-eventemitter/-/wolfy87-eventemitter-5.1.0.tgz",
"integrity": "sha1-NcGsDdGsDBXjXZgVCPwiCEoToBE="
}
}
},
"@antv/dom-util": {
"version": "2.0.3",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/dom-util/-/dom-util-2.0.3.tgz",
"integrity": "sha1-y9FYsciODopNhlhxpZabEZBVT/U=",
"requires": {
"tslib": "^2.0.3"
}
},
"@antv/event-emitter": {
"version": "0.1.2",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/event-emitter/-/event-emitter-0.1.2.tgz",
"integrity": "sha1-oXt8uG5tBxiA3Gv7IydW+IYk7Lw="
},
"@antv/g": {
"version": "3.4.10",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g/-/g-3.4.10.tgz",
"integrity": "sha1-57YWqiGxesUYUNAzMypa+N6P4BU=",
"requires": {
"@antv/gl-matrix": "~2.7.1",
"@antv/util": "~1.3.1",
"d3-ease": "~1.0.3",
"d3-interpolate": "~1.1.5",
"d3-timer": "~1.0.6",
"detect-browser": "^5.1.0"
},
"dependencies": {
"@antv/util": {
"version": "1.3.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/util/-/util-1.3.1.tgz",
"integrity": "sha1-MKNLIB/5Em7A1YxyyBZqnD5kTM0=",
"requires": {
"@antv/gl-matrix": "^2.7.1"
}
},
"d3-interpolate": {
"version": "1.1.6",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/d3-interpolate/-/d3-interpolate-1.1.6.tgz",
"integrity": "sha1-LPOVriOBgE3wiqG/dmt/l7X2j7Y=",
"requires": {
"d3-color": "1"
}
}
}
},
"@antv/g-base": {
"version": "0.5.9",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g-base/-/g-base-0.5.9.tgz",
"integrity": "sha1-WNDhHYUVetoUCPvfJPT0aPQOWc0=",
"requires": {
"@antv/event-emitter": "^0.1.1",
"@antv/g-math": "^0.1.6",
"@antv/matrix-util": "^3.1.0-beta.1",
"@antv/path-util": "~2.0.5",
"@antv/util": "~2.0.0",
"@types/d3-timer": "^2.0.0",
"d3-ease": "^1.0.5",
"d3-interpolate": "^1.3.2",
"d3-timer": "^1.0.9",
"detect-browser": "^5.1.0",
"tslib": "^2.0.3"
}
},
"@antv/g-canvas": {
"version": "0.5.12",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g-canvas/-/g-canvas-0.5.12.tgz",
"integrity": "sha1-L8QNztaZTwdPIjQeZdVve71Sdfc=",
"requires": {
"@antv/g-base": "^0.5.3",
"@antv/g-math": "^0.1.6",
"@antv/matrix-util": "^3.1.0-beta.1",
"@antv/path-util": "~2.0.5",
"@antv/util": "~2.0.0",
"gl-matrix": "^3.0.0",
"tslib": "^2.0.3"
}
},
"@antv/g-math": {
"version": "0.1.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g-math/-/g-math-0.1.7.tgz",
"integrity": "sha1-bsJ2kmn3zLZ+WBQNVznfdARswE4=",
"requires": {
"@antv/util": "~2.0.0",
"gl-matrix": "^3.0.0"
}
},
"@antv/g-svg": {
"version": "0.5.6",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g-svg/-/g-svg-0.5.6.tgz",
"integrity": "sha1-cLL6mAxDGzmtPFtLU+NqHWCVfWU=",
"requires": {
"@antv/g-base": "^0.5.3",
"@antv/g-math": "^0.1.6",
"@antv/util": "~2.0.0",
"detect-browser": "^5.0.0",
"tslib": "^2.0.3"
}
},
"@antv/g-webgpu": {
"version": "0.5.5",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g-webgpu/-/g-webgpu-0.5.5.tgz",
"integrity": "sha1-AD1BFFPtA+fdkWvWxtsmorU9GZE=",
"requires": {
"@antv/g-webgpu-core": "^0.5.5",
"@antv/g-webgpu-engine": "^0.5.5",
"@webgpu/types": "^0.0.31",
"gl-matrix": "^3.1.0",
"gl-vec2": "^1.3.0",
"hammerjs": "^2.0.8",
"inversify": "^5.0.1",
"inversify-inject-decorators": "^3.1.0",
"polyline-miter-util": "^1.0.1",
"polyline-normals": "^2.0.2",
"probe.gl": "^3.1.1",
"reflect-metadata": "^0.1.13"
}
},
"@antv/g-webgpu-core": {
"version": "0.5.6",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g-webgpu-core/-/g-webgpu-core-0.5.6.tgz",
"integrity": "sha1-aM3gtdC0S1eUNxwlI2gvRzTaPGw=",
"requires": {
"eventemitter3": "^4.0.0",
"gl-matrix": "^3.1.0",
"inversify": "^5.0.1",
"inversify-inject-decorators": "^3.1.0",
"probe.gl": "^3.1.1",
"reflect-metadata": "^0.1.13"
},
"dependencies": {
"eventemitter3": {
"version": "4.0.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/eventemitter3/-/eventemitter3-4.0.7.tgz",
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw=="
}
}
},
"@antv/g-webgpu-engine": {
"version": "0.5.6",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g-webgpu-engine/-/g-webgpu-engine-0.5.6.tgz",
"integrity": "sha1-vnwb+OSxgi1yowLWKANDReBXe70=",
"requires": {
"@antv/g-webgpu-core": "^0.5.6",
"@webgpu/glslang": "^0.0.15",
"@webgpu/types": "^0.0.31",
"gl-matrix": "^3.1.0",
"hammerjs": "^2.0.8",
"inversify": "^5.0.1",
"inversify-inject-decorators": "^3.1.0",
"probe.gl": "^3.1.1",
"reflect-metadata": "^0.1.13",
"regl": "^1.3.11"
}
},
"@antv/g6": {
"version": "4.5.3",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g6/-/g6-4.5.3.tgz",
"integrity": "sha512-9QXs8/klcjcpLHpR5EX/MXPO4mklGGfGasxpuiVY9UKchWi0moaCoiGNE5sEY1QIvTF/XB8wKHuyMHT0LArpoA==",
"requires": {
"@antv/g6-pc": "0.5.3"
}
},
"@antv/g6-core": {
"version": "0.5.3",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g6-core/-/g6-core-0.5.3.tgz",
"integrity": "sha512-qvLMOxIhauwx2scza//++60tkUSnwlDHH8WUQE2AdeSmf6HKWd0Bilxkuux65v2Ta/lquf/gcjJa6EcX5VFdzw==",
"requires": {
"@antv/algorithm": "^0.1.8",
"@antv/dom-util": "^2.0.1",
"@antv/event-emitter": "~0.1.0",
"@antv/g-base": "^0.5.1",
"@antv/g-math": "^0.1.1",
"@antv/matrix-util": "^3.1.0-beta.3",
"@antv/path-util": "^2.0.3",
"@antv/util": "~2.0.5",
"ml-matrix": "^6.5.0",
"tslib": "^2.1.0"
}
},
"@antv/g6-element": {
"version": "0.5.3",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g6-element/-/g6-element-0.5.3.tgz",
"integrity": "sha512-uX3ef/S6IDDjcGsEwir2/yHe+8EUahN1oQMEkxNZ6NM4o+DzYA80LQcDrTZ0FKU6zR4SSENTvI49R03uhZiCxg==",
"requires": {
"@antv/g-base": "^0.5.1",
"@antv/g6-core": "0.5.3",
"@antv/util": "~2.0.5"
}
},
"@antv/g6-pc": {
"version": "0.5.3",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g6-pc/-/g6-pc-0.5.3.tgz",
"integrity": "sha512-tCVxR45OP99N31meiJ+UGtdvxPJMP2674QcT8jOC1Urz37U4sha9zxh3mObIxMc2LCLzUjBn05J/Ar6jiPGpFA==",
"requires": {
"@ant-design/colors": "^4.0.5",
"@antv/algorithm": "^0.1.8",
"@antv/dom-util": "^2.0.1",
"@antv/event-emitter": "~0.1.0",
"@antv/g-base": "^0.5.1",
"@antv/g-canvas": "^0.5.2",
"@antv/g-math": "^0.1.1",
"@antv/g-svg": "^0.5.1",
"@antv/g6-core": "0.5.3",
"@antv/g6-element": "0.5.3",
"@antv/g6-plugin": "0.5.3",
"@antv/hierarchy": "^0.6.7",
"@antv/layout": "^0.1.22",
"@antv/matrix-util": "^3.1.0-beta.3",
"@antv/path-util": "^2.0.3",
"@antv/util": "~2.0.5",
"color": "^3.1.3",
"d3-force": "^2.0.1",
"dagre": "^0.8.5",
"insert-css": "^2.0.0",
"ml-matrix": "^6.5.0"
},
"dependencies": {
"@ant-design/colors": {
"version": "4.0.5",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ant-design/colors/-/colors-4.0.5.tgz",
"integrity": "sha1-19EA11Rcyo9iSVRgSmiS/Ei6Wq4=",
"requires": {
"tinycolor2": "^1.4.1"
}
},
"@antv/layout": {
"version": "0.1.31",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/layout/-/layout-0.1.31.tgz",
"integrity": "sha512-iz9i19dOJGiZr5xBWI5sfG+2K3QVMNAGOBrbjWKH2RGLvGpf2TSFySidhz0siDrcQA46cDsjLmGstezQdgeGzA==",
"requires": {
"@antv/g-webgpu": "0.5.5",
"@dagrejs/graphlib": "2.1.4",
"d3-force": "^2.0.1",
"ml-matrix": "^6.5.0"
}
}
}
},
"@antv/g6-plugin": {
"version": "0.5.3",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/g6-plugin/-/g6-plugin-0.5.3.tgz",
"integrity": "sha512-sFG5Bau6wwjyN1a0gKkCodlfLUsFvM6iO5V0t/pfCRgOySFUusYkND5CYoWgMC6kwvmSIKoauq177AORWZwDHg==",
"requires": {
"@antv/dom-util": "^2.0.2",
"@antv/g-base": "^0.5.1",
"@antv/g-canvas": "^0.5.2",
"@antv/g-svg": "^0.5.2",
"@antv/g6-core": "*",
"@antv/matrix-util": "^3.1.0-beta.3",
"@antv/scale": "^0.3.4",
"@antv/util": "^2.0.9",
"insert-css": "^2.0.0"
}
},
"@antv/gl-matrix": {
"version": "2.7.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/gl-matrix/-/gl-matrix-2.7.1.tgz",
"integrity": "sha1-rLjjf3qz3wE0WrpDcteUK+QuuhQ="
},
"@antv/hierarchy": {
"version": "0.6.8",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/hierarchy/-/hierarchy-0.6.8.tgz",
"integrity": "sha1-t3xJCpwt1toYbLrO4OeIe4wbP6Q=",
"requires": {
"@antv/util": "^2.0.7"
}
},
"@antv/layout": {
"version": "0.0.16",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/layout/-/layout-0.0.16.tgz",
"integrity": "sha1-1LJZLAslNeLbVKZNGbkXGq9M32w=",
"requires": {
"@antv/g-webgpu": "^0.5.1",
"d3-force": "^2.0.1",
"dagre": "^0.8.5",
"ml-matrix": "^6.5.0"
}
},
"@antv/matrix-util": {
"version": "3.1.0-beta.3",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/matrix-util/-/matrix-util-3.1.0-beta.3.tgz",
"integrity": "sha1-4GHej6e+BGBaFVxpzFzpCC7t3e4=",
"requires": {
"@antv/util": "^2.0.9",
"gl-matrix": "^3.4.3",
"tslib": "^2.0.3"
}
},
"@antv/path-util": {
"version": "2.0.15",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/path-util/-/path-util-2.0.15.tgz",
"integrity": "sha1-pvaR38i3vOW+fwqrtb1hSWQyVjE=",
"requires": {
"@antv/matrix-util": "^3.0.4",
"@antv/util": "^2.0.9",
"tslib": "^2.0.3"
},
"dependencies": {
"@antv/matrix-util": {
"version": "3.0.4",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/matrix-util/-/matrix-util-3.0.4.tgz",
"integrity": "sha1-6hPxWKovtLovuNa2tWHsRn6jrCA=",
"requires": {
"@antv/util": "^2.0.9",
"gl-matrix": "^3.3.0",
"tslib": "^2.0.3"
}
}
}
},
"@antv/scale": {
"version": "0.3.14",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/scale/-/scale-0.3.14.tgz",
"integrity": "sha1-Bxj4ZRNo5cmNtWEgZRMqjIu83kg=",
"requires": {
"@antv/util": "~2.0.3",
"fecha": "~4.2.0",
"tslib": "^2.0.0"
}
},
"@antv/util": {
"version": "2.0.17",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha1-6O9CrKeJKBWyKSafPdEMazx1l6k=",
"requires": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"@atlaskit/analytics-next": {
"version": "6.3.8",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@atlaskit/analytics-next/-/analytics-next-6.3.8.tgz",
"integrity": "sha1-NTlPv/SZ4Y0ve8JAHhlipuG+4tI=",
"requires": {
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
"prop-types": "^15.5.10",
"tslib": "^1.9.3",
"use-memo-one": "^1.1.1"
},
"dependencies": {
"tslib": {
"version": "1.14.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
}
}
},
"@atlaskit/analytics-next-stable-react-context": {
"version": "1.0.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@atlaskit/analytics-next-stable-react-context/-/analytics-next-stable-react-context-1.0.1.tgz",
"integrity": "sha1-k8THoaNfSrYG1yevRD9J8IQv2W8=",
"requires": {
"tslib": "^2.0.0"
}
},
"@atlaskit/button": {
"version": "13.4.2",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@atlaskit/button/-/button-13.4.2.tgz",
"integrity": "sha1-wK/leUZdFpSUMqQtjXPY9qplCtA=",
"requires": {
"@atlaskit/analytics-next": "^6.3.6",
"@atlaskit/spinner": "^14.0.0",
"@atlaskit/theme": "^9.5.3",
"@emotion/core": "^10.0.9",
"memoize-one": "^5.1.0",
"tslib": "^1.9.3"
},
"dependencies": {
"tslib": {
"version": "1.14.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
}
}
},
"@atlaskit/icon": {
"version": "17.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@atlaskit/icon/-/icon-17.2.0.tgz",
"integrity": "sha1-T8PsUIRFkNrFI14uyD1bLgoBeII=",
"requires": {
"@atlaskit/theme": "^9.1.0",
"@babel/runtime": "^7.0.0",
"uuid": "^3.1.0"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"@atlaskit/spinner": {
"version": "14.0.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@atlaskit/spinner/-/spinner-14.0.0.tgz",
"integrity": "sha1-vswG1wQvULN2NuH8ZGhUTSYqiIM=",
"requires": {
"@atlaskit/theme": "^9.5.1",
"@emotion/core": "^10.0.9",
"tslib": "^1.9.3"
},
"dependencies": {
"tslib": {
"version": "1.14.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
}
}
},
"@atlaskit/theme": {
"version": "9.5.6",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@atlaskit/theme/-/theme-9.5.6.tgz",
"integrity": "sha1-+8EGju469du1fDRidrXrCRPonQ0=",
"requires": {
"exenv": "^1.2.2",
"prop-types": "^15.5.10",
"tslib": "^1.9.3"
},
"dependencies": {
"tslib": {
"version": "1.14.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
}
}
},
"@atlaskit/tree": {
"version": "8.4.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@atlaskit/tree/-/tree-8.4.0.tgz",
"integrity": "sha1-fX/l5sIZr/fb6U/huPRs169YNi4=",
"requires": {
"@babel/runtime": "^7.0.0",
"css-box-model": "^1.2.0",
"react-beautiful-dnd-next": "11.0.5"
}
},
"@babel/cli": {
"version": "7.16.8",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/cli/-/cli-7.16.8.tgz",
"integrity": "sha512-FTKBbxyk5TclXOGmwYyqelqP5IF6hMxaeJskd85jbR5jBfYlwqgwAbJwnixi1ZBbTqKfFuAA95mdmUFeSRwyJA==",
"requires": {
"@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3",
"chokidar": "^3.4.0",
"commander": "^4.0.1",
"convert-source-map": "^1.1.0",
"fs-readdir-recursive": "^1.1.0",
"glob": "^7.0.0",
"make-dir": "^2.1.0",
"slash": "^2.0.0",
"source-map": "^0.5.0"
},
"dependencies": {
"commander": {
"version": "4.1.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/commander/-/commander-4.1.1.tgz",
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="
}
}
},
"@babel/code-frame": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/code-frame/-/code-frame-7.16.7.tgz",
"integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
"requires": {
"@babel/highlight": "^7.16.7"
}
},
"@babel/generator": {
"version": "7.16.8",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/generator/-/generator-7.16.8.tgz",
"integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==",
"requires": {
"@babel/types": "^7.16.8",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/helper-annotate-as-pure": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz",
"integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==",
"requires": {
"@babel/types": "^7.16.7"
}
},
"@babel/helper-environment-visitor": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz",
"integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==",
"requires": {
"@babel/types": "^7.16.7"
}
},
"@babel/helper-function-name": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
"integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
"requires": {
"@babel/helper-get-function-arity": "^7.16.7",
"@babel/template": "^7.16.7",
"@babel/types": "^7.16.7"
}
},
"@babel/helper-get-function-arity": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
"integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
"requires": {
"@babel/types": "^7.16.7"
}
},
"@babel/helper-hoist-variables": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
"integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
"requires": {
"@babel/types": "^7.16.7"
}
},
"@babel/helper-module-imports": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
"integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
"requires": {
"@babel/types": "^7.16.7"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
"integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
"requires": {
"@babel/types": "^7.16.7"
}
},
"@babel/helper-validator-identifier": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
"integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
},
"@babel/highlight": {
"version": "7.16.10",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/highlight/-/highlight-7.16.10.tgz",
"integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==",
"requires": {
"@babel/helper-validator-identifier": "^7.16.7",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
"version": "7.16.12",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/parser/-/parser-7.16.12.tgz",
"integrity": "sha512-VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A=="
},
"@babel/polyfill": {
"version": "7.12.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/polyfill/-/polyfill-7.12.1.tgz",
"integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==",
"requires": {
"core-js": "^2.6.5",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/runtime/-/runtime-7.16.7.tgz",
"integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs2": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/runtime-corejs2/-/runtime-corejs2-7.16.7.tgz",
"integrity": "sha512-ec0BM0J/9M5Cncha++AlgvvDlk+uM+m6f7K0t74ClcYzsE8LgX4RstRreksMSCI82o3LJS//UswmA0pUWkJpqg==",
"requires": {
"core-js": "^2.6.5",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/template": {
"version": "7.16.7",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/template/-/template-7.16.7.tgz",
"integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
"requires": {
"@babel/code-frame": "^7.16.7",
"@babel/parser": "^7.16.7",
"@babel/types": "^7.16.7"
}
},
"@babel/traverse": {
"version": "7.16.10",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/traverse/-/traverse-7.16.10.tgz",
"integrity": "sha512-yzuaYXoRJBGMlBhsMJoUW7G1UmSb/eXr/JHYM/MsOJgavJibLwASijW7oXBdw3NQ6T0bW7Ty5P/VarOs9cHmqw==",
"requires": {
"@babel/code-frame": "^7.16.7",
"@babel/generator": "^7.16.8",
"@babel/helper-environment-visitor": "^7.16.7",
"@babel/helper-function-name": "^7.16.7",
"@babel/helper-hoist-variables": "^7.16.7",
"@babel/helper-split-export-declaration": "^7.16.7",
"@babel/parser": "^7.16.10",
"@babel/types": "^7.16.8",
"debug": "^4.1.0",
"globals": "^11.1.0"
}
},
"@babel/types": {
"version": "7.16.8",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@babel/types/-/types-7.16.8.tgz",
"integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==",
"requires": {
"@babel/helper-validator-identifier": "^7.16.7",
"to-fast-properties": "^2.0.0"
}
},
"@base2/pretty-print-object": {
"version": "1.0.1",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz",
"integrity": "sha1-NxuovmbVVoEtx/sWnrw8CDePadQ="
},
"@better-scroll/core": {
"version": "2.4.2",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@better-scroll/core/-/core-2.4.2.tgz",
"integrity": "sha1-5pRwAS15kjoYA0w+STFyD7sG6uU=",
"requires": {
"@better-scroll/shared-utils": "^2.4.2"
}
},
"@better-scroll/shared-utils": {
"version": "2.4.2",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@better-scroll/shared-utils/-/shared-utils-2.4.2.tgz",
"integrity": "sha1-GsXJdJVycJOiKoAJVgeV3V48GNo="
},
"@ckeditor/ckeditor5-adapter-ckfinder": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-29.2.0.tgz",
"integrity": "sha1-c0jdTdWOGFa1F9CrswxE37M1Gu4=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-alignment": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-29.2.0.tgz",
"integrity": "sha1-KsGdtuR4hJitT6nPtg1fLNnCadM=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-autoformat": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-29.2.0.tgz",
"integrity": "sha1-BU0QoCCMnNSKBkkkprOHJiHmQOY=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-basic-styles": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-29.2.0.tgz",
"integrity": "sha1-kX9OFRhhwlYwxkVXIqUQlgTj858=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-block-quote": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-29.2.0.tgz",
"integrity": "sha1-kXS6dXDzlsxtcEPLHyUUWrRdz2k=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-ckfinder": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-29.2.0.tgz",
"integrity": "sha1-Qb8b52UcpH530RtrV5TLNV8Cy3U=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-clipboard": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-29.2.0.tgz",
"integrity": "sha1-wqnXlxMjL8GjEdmOY2FSJ/oOHmo=",
"requires": {
"@ckeditor/ckeditor5-core": "^29.2.0",
"@ckeditor/ckeditor5-engine": "^29.2.0",
"@ckeditor/ckeditor5-utils": "^29.2.0",
"@ckeditor/ckeditor5-widget": "^29.2.0",
"lodash-es": "^4.17.11"
}
},
"@ckeditor/ckeditor5-cloud-services": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-29.2.0.tgz",
"integrity": "sha1-cVdwPxfCA6FOMziuN+qvl5H/RYQ=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-core": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-core/-/ckeditor5-core-29.2.0.tgz",
"integrity": "sha1-MJDhJePyTuXHvM4VFwtvlV77huA=",
"requires": {
"@ckeditor/ckeditor5-engine": "^29.2.0",
"@ckeditor/ckeditor5-ui": "^29.2.0",
"@ckeditor/ckeditor5-utils": "^29.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-easy-image": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-29.2.0.tgz",
"integrity": "sha1-zAbzggCOviR01BKSmoQhUfvY/E0=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-editor-decoupled": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-29.2.0.tgz",
"integrity": "sha1-R/cKxwnhC1SxFzCxqJCsyzn3pUo=",
"requires": {
"ckeditor5": "^29.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-engine": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-29.2.0.tgz",
"integrity": "sha1-mqwoDwzAM+exmmRs/1VoZ7kdVfw=",
"requires": {
"@ckeditor/ckeditor5-utils": "^29.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-enter": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-29.2.0.tgz",
"integrity": "sha1-2wSIBgDs40K6VTg9rxFnVd+Cgzs=",
"requires": {
"@ckeditor/ckeditor5-core": "^29.2.0",
"@ckeditor/ckeditor5-engine": "^29.2.0",
"@ckeditor/ckeditor5-utils": "^29.2.0"
}
},
"@ckeditor/ckeditor5-essentials": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-29.2.0.tgz",
"integrity": "sha1-mYT6xhP0KalGCLsWlXsWcRcYWC8=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-font": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-font/-/ckeditor5-font-29.2.0.tgz",
"integrity": "sha1-H3OgQ3+4vUiKXQjgrTzzzBd11Jg=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-heading": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-29.2.0.tgz",
"integrity": "sha1-fbh+yHTmNwF6r4Iv91yINNhQYVA=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-image": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-image/-/ckeditor5-image-29.2.0.tgz",
"integrity": "sha1-Wwf4W1hw1mB/SlJE/eadyPQw/+I=",
"requires": {
"@ckeditor/ckeditor5-ui": "^29.2.0",
"ckeditor5": "^29.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-indent": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-29.2.0.tgz",
"integrity": "sha1-XzA6O5tbnO901SyNxxk5Q6l9hBg=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-link": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-link/-/ckeditor5-link-29.2.0.tgz",
"integrity": "sha1-L5URUs6b5bkKd1HVPx3iqRjzUaM=",
"requires": {
"@ckeditor/ckeditor5-ui": "^29.2.0",
"ckeditor5": "^29.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-list": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-list/-/ckeditor5-list-29.2.0.tgz",
"integrity": "sha1-/rjFKSP5J2w4Esh3nhCdbiiLuig=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-media-embed": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-29.2.0.tgz",
"integrity": "sha1-2oV1KUhkas1VPd3noVK+4A67UPU=",
"requires": {
"@ckeditor/ckeditor5-ui": "^29.2.0",
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-paragraph": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-29.2.0.tgz",
"integrity": "sha1-yiNg4t7KRdpIh40cq2iEj5A79xE=",
"requires": {
"@ckeditor/ckeditor5-core": "^29.2.0",
"@ckeditor/ckeditor5-ui": "^29.2.0",
"@ckeditor/ckeditor5-utils": "^29.2.0"
}
},
"@ckeditor/ckeditor5-paste-from-office": {
"version": "29.2.0",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-29.2.0.tgz",
"integrity": "sha1-qJYMBB9T7dS/RrakgxcANZQ8X5Q=",
"requires": {
"ckeditor5": "^29.2.0"
}
},
"@ckeditor/ckeditor5-react": {
"version": "3.0.3",
"resolved": "https://nexus.choerodon.com.cn/repository/choerodon-npm/@ckeditor/ckeditor5-react/-/ckeditor5-react-3.0.3.tgz",
"integrity": "sha1-ey0mNL1woe/Lg33eWprD7S2Dn7w=",
"requires": {