-
Notifications
You must be signed in to change notification settings - Fork 5
/
package-lock.json
14665 lines (14665 loc) · 606 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": "nr-labs-widget-pack",
"version": "1.49.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "nr-labs-widget-pack",
"version": "1.49.0",
"dependencies": {
"@ant-design/charts": "^1.4.3",
"@ant-design/plots": "^1.2.6",
"@mantine/hooks": "^6.0.0",
"@react-leaflet/core": "^1.0.2",
"async": "^3.2.6",
"chart.js": "^3.9.1",
"dayjs": "^1.11.9",
"leaflet": "^1.9.4",
"leaflet-color-markers": "^0.1.0",
"leaflet-rotatedmarker": "^0.2.0",
"mapbox-gl": "^2.10.0",
"prop-types": "^15.7.2",
"react-chartjs-2": "^4.3.1",
"react-leaflet": "^3.1.0",
"react-leaflet-marker": "^1.1.4",
"react-map-gl": "^7.0.19",
"recharts": "^2.12.7"
},
"devDependencies": {
"@newrelic/eslint-plugin-newrelic": "^0.3.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"eslint": "^6.8.0",
"prettier": "^1.19.1",
"react": "17.0.2",
"react-dom": "17.0.2"
}
},
"node_modules/@amap/amap-jsapi-loader": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@amap/amap-jsapi-loader/-/amap-jsapi-loader-1.0.1.tgz",
"integrity": "sha512-nPyLKt7Ow/ThHLkSvn2etQlUzqxmTVgK7bIgwdBRTg2HK5668oN7xVxkaiRe3YZEzGzfV2XgH5Jmu2T73ljejw=="
},
"node_modules/@ant-design/charts": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@ant-design/charts/-/charts-1.4.3.tgz",
"integrity": "sha512-Y0CJYtug+2Bjl2zvuehE39sxBITxWI49VnLl/O7olD+bwkXeY2QEDjB457dBIn+XIHizCWyWBW+wDIECvfFahw==",
"dependencies": {
"@ant-design/flowchart": "1.2.2",
"@ant-design/graphs": "1.4.1",
"@ant-design/maps": "1.0.8",
"@ant-design/plots": "1.2.6"
},
"peerDependencies": {
"@ant-design/icons": "^4.6.0",
"antd": "^4.6.3",
"lodash": "^4.17.20",
"react": ">=16.8.4",
"react-dom": ">=16.8.4"
}
},
"node_modules/@ant-design/colors": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-6.0.0.tgz",
"integrity": "sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==",
"peer": true,
"dependencies": {
"@ctrl/tinycolor": "^3.4.0"
}
},
"node_modules/@ant-design/flowchart": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@ant-design/flowchart/-/flowchart-1.2.2.tgz",
"integrity": "sha512-bzHZ81qqHjWIrXcCMInDB6eMTzbswaVCOAdUTCQJ+B45aybkVsU9LMCKquyOwRM7U7PWNfPC9S/lAlx2i2BvBQ==",
"dependencies": {
"@antv/layout": "^0.1.17",
"@antv/x6": "^1.25.0",
"@antv/x6-react-components": "^1.1.13",
"@antv/x6-react-shape": "^1.4.5",
"@antv/xflow": "^1.0.53",
"react-color": "2.17.3",
"react-use": "17.3.1"
},
"peerDependencies": {
"@ant-design/icons": "^4.6.0",
"antd": "^4.6.3",
"lodash": "^4.17.20",
"react": ">=16.8.4",
"react-dom": ">=16.8.4"
}
},
"node_modules/@ant-design/graphs": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@ant-design/graphs/-/graphs-1.4.1.tgz",
"integrity": "sha512-Qyj7Lnfo0gmbaMzm+9AdrS3fjkg2sFU/ZKaFl7xhgEf5LnX+N/KffIvoT8FsBmrZ9ni3onwlHs1dtYa5QdVhtQ==",
"dependencies": {
"@antv/dom-util": "^2.0.4",
"@antv/g6": "^4.2.4",
"@antv/layout": "^0.1.17",
"@antv/util": "^2.0.17",
"insert-css": "^2.0.0",
"react-content-loader": "^5.0.4"
},
"peerDependencies": {
"react": ">=16.8.4",
"react-dom": ">=16.8.4"
}
},
"node_modules/@ant-design/graphs/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@ant-design/graphs/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@ant-design/icons": {
"version": "4.8.3",
"resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-4.8.3.tgz",
"integrity": "sha512-HGlIQZzrEbAhpJR6+IGdzfbPym94Owr6JZkJ2QCCnOkPVIWMO2xgIVcOKnl8YcpijIo39V7l2qQL5fmtw56cMw==",
"peer": true,
"dependencies": {
"@ant-design/colors": "^6.0.0",
"@ant-design/icons-svg": "^4.3.0",
"@babel/runtime": "^7.11.2",
"classnames": "^2.2.6",
"lodash": "^4.17.15",
"rc-util": "^5.9.4"
},
"engines": {
"node": ">=8"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
}
},
"node_modules/@ant-design/icons-svg": {
"version": "4.4.2",
"resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.4.2.tgz",
"integrity": "sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==",
"peer": true
},
"node_modules/@ant-design/maps": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/@ant-design/maps/-/maps-1.0.8.tgz",
"integrity": "sha512-q9Lv14Ekp7j24R9agrTXIINKc1/zslLXfTIWNuoZ0hUq7w1doyEhtLTsuF0n1wcgdKGjAX3wBKQRaVlgz+u8lw==",
"dependencies": {
"@antv/l7": "^2.9.37",
"@antv/l7plot": "0.x",
"@antv/util": "^2.0.9",
"react-content-loader": "^5.0.4"
},
"peerDependencies": {
"react": ">=16.8.4",
"react-dom": ">=16.8.4"
}
},
"node_modules/@ant-design/maps/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@ant-design/maps/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@ant-design/plots": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@ant-design/plots/-/plots-1.2.6.tgz",
"integrity": "sha512-fFzB9DxRSPQa47S3WypRk4Rh+P8vBUuY/DT+IXgUrlKJtvVZUFnuYfjypX3Q/Pie2PEbI6gmskzXLxVF+3Ztvw==",
"dependencies": {
"@antv/g2plot": "^2.2.11",
"@antv/util": "^2.0.9",
"react-content-loader": "^5.0.4"
},
"peerDependencies": {
"react": ">=16.8.4",
"react-dom": ">=16.8.4"
}
},
"node_modules/@ant-design/plots/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@ant-design/plots/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@ant-design/react-slick": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-1.0.2.tgz",
"integrity": "sha512-Wj8onxL/T8KQLFFiCA4t8eIRGpRR+UPgOdac2sYzonv+i0n3kXHmvHLLiOYL655DQx2Umii9Y9nNgL7ssu5haQ==",
"peer": true,
"dependencies": {
"@babel/runtime": "^7.10.4",
"classnames": "^2.2.5",
"json2mq": "^0.2.0",
"resize-observer-polyfill": "^1.5.1",
"throttle-debounce": "^5.0.0"
},
"peerDependencies": {
"react": ">=16.9.0"
}
},
"node_modules/@antv/adjust": {
"version": "0.2.5",
"resolved": "https://registry.npmjs.org/@antv/adjust/-/adjust-0.2.5.tgz",
"integrity": "sha512-MfWZOkD9CqXRES6MBGRNe27Q577a72EIwyMnE29wIlPliFvJfWwsrONddpGU7lilMpVKecS3WAzOoip3RfPTRQ==",
"dependencies": {
"@antv/util": "~2.0.0",
"tslib": "^1.10.0"
}
},
"node_modules/@antv/adjust/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/adjust/node_modules/@antv/util/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/algorithm": {
"version": "0.1.26",
"resolved": "https://registry.npmjs.org/@antv/algorithm/-/algorithm-0.1.26.tgz",
"integrity": "sha512-DVhcFSQ8YQnMNW34Mk8BSsfc61iC1sAnmcfYoXTAshYHuU50p/6b7x3QYaGctDNKWGvi1ub7mPcSY0bK+aN0qg==",
"dependencies": {
"@antv/util": "^2.0.13",
"tslib": "^2.0.0"
}
},
"node_modules/@antv/algorithm/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/algorithm/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/async-hook": {
"version": "2.2.9",
"resolved": "https://registry.npmjs.org/@antv/async-hook/-/async-hook-2.2.9.tgz",
"integrity": "sha512-4BUp2ZUaTi2fYL67Ltkf6eV912rYJeSBokGhd5fhhnpUkMA1LEI1mg97Pqmx3yC50VEQ+LKXZxj9ePZs80ECfw==",
"dependencies": {
"async": "^3.1.1"
}
},
"node_modules/@antv/attr": {
"version": "0.3.5",
"resolved": "https://registry.npmjs.org/@antv/attr/-/attr-0.3.5.tgz",
"integrity": "sha512-wuj2gUo6C8Q2ASSMrVBuTcb5LcV+Tc0Egiy6bC42D0vxcQ+ta13CLxgMmHz8mjD0FxTPJDXSciyszRSC5TdLsg==",
"dependencies": {
"@antv/color-util": "^2.0.1",
"@antv/scale": "^0.3.0",
"@antv/util": "~2.0.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/attr/node_modules/@antv/scale": {
"version": "0.3.18",
"resolved": "https://registry.npmjs.org/@antv/scale/-/scale-0.3.18.tgz",
"integrity": "sha512-GHwE6Lo7S/Q5fgaLPaCsW+CH+3zl4aXpnN1skOiEY0Ue9/u+s2EySv6aDXYkAqs//i0uilMDD/0/4n8caX9U9w==",
"dependencies": {
"@antv/util": "~2.0.3",
"fecha": "~4.2.0",
"tslib": "^2.0.0"
}
},
"node_modules/@antv/attr/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/attr/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/color-util": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/@antv/color-util/-/color-util-2.0.6.tgz",
"integrity": "sha512-KnPEaAH+XNJMjax9U35W67nzPI+QQ2x27pYlzmSIWrbj4/k8PGrARXfzDTjwoozHJY8qG62Z+Ww6Alhu2FctXQ==",
"dependencies": {
"@antv/util": "^2.0.9",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/color-util/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/color-util/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/dom-util": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@antv/dom-util/-/dom-util-2.0.4.tgz",
"integrity": "sha512-2shXUl504fKwt82T3GkuT4Uoc6p9qjCKnJ8gXGLSW4T1W37dqf9AV28aCfoVPHp2BUXpSsB+PAJX2rG/jLHsLQ==",
"dependencies": {
"tslib": "^2.0.3"
}
},
"node_modules/@antv/dom-util/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/event-emitter": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/@antv/event-emitter/-/event-emitter-0.1.3.tgz",
"integrity": "sha512-4ddpsiHN9Pd4UIlWuKVK1C4IiZIdbwQvy9i7DUSI3xNJ89FPUFt8lxDYj8GzzfdllV0NkJTRxnG+FvLk0llidg=="
},
"node_modules/@antv/g-base": {
"version": "0.5.16",
"resolved": "https://registry.npmjs.org/@antv/g-base/-/g-base-0.5.16.tgz",
"integrity": "sha512-jP06wggTubDPHXoKwFg3/f1lyxBX9ywwN3E/HG74Nd7DXqOXQis8tsIWW+O6dS/h9vyuXLd1/wDWkMMm3ZzXdg==",
"dependencies": {
"@antv/event-emitter": "^0.1.1",
"@antv/g-math": "^0.1.9",
"@antv/matrix-util": "^3.1.0-beta.1",
"@antv/path-util": "~2.0.5",
"@antv/util": "~2.0.13",
"@types/d3-timer": "^2.0.0",
"d3-ease": "^1.0.5",
"d3-interpolate": "^3.0.1",
"d3-timer": "^1.0.9",
"detect-browser": "^5.1.0",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g-base/node_modules/@antv/g-math": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-0.1.9.tgz",
"integrity": "sha512-KHMSfPfZ5XHM1PZnG42Q2gxXfOitYveNTA7L61lR6mhZ8Y/aExsYmHqaKBsSarU0z+6WLrl9C07PQJZaw0uljQ==",
"dependencies": {
"@antv/util": "~2.0.0",
"gl-matrix": "^3.0.0"
}
},
"node_modules/@antv/g-base/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g-base/node_modules/@types/d3-timer": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-2.0.3.tgz",
"integrity": "sha512-jhAJzaanK5LqyLQ50jJNIrB8fjL9gwWZTgYjevPvkDLMU+kTAZkYsobI59nYoeSrH1PucuyJEi247Pb90t6XUg=="
},
"node_modules/@antv/g-base/node_modules/d3-ease": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.7.tgz",
"integrity": "sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ=="
},
"node_modules/@antv/g-base/node_modules/d3-timer": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.10.tgz",
"integrity": "sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw=="
},
"node_modules/@antv/g-base/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/g-device-api": {
"version": "1.6.12",
"resolved": "https://registry.npmjs.org/@antv/g-device-api/-/g-device-api-1.6.12.tgz",
"integrity": "sha512-bOLA3MqvPFbTNNhrNyEpyYzAC8gHPioJHqKtPfAfdXBec+to2nciQoihGhRrosDwjAQLBLtVF+nc7zG2DnHgcg==",
"dependencies": {
"@antv/util": "^3.3.4",
"@webgpu/types": "^0.1.34",
"eventemitter3": "^5.0.1",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-device-api/node_modules/eventemitter3": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz",
"integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA=="
},
"node_modules/@antv/g-device-api/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/g-svg": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/@antv/g-svg/-/g-svg-0.5.7.tgz",
"integrity": "sha512-jUbWoPgr4YNsOat2Y/rGAouNQYGpw4R0cvlN0YafwOyacFFYy2zC8RslNd6KkPhhR3XHNSqJOuCYZj/YmLUwYw==",
"dependencies": {
"@antv/g-base": "^0.5.12",
"@antv/g-math": "^0.1.9",
"@antv/util": "~2.0.0",
"detect-browser": "^5.0.0",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g-svg/node_modules/@antv/g-math": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-0.1.9.tgz",
"integrity": "sha512-KHMSfPfZ5XHM1PZnG42Q2gxXfOitYveNTA7L61lR6mhZ8Y/aExsYmHqaKBsSarU0z+6WLrl9C07PQJZaw0uljQ==",
"dependencies": {
"@antv/util": "~2.0.0",
"gl-matrix": "^3.0.0"
}
},
"node_modules/@antv/g-svg/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g-svg/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/g-webgpu": {
"version": "0.5.5",
"resolved": "https://registry.npmjs.org/@antv/g-webgpu/-/g-webgpu-0.5.5.tgz",
"integrity": "sha512-TxtBniINFq1jFGEPo46xjJfrbJbUqkFd5wmsRs3tcg/7J7xoldOP1kEadpI3AJG9knMYdE92VpILw1VPd6DgzQ==",
"dependencies": {
"@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"
}
},
"node_modules/@antv/g-webgpu-core": {
"version": "0.5.6",
"resolved": "https://registry.npmjs.org/@antv/g-webgpu-core/-/g-webgpu-core-0.5.6.tgz",
"integrity": "sha512-DPiH3GkAUiT0Q+LAKeImpI+IOQ/gP2w6HstYKivpFIpBPIvZ/9equM3icVrn1iDfDkZANVXQ1PppcO3xBv1ZTw==",
"dependencies": {
"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"
}
},
"node_modules/@antv/g-webgpu-engine": {
"version": "0.5.6",
"resolved": "https://registry.npmjs.org/@antv/g-webgpu-engine/-/g-webgpu-engine-0.5.6.tgz",
"integrity": "sha512-D311qYUefdEFwLayutIHqucrAY3cAGH3BdnXS37nq+0nsglrHcNP0Ab1YTinn9RihLoY3yXFTLzrYkJHJbZXDg==",
"dependencies": {
"@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"
}
},
"node_modules/@antv/g-webgpu-engine/node_modules/@webgpu/types": {
"version": "0.0.31",
"resolved": "https://registry.npmjs.org/@webgpu/types/-/types-0.0.31.tgz",
"integrity": "sha512-cvvCMSZBT4VsRNtt0lI6XQqvOIIWw6+NRUtnPUMDVDgsI4pCZColz3qzF5QcP9wIYOHEc3jssIBse8UWONKhlQ=="
},
"node_modules/@antv/g-webgpu/node_modules/@webgpu/types": {
"version": "0.0.31",
"resolved": "https://registry.npmjs.org/@webgpu/types/-/types-0.0.31.tgz",
"integrity": "sha512-cvvCMSZBT4VsRNtt0lI6XQqvOIIWw6+NRUtnPUMDVDgsI4pCZColz3qzF5QcP9wIYOHEc3jssIBse8UWONKhlQ=="
},
"node_modules/@antv/g2plot": {
"version": "2.4.32",
"resolved": "https://registry.npmjs.org/@antv/g2plot/-/g2plot-2.4.32.tgz",
"integrity": "sha512-HTBuAMa+PJ6DqY1XCX1GBNTGz/IBmn9lx2xu18NQSHtgXAIHWSF+WYs7Aj8iaujcapM8g+IPgjS6ObO1u9CbFg==",
"dependencies": {
"@antv/color-util": "^2.0.6",
"@antv/event-emitter": "^0.1.2",
"@antv/g-base": "^0.5.11",
"@antv/g2": "^4.1.26",
"@antv/matrix-util": "^3.1.0-beta.2",
"@antv/path-util": "^3.0.1",
"@antv/scale": "^0.3.18",
"@antv/util": "^2.0.17",
"d3-hierarchy": "^2.0.0",
"d3-regression": "^1.3.5",
"fmin": "^0.0.2",
"pdfast": "^0.2.0",
"size-sensor": "^1.0.1",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/component": {
"version": "0.8.35",
"resolved": "https://registry.npmjs.org/@antv/component/-/component-0.8.35.tgz",
"integrity": "sha512-VnRa5X77nBPI952o2xePEEMSNZ6g2mcUDrQY8mVL2kino/8TFhqDq5fTRmDXZyWyIYd4ulJTz5zgeSwAnX/INQ==",
"dependencies": {
"@antv/color-util": "^2.0.3",
"@antv/dom-util": "~2.0.1",
"@antv/g-base": "^0.5.9",
"@antv/matrix-util": "^3.1.0-beta.1",
"@antv/path-util": "~2.0.7",
"@antv/scale": "~0.3.1",
"@antv/util": "~2.0.0",
"fecha": "~4.2.0",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/component/node_modules/@antv/path-util": {
"version": "2.0.15",
"resolved": "https://registry.npmjs.org/@antv/path-util/-/path-util-2.0.15.tgz",
"integrity": "sha512-R2VLZ5C8PLPtr3VciNyxtjKqJ0XlANzpFb5sE9GE61UQqSRuSVSzIakMxjEPrpqbgc+s+y8i+fmc89Snu7qbNw==",
"dependencies": {
"@antv/matrix-util": "^3.0.4",
"@antv/util": "^2.0.9",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/component/node_modules/@antv/path-util/node_modules/@antv/matrix-util": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@antv/matrix-util/-/matrix-util-3.0.4.tgz",
"integrity": "sha512-BAPyu6dUliHcQ7fm9hZSGKqkwcjEDVLVAstlHULLvcMZvANHeLXgHEgV7JqcAV/GIhIz8aZChIlzM1ZboiXpYQ==",
"dependencies": {
"@antv/util": "^2.0.9",
"gl-matrix": "^3.3.0",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/coord": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@antv/coord/-/coord-0.3.1.tgz",
"integrity": "sha512-rFE94C8Xzbx4xmZnHh2AnlB3Qm1n5x0VT3OROy257IH6Rm4cuzv1+tZaUBATviwZd99S+rOY9telw/+6C9GbRw==",
"dependencies": {
"@antv/matrix-util": "^3.1.0-beta.2",
"@antv/util": "~2.0.12",
"tslib": "^2.1.0"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/g-canvas": {
"version": "0.5.17",
"resolved": "https://registry.npmjs.org/@antv/g-canvas/-/g-canvas-0.5.17.tgz",
"integrity": "sha512-sXYJMWTOlb/Ycb6sTKu00LcJqInXJY4t99+kSM40u2OfqrXYmaXDjHR7D2V0roMkbK/QWiWS9UnEidCR1VtMOA==",
"dependencies": {
"@antv/g-base": "^0.5.12",
"@antv/g-math": "^0.1.9",
"@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"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/g-canvas/node_modules/@antv/path-util": {
"version": "2.0.15",
"resolved": "https://registry.npmjs.org/@antv/path-util/-/path-util-2.0.15.tgz",
"integrity": "sha512-R2VLZ5C8PLPtr3VciNyxtjKqJ0XlANzpFb5sE9GE61UQqSRuSVSzIakMxjEPrpqbgc+s+y8i+fmc89Snu7qbNw==",
"dependencies": {
"@antv/matrix-util": "^3.0.4",
"@antv/util": "^2.0.9",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/g-canvas/node_modules/@antv/path-util/node_modules/@antv/matrix-util": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@antv/matrix-util/-/matrix-util-3.0.4.tgz",
"integrity": "sha512-BAPyu6dUliHcQ7fm9hZSGKqkwcjEDVLVAstlHULLvcMZvANHeLXgHEgV7JqcAV/GIhIz8aZChIlzM1ZboiXpYQ==",
"dependencies": {
"@antv/util": "^2.0.9",
"gl-matrix": "^3.3.0",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/g-math": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-0.1.9.tgz",
"integrity": "sha512-KHMSfPfZ5XHM1PZnG42Q2gxXfOitYveNTA7L61lR6mhZ8Y/aExsYmHqaKBsSarU0z+6WLrl9C07PQJZaw0uljQ==",
"dependencies": {
"@antv/util": "~2.0.0",
"gl-matrix": "^3.0.0"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/g2": {
"version": "4.2.11",
"resolved": "https://registry.npmjs.org/@antv/g2/-/g2-4.2.11.tgz",
"integrity": "sha512-QiqxLLYDWkv9c4oTcXscs6NMxBuWZ1JCarHPZ27J43IN2BV+qUKw8yce0A8CBR8fCILEFqQAfS00Szqpye036Q==",
"dependencies": {
"@antv/adjust": "^0.2.1",
"@antv/attr": "^0.3.1",
"@antv/color-util": "^2.0.2",
"@antv/component": "^0.8.27",
"@antv/coord": "^0.3.0",
"@antv/dom-util": "^2.0.2",
"@antv/event-emitter": "~0.1.0",
"@antv/g-base": "~0.5.6",
"@antv/g-canvas": "~0.5.10",
"@antv/g-svg": "~0.5.6",
"@antv/matrix-util": "^3.1.0-beta.3",
"@antv/path-util": "^2.0.15",
"@antv/scale": "^0.3.14",
"@antv/util": "~2.0.5",
"tslib": "^2.0.0"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/g2/node_modules/@antv/path-util": {
"version": "2.0.15",
"resolved": "https://registry.npmjs.org/@antv/path-util/-/path-util-2.0.15.tgz",
"integrity": "sha512-R2VLZ5C8PLPtr3VciNyxtjKqJ0XlANzpFb5sE9GE61UQqSRuSVSzIakMxjEPrpqbgc+s+y8i+fmc89Snu7qbNw==",
"dependencies": {
"@antv/matrix-util": "^3.0.4",
"@antv/util": "^2.0.9",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/g2/node_modules/@antv/path-util/node_modules/@antv/matrix-util": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@antv/matrix-util/-/matrix-util-3.0.4.tgz",
"integrity": "sha512-BAPyu6dUliHcQ7fm9hZSGKqkwcjEDVLVAstlHULLvcMZvANHeLXgHEgV7JqcAV/GIhIz8aZChIlzM1ZboiXpYQ==",
"dependencies": {
"@antv/util": "^2.0.9",
"gl-matrix": "^3.3.0",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/path-util": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@antv/path-util/-/path-util-3.0.1.tgz",
"integrity": "sha512-tpvAzMpF9Qm6ik2YSMqICNU5tco5POOW7S4XoxZAI/B0L26adU+Md/SmO0BBo2SpuywKvzPH3hPT3xmoyhr04Q==",
"dependencies": {
"gl-matrix": "^3.1.0",
"lodash-es": "^4.17.21",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/scale": {
"version": "0.3.18",
"resolved": "https://registry.npmjs.org/@antv/scale/-/scale-0.3.18.tgz",
"integrity": "sha512-GHwE6Lo7S/Q5fgaLPaCsW+CH+3zl4aXpnN1skOiEY0Ue9/u+s2EySv6aDXYkAqs//i0uilMDD/0/4n8caX9U9w==",
"dependencies": {
"@antv/util": "~2.0.3",
"fecha": "~4.2.0",
"tslib": "^2.0.0"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/d3-hierarchy": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-2.0.0.tgz",
"integrity": "sha512-SwIdqM3HxQX2214EG9GTjgmCc/mbSx4mQBn+DuEETubhOw6/U3fmnji4uCVrmzOydMHSO1nZle5gh6HB/wdOzw=="
},
"node_modules/@antv/g2plot/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/g6": {
"version": "4.8.24",
"resolved": "https://registry.npmjs.org/@antv/g6/-/g6-4.8.24.tgz",
"integrity": "sha512-bgj7sZ+z45JmOngIpYpwmSIg7SboMLZBoAlX0+RoAETZB3/xvZO0MXT3lCSyAhIgm5Sb68pekKi7OStuo04NyQ==",
"dependencies": {
"@antv/g6-pc": "0.8.24"
}
},
"node_modules/@antv/g6-core": {
"version": "0.8.24",
"resolved": "https://registry.npmjs.org/@antv/g6-core/-/g6-core-0.8.24.tgz",
"integrity": "sha512-rgI3dArAD8uoSz2+skS4ctN4x/Of33ivTIKaEYYvClxgkLZWVz9zvocy+5AWcVPBHZsAXkZcdh9zndIoWY/33A==",
"dependencies": {
"@antv/algorithm": "^0.1.26",
"@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.6.2"
}
},
"node_modules/@antv/g6-core/node_modules/@antv/g-math": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-0.1.9.tgz",
"integrity": "sha512-KHMSfPfZ5XHM1PZnG42Q2gxXfOitYveNTA7L61lR6mhZ8Y/aExsYmHqaKBsSarU0z+6WLrl9C07PQJZaw0uljQ==",
"dependencies": {
"@antv/util": "~2.0.0",
"gl-matrix": "^3.0.0"
}
},
"node_modules/@antv/g6-core/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g6-core/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/g6-element": {
"version": "0.8.24",
"resolved": "https://registry.npmjs.org/@antv/g6-element/-/g6-element-0.8.24.tgz",
"integrity": "sha512-61FXkt9LY+6EOUtSam1iFTOW2AM59sPVcV1BuPj4dXiD0dluLE+R7d8B/94g1tKDw9tsjhfUQGC7hTXscJRJFw==",
"dependencies": {
"@antv/g-base": "^0.5.1",
"@antv/g6-core": "0.8.24",
"@antv/util": "~2.0.5",
"tslib": "^2.6.2"
},
"peerDependencies": {
"@antv/g6": "4.8.24"
}
},
"node_modules/@antv/g6-element/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g6-element/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/g6-pc": {
"version": "0.8.24",
"resolved": "https://registry.npmjs.org/@antv/g6-pc/-/g6-pc-0.8.24.tgz",
"integrity": "sha512-nf0y1lrp8J5DotqRryXd2S/J30COW8spVcLF9gUqywGqQAHfE00Ywkqr+PZBnsfCZXsXCi9o0+CE9NrkWs4SBQ==",
"dependencies": {
"@ant-design/colors": "^4.0.5",
"@antv/algorithm": "^0.1.26",
"@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.8.24",
"@antv/g6-element": "0.8.24",
"@antv/g6-plugin": "0.8.24",
"@antv/hierarchy": "^0.6.10",
"@antv/layout": "^0.3.0",
"@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",
"tslib": "^2.6.2"
}
},
"node_modules/@antv/g6-pc/node_modules/@ant-design/colors": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-4.0.5.tgz",
"integrity": "sha512-3mnuX2prnWOWvpFTS2WH2LoouWlOgtnIpc6IarWN6GOzzLF8dW/U8UctuvIPhoboETehZfJ61XP+CGakBEPJ3Q==",
"dependencies": {
"tinycolor2": "^1.4.1"
}
},
"node_modules/@antv/g6-pc/node_modules/@antv/g-canvas": {
"version": "0.5.17",
"resolved": "https://registry.npmjs.org/@antv/g-canvas/-/g-canvas-0.5.17.tgz",
"integrity": "sha512-sXYJMWTOlb/Ycb6sTKu00LcJqInXJY4t99+kSM40u2OfqrXYmaXDjHR7D2V0roMkbK/QWiWS9UnEidCR1VtMOA==",
"dependencies": {
"@antv/g-base": "^0.5.12",
"@antv/g-math": "^0.1.9",
"@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"
}
},
"node_modules/@antv/g6-pc/node_modules/@antv/g-math": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-0.1.9.tgz",
"integrity": "sha512-KHMSfPfZ5XHM1PZnG42Q2gxXfOitYveNTA7L61lR6mhZ8Y/aExsYmHqaKBsSarU0z+6WLrl9C07PQJZaw0uljQ==",
"dependencies": {
"@antv/util": "~2.0.0",
"gl-matrix": "^3.0.0"
}
},
"node_modules/@antv/g6-pc/node_modules/@antv/g-webgpu": {
"version": "0.7.2",
"resolved": "https://registry.npmjs.org/@antv/g-webgpu/-/g-webgpu-0.7.2.tgz",
"integrity": "sha512-kw+oYGsdvj5qeUfy5DPb/jztZBV+2fmqBd3Vv8NlKatfBmv8AirYX/CCW74AUSdWm99rEiLyxFB1VdRZ6b/wnQ==",
"dependencies": {
"@antv/g-webgpu-core": "^0.7.2",
"@antv/g-webgpu-engine": "^0.7.2",
"gl-matrix": "^3.1.0",
"gl-vec2": "^1.3.0",
"lodash": "^4.17.15"
}
},
"node_modules/@antv/g6-pc/node_modules/@antv/g-webgpu-core": {
"version": "0.7.2",
"resolved": "https://registry.npmjs.org/@antv/g-webgpu-core/-/g-webgpu-core-0.7.2.tgz",
"integrity": "sha512-xUMmop7f3Rs34zFYKXLqHhDR1CQTeDl/7vI7Sn3X/73BqJc3X3HIIRvm83Fg2CjVACaOzw4WeLRXNaOCp9fz9w==",
"dependencies": {
"eventemitter3": "^4.0.0",
"gl-matrix": "^3.1.0",
"lodash": "^4.17.15",
"probe.gl": "^3.1.1"
}
},
"node_modules/@antv/g6-pc/node_modules/@antv/g-webgpu-engine": {
"version": "0.7.2",
"resolved": "https://registry.npmjs.org/@antv/g-webgpu-engine/-/g-webgpu-engine-0.7.2.tgz",
"integrity": "sha512-lx8Y93IW2cnJvdoDRKyMmTdYqSC1pOmF0nyG3PGGyA0NI9vBYVgO0KTF6hkyWjdTWVq7XDZyf/h8CJridLh3lg==",
"dependencies": {
"@antv/g-webgpu-core": "^0.7.2",
"gl-matrix": "^3.1.0",
"lodash": "^4.17.15",
"regl": "^1.3.11"
}
},
"node_modules/@antv/g6-pc/node_modules/@antv/layout": {
"version": "0.3.25",
"resolved": "https://registry.npmjs.org/@antv/layout/-/layout-0.3.25.tgz",
"integrity": "sha512-d29Aw1PXoAavMRZy7iTB9L5rMBeChFEX0BJ9ELP4TI35ySdCu07YbmPo9ju9OH/6sG2/NB3o85Ayxrre3iwX/g==",
"dependencies": {
"@antv/g-webgpu": "0.7.2",
"@antv/graphlib": "^1.0.0",
"@antv/util": "^3.3.2",
"d3-force": "^2.1.1",
"d3-quadtree": "^2.0.0",
"dagre-compound": "^0.0.11",
"ml-matrix": "6.5.0"
}
},
"node_modules/@antv/g6-pc/node_modules/@antv/layout/node_modules/@antv/util": {
"version": "3.3.8",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.8.tgz",
"integrity": "sha512-RO2vmp84adfZn5HVXuNtHr35PRWthw4oCUv0hn9DmEWwOJSeU6NtDCEg9KvU8sH2bJaS3fe/cppNSVy2L8tOaw==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g6-pc/node_modules/@antv/util": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-2.0.17.tgz",
"integrity": "sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==",
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g6-pc/node_modules/d3-dispatch": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-2.0.0.tgz",
"integrity": "sha512-S/m2VsXI7gAti2pBoLClFFTMOO1HTtT0j99AuXLoGFKO6deHDdnv6ZGTxSTTUTgO1zVcv82fCOtDjYK4EECmWA=="
},
"node_modules/@antv/g6-pc/node_modules/d3-force": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/d3-force/-/d3-force-2.1.1.tgz",
"integrity": "sha512-nAuHEzBqMvpFVMf9OX75d00OxvOXdxY+xECIXjW6Gv8BRrXu6gAWbv/9XKrvfJ5i5DCokDW7RYE50LRoK092ew==",
"dependencies": {
"d3-dispatch": "1 - 2",
"d3-quadtree": "1 - 2",
"d3-timer": "1 - 2"
}
},
"node_modules/@antv/g6-pc/node_modules/d3-quadtree": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-2.0.0.tgz",
"integrity": "sha512-b0Ed2t1UUalJpc3qXzKi+cPGxeXRr4KU9YSlocN74aTzp6R/Ud43t79yLLqxHRWZfsvWXmbDWPpoENK1K539xw=="
},
"node_modules/@antv/g6-pc/node_modules/d3-timer": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-2.0.0.tgz",
"integrity": "sha512-TO4VLh0/420Y/9dO3+f9abDEFYeCUr2WZRlxJvbp4HPTQcSylXNiL6yZa9FIUvV1yRiFufl1bszTCLDqv9PWNA=="
},
"node_modules/@antv/g6-pc/node_modules/ml-matrix": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/ml-matrix/-/ml-matrix-6.5.0.tgz",
"integrity": "sha512-sms732Dge+rs5dU4mnjE0oqLWm1WujvR2fr38LgUHRG2cjXjWlO3WJupLYaSz3++2iYr0UrGDK72OAivr3J8dg==",
"dependencies": {
"ml-array-rescale": "^1.3.1"
}
},
"node_modules/@antv/g6-pc/node_modules/tslib": {
"version": "2.6.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ=="
},
"node_modules/@antv/g6-plugin": {
"version": "0.8.24",
"resolved": "https://registry.npmjs.org/@antv/g6-plugin/-/g6-plugin-0.8.24.tgz",
"integrity": "sha512-ZIOnwLTC7SM2bFiJZ3vYFWnkyOCWKqnU96i/fBh1qAoY5slDS3hatenZWEXUtOcqaKw1h+5A5f72MRXqBBVn0g==",
"dependencies": {
"@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": "0.8.24",
"@antv/g6-element": "0.8.24",
"@antv/matrix-util": "^3.1.0-beta.3",
"@antv/path-util": "^2.0.3",
"@antv/scale": "^0.3.4",
"@antv/util": "^2.0.9",
"insert-css": "^2.0.0"
},
"peerDependencies": {
"@antv/g6": "4.8.24"
}
},
"node_modules/@antv/g6-plugin/node_modules/@antv/g-canvas": {
"version": "0.5.17",
"resolved": "https://registry.npmjs.org/@antv/g-canvas/-/g-canvas-0.5.17.tgz",
"integrity": "sha512-sXYJMWTOlb/Ycb6sTKu00LcJqInXJY4t99+kSM40u2OfqrXYmaXDjHR7D2V0roMkbK/QWiWS9UnEidCR1VtMOA==",
"dependencies": {
"@antv/g-base": "^0.5.12",
"@antv/g-math": "^0.1.9",
"@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"
}
},
"node_modules/@antv/g6-plugin/node_modules/@antv/g-math": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-0.1.9.tgz",
"integrity": "sha512-KHMSfPfZ5XHM1PZnG42Q2gxXfOitYveNTA7L61lR6mhZ8Y/aExsYmHqaKBsSarU0z+6WLrl9C07PQJZaw0uljQ==",
"dependencies": {
"@antv/util": "~2.0.0",
"gl-matrix": "^3.0.0"
}
},