forked from open-data-plan/g2plot-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
18532 lines (18532 loc) · 677 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": "@opd/g2plot-vue",
"version": "3.6.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@opd/g2plot-vue",
"version": "3.6.7",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {
"core-js": "^3.12.1",
"vue-demi": "^0.14.0"
},
"devDependencies": {
"@antv/g2": "^5.1.0",
"@antv/g2plot": "^2.3.13",
"@babel/cli": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@opd/jest-preset-pangu": "^1.11.6",
"@opd/prettier-config-pangu": "^1.8.7",
"@types/eslint": "^8.2.0",
"@types/lodash": "^4.14.162",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vue/babel-preset-app": "^5.0.1",
"@vue/babel-preset-jsx": "^1.3.0",
"@vue/composition-api": "^1.7.0",
"@vue/test-utils": "^2.0.0-beta.7",
"canvas": "^2.6.1",
"conventional-changelog-cli": "^4.0.0",
"cross-env": "^7.0.2",
"diff-run": "^1.0.4",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.0.0",
"husky": "^8.0.3",
"jest-canvas-mock": "^2.3.0",
"lint-staged": "^14.0.0",
"lodash": "^4.17.20",
"ts-node": "^10.0.0",
"typescript": "^5.0.3",
"vitepress": "^1.0.0-alpha.4",
"vue": "^3.0.2",
"vue2": "npm:vue@2"
},
"peerDependencies": {
"@antv/g2plot": "^2.3.0",
"@babel/runtime": "^7.13.0",
"@vue/composition-api": "^1.7.0",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@algolia/autocomplete-core": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz",
"integrity": "sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==",
"dev": true,
"dependencies": {
"@algolia/autocomplete-plugin-algolia-insights": "1.9.3",
"@algolia/autocomplete-shared": "1.9.3"
}
},
"node_modules/@algolia/autocomplete-plugin-algolia-insights": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz",
"integrity": "sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==",
"dev": true,
"dependencies": {
"@algolia/autocomplete-shared": "1.9.3"
},
"peerDependencies": {
"search-insights": ">= 1 < 3"
}
},
"node_modules/@algolia/autocomplete-preset-algolia": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz",
"integrity": "sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==",
"dev": true,
"dependencies": {
"@algolia/autocomplete-shared": "1.9.3"
},
"peerDependencies": {
"@algolia/client-search": ">= 4.9.1 < 6",
"algoliasearch": ">= 4.9.1 < 6"
}
},
"node_modules/@algolia/autocomplete-shared": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz",
"integrity": "sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==",
"dev": true,
"peerDependencies": {
"@algolia/client-search": ">= 4.9.1 < 6",
"algoliasearch": ">= 4.9.1 < 6"
}
},
"node_modules/@algolia/cache-browser-local-storage": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.19.1.tgz",
"integrity": "sha512-FYAZWcGsFTTaSAwj9Std8UML3Bu8dyWDncM7Ls8g+58UOe4XYdlgzXWbrIgjaguP63pCCbMoExKr61B+ztK3tw==",
"dev": true,
"dependencies": {
"@algolia/cache-common": "4.19.1"
}
},
"node_modules/@algolia/cache-common": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.19.1.tgz",
"integrity": "sha512-XGghi3l0qA38HiqdoUY+wvGyBsGvKZ6U3vTiMBT4hArhP3fOGLXpIINgMiiGjTe4FVlTa5a/7Zf2bwlIHfRqqg==",
"dev": true
},
"node_modules/@algolia/cache-in-memory": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.19.1.tgz",
"integrity": "sha512-+PDWL+XALGvIginigzu8oU6eWw+o76Z8zHbBovWYcrtWOEtinbl7a7UTt3x3lthv+wNuFr/YD1Gf+B+A9V8n5w==",
"dev": true,
"dependencies": {
"@algolia/cache-common": "4.19.1"
}
},
"node_modules/@algolia/client-account": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.19.1.tgz",
"integrity": "sha512-Oy0ritA2k7AMxQ2JwNpfaEcgXEDgeyKu0V7E7xt/ZJRdXfEpZcwp9TOg4TJHC7Ia62gIeT2Y/ynzsxccPw92GA==",
"dev": true,
"dependencies": {
"@algolia/client-common": "4.19.1",
"@algolia/client-search": "4.19.1",
"@algolia/transporter": "4.19.1"
}
},
"node_modules/@algolia/client-analytics": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.19.1.tgz",
"integrity": "sha512-5QCq2zmgdZLIQhHqwl55ZvKVpLM3DNWjFI4T+bHr3rGu23ew2bLO4YtyxaZeChmDb85jUdPDouDlCumGfk6wOg==",
"dev": true,
"dependencies": {
"@algolia/client-common": "4.19.1",
"@algolia/client-search": "4.19.1",
"@algolia/requester-common": "4.19.1",
"@algolia/transporter": "4.19.1"
}
},
"node_modules/@algolia/client-common": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.19.1.tgz",
"integrity": "sha512-3kAIVqTcPrjfS389KQvKzliC559x+BDRxtWamVJt8IVp7LGnjq+aVAXg4Xogkur1MUrScTZ59/AaUd5EdpyXgA==",
"dev": true,
"dependencies": {
"@algolia/requester-common": "4.19.1",
"@algolia/transporter": "4.19.1"
}
},
"node_modules/@algolia/client-personalization": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.19.1.tgz",
"integrity": "sha512-8CWz4/H5FA+krm9HMw2HUQenizC/DxUtsI5oYC0Jxxyce1vsr8cb1aEiSJArQT6IzMynrERif1RVWLac1m36xw==",
"dev": true,
"dependencies": {
"@algolia/client-common": "4.19.1",
"@algolia/requester-common": "4.19.1",
"@algolia/transporter": "4.19.1"
}
},
"node_modules/@algolia/client-search": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.19.1.tgz",
"integrity": "sha512-mBecfMFS4N+yK/p0ZbK53vrZbL6OtWMk8YmnOv1i0LXx4pelY8TFhqKoTit3NPVPwoSNN0vdSN9dTu1xr1XOVw==",
"dev": true,
"dependencies": {
"@algolia/client-common": "4.19.1",
"@algolia/requester-common": "4.19.1",
"@algolia/transporter": "4.19.1"
}
},
"node_modules/@algolia/logger-common": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.19.1.tgz",
"integrity": "sha512-i6pLPZW/+/YXKis8gpmSiNk1lOmYCmRI6+x6d2Qk1OdfvX051nRVdalRbEcVTpSQX6FQAoyeaui0cUfLYW5Elw==",
"dev": true
},
"node_modules/@algolia/logger-console": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.19.1.tgz",
"integrity": "sha512-jj72k9GKb9W0c7TyC3cuZtTr0CngLBLmc8trzZlXdfvQiigpUdvTi1KoWIb2ZMcRBG7Tl8hSb81zEY3zI2RlXg==",
"dev": true,
"dependencies": {
"@algolia/logger-common": "4.19.1"
}
},
"node_modules/@algolia/requester-browser-xhr": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.19.1.tgz",
"integrity": "sha512-09K/+t7lptsweRTueHnSnmPqIxbHMowejAkn9XIcJMLdseS3zl8ObnS5GWea86mu3vy4+8H+ZBKkUN82Zsq/zg==",
"dev": true,
"dependencies": {
"@algolia/requester-common": "4.19.1"
}
},
"node_modules/@algolia/requester-common": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.19.1.tgz",
"integrity": "sha512-BisRkcWVxrDzF1YPhAckmi2CFYK+jdMT60q10d7z3PX+w6fPPukxHRnZwooiTUrzFe50UBmLItGizWHP5bDzVQ==",
"dev": true
},
"node_modules/@algolia/requester-node-http": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.19.1.tgz",
"integrity": "sha512-6DK52DHviBHTG2BK/Vv2GIlEw7i+vxm7ypZW0Z7vybGCNDeWzADx+/TmxjkES2h15+FZOqVf/Ja677gePsVItA==",
"dev": true,
"dependencies": {
"@algolia/requester-common": "4.19.1"
}
},
"node_modules/@algolia/transporter": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.19.1.tgz",
"integrity": "sha512-nkpvPWbpuzxo1flEYqNIbGz7xhfhGOKGAZS7tzC+TELgEmi7z99qRyTfNSUlW7LZmB3ACdnqAo+9A9KFBENviQ==",
"dev": true,
"dependencies": {
"@algolia/cache-common": "4.19.1",
"@algolia/logger-common": "4.19.1",
"@algolia/requester-common": "4.19.1"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz",
"integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==",
"dev": true,
"dependencies": {
"@jridgewell/gen-mapping": "^0.1.0",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@ampproject/remapping/node_modules/@jridgewell/gen-mapping": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz",
"integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==",
"dev": true,
"dependencies": {
"@jridgewell/set-array": "^1.0.0",
"@jridgewell/sourcemap-codec": "^1.4.10"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@antv/adjust": {
"version": "0.2.5",
"resolved": "https://registry.npmjs.org/@antv/adjust/-/adjust-0.2.5.tgz",
"integrity": "sha512-MfWZOkD9CqXRES6MBGRNe27Q577a72EIwyMnE29wIlPliFvJfWwsrONddpGU7lilMpVKecS3WAzOoip3RfPTRQ==",
"dev": true,
"dependencies": {
"@antv/util": "~2.0.0",
"tslib": "^1.10.0"
}
},
"node_modules/@antv/adjust/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
"dev": true
},
"node_modules/@antv/antv-spec": {
"version": "0.1.0-alpha.18",
"resolved": "https://registry.npmjs.org/@antv/antv-spec/-/antv-spec-0.1.0-alpha.18.tgz",
"integrity": "sha512-30IdqLDdJFYZ/jXpaELYQEkwfR6qA0GoZ8+Wcu0ougYi5KPhM6W7OibFjofQUpPtIBIhMpW7zRcxW7gzFJVgvg==",
"dev": true,
"peerDependencies": {
"@antv/g2plot": "^2.3.27",
"@antv/g6": "^4.3.11"
}
},
"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==",
"dev": true,
"dependencies": {
"@antv/color-util": "^2.0.1",
"@antv/scale": "^0.3.0",
"@antv/util": "~2.0.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/ava": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/@antv/ava/-/ava-3.0.7.tgz",
"integrity": "sha512-oRaY/FInTshQB6h4kMAPxXZVwPUTHjuwdX7MRHiQoxQvG320ZqQOvb931GA2QVfnxK08jo4zvgtxX5RdhIq6kw==",
"dev": true,
"dependencies": {
"@antv/antv-spec": "^0.1.0-alpha.18",
"@antv/g2": "^5.0.8",
"@antv/smart-color": "^0.2.1",
"bayesian-changepoint": "^1.0.1",
"heap-js": "^2.1.6",
"lodash": "^4.17.21",
"regression": "^2.0.1",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/color-schema": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@antv/color-schema/-/color-schema-0.2.3.tgz",
"integrity": "sha512-lHkN/MHQ5nnuv2fmo2jy0j9mSIddYClvDLrucH5WdXnZRNW/Y7od4iO2H0caqLoYLC7rAtzrSsoA2MD1RUvIeQ==",
"dev": true,
"dependencies": {
"@types/chroma-js": "^2.1.3"
}
},
"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==",
"dev": true,
"dependencies": {
"@antv/util": "^2.0.9",
"tslib": "^2.0.3"
}
},
"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==",
"dev": true,
"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/coord": {
"version": "0.4.6",
"resolved": "https://registry.npmjs.org/@antv/coord/-/coord-0.4.6.tgz",
"integrity": "sha512-Zu1dJkyPvJ4McUmESWkpjgIf129MsBrZttxf7Bx0rs/N9txGXuj2YZpq1M77mBCWmclxHrcTJU9v1k/iMuIv0A==",
"dev": true,
"dependencies": {
"@antv/scale": "^0.4.12",
"@antv/util": "^2.0.13",
"gl-matrix": "^3.4.3"
}
},
"node_modules/@antv/coord/node_modules/@antv/scale": {
"version": "0.4.12",
"resolved": "https://registry.npmjs.org/@antv/scale/-/scale-0.4.12.tgz",
"integrity": "sha512-7klJjPXUpCwYc7WADh1XBC11DJYrP5fJoNfv4Ks6z7zPkIM7/PTGr+nU48P69nFL3X04Pe7QjVpevdfCqWvhZQ==",
"dev": true,
"dependencies": {
"@antv/util": "^2.0.13",
"color-string": "^1.5.5",
"fecha": "^4.2.1"
}
},
"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==",
"dev": true,
"dependencies": {
"tslib": "^2.0.3"
}
},
"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==",
"dev": true
},
"node_modules/@antv/g": {
"version": "5.18.14",
"resolved": "https://registry.npmjs.org/@antv/g/-/g-5.18.14.tgz",
"integrity": "sha512-y7RX0URkj8DbwAvYE48SjktgOsNSj1oDmn4ShUpltNW85tG8DV8l39JWIioVeMn4k6XQBQbogv0n0r3dE62SPQ==",
"dev": true,
"dependencies": {
"@antv/g-camera-api": "1.2.13",
"@antv/g-dom-mutation-observer-api": "1.2.13",
"@antv/g-lite": "1.2.13",
"@antv/g-web-animations-api": "1.2.13"
}
},
"node_modules/@antv/g-base": {
"version": "0.5.14",
"resolved": "https://registry.npmjs.org/@antv/g-base/-/g-base-0.5.14.tgz",
"integrity": "sha512-Wyx+ddatDdQBjidLHXmV3NgKp1oiyNZNX9gGflaBFDfGgywnvs85bXnKswayFXsFBg5TQ6Goi8SnBufEqwemgg==",
"dev": true,
"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-camera-api": {
"version": "1.2.13",
"resolved": "https://registry.npmjs.org/@antv/g-camera-api/-/g-camera-api-1.2.13.tgz",
"integrity": "sha512-grKT2auGRTm7YzCueP43VNxOhFnlN4KkVaEm2UCGNcu6WIpqoPMmCmCy9FPe7uOqrH+Rwhw1eXPLEczAVaFPkw==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/util": "^3.3.4",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-camera-api/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g-canvas": {
"version": "1.11.16",
"resolved": "https://registry.npmjs.org/@antv/g-canvas/-/g-canvas-1.11.16.tgz",
"integrity": "sha512-ALMkvIUL54ppAr1WUu8yKavVcfRqCmOYgBvYrrTaudeVvdf6VzvDHPzAtYYkt/f/fUZpTi8DgpB/txGryighEw==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/g-plugin-canvas-path-generator": "1.3.13",
"@antv/g-plugin-canvas-picker": "1.10.13",
"@antv/g-plugin-canvas-renderer": "1.9.13",
"@antv/g-plugin-dom-interaction": "1.9.13",
"@antv/g-plugin-html-renderer": "1.9.16",
"@antv/g-plugin-image-loader": "1.3.13",
"@antv/util": "^3.3.4",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-canvas/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g-dom-mutation-observer-api": {
"version": "1.2.13",
"resolved": "https://registry.npmjs.org/@antv/g-dom-mutation-observer-api/-/g-dom-mutation-observer-api-1.2.13.tgz",
"integrity": "sha512-Ca0MKwRwKMlQS24akfYb9wZDQidW0SRPQmi4N/C0cwYj5dYkr9I4W1bBnyu0sZZFbzDeeLvT+9vx7kLKHEOIUw==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13"
}
},
"node_modules/@antv/g-lite": {
"version": "1.2.13",
"resolved": "https://registry.npmjs.org/@antv/g-lite/-/g-lite-1.2.13.tgz",
"integrity": "sha512-UnjyH/tpzjndfD7KxLASknMIJdrJ7O82NrAaN7z3s9REo9d6yb3yv7z38BZ414LiE1QW2T/D1DBOjq+9DI/eEw==",
"dev": true,
"dependencies": {
"@antv/g-math": "2.0.2",
"@antv/util": "^3.3.4",
"d3-color": "^1.4.0",
"eventemitter3": "^5.0.1",
"gl-matrix": "^3.4.3",
"rbush": "^3.0.1",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-lite/node_modules/@antv/g-math": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-2.0.2.tgz",
"integrity": "sha512-uqGU1C+70orjeSUoIzD3TuXjL5dRQCIyjZrBrTmm0FWd6VQJMWHyG5ypuZ2lMiI5MrRajVSE1w+3J4hiNBYSJg==",
"dev": true,
"dependencies": {
"@antv/util": "^3.3.4",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-lite/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g-lite/node_modules/d3-color": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz",
"integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==",
"dev": true
},
"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==",
"dev": true,
"dependencies": {
"@antv/util": "~2.0.0",
"gl-matrix": "^3.0.0"
}
},
"node_modules/@antv/g-plugin-3d": {
"version": "1.9.16",
"resolved": "https://registry.npmjs.org/@antv/g-plugin-3d/-/g-plugin-3d-1.9.16.tgz",
"integrity": "sha512-7mXqL6QhhKiertT1Hc11MfSIWHAeTDW9bC/2tuYyruL3C30ChLSYzqC7ARpDX2T151QmbsSt1E6nJRHS1BuhNw==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/g-plugin-device-renderer": "1.9.16",
"@antv/g-shader-components": "1.8.5",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-canvas-path-generator": {
"version": "1.3.13",
"resolved": "https://registry.npmjs.org/@antv/g-plugin-canvas-path-generator/-/g-plugin-canvas-path-generator-1.3.13.tgz",
"integrity": "sha512-RqjCIRulMZoe1y5MEgOr1705fHQIXhgHgIrHt1hDuTAVesjWXkHkZe0k+Wp42C4ee5UMU/oKUNxtTx4cdI5w9g==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/g-math": "2.0.2",
"@antv/util": "^3.3.4",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-canvas-path-generator/node_modules/@antv/g-math": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-2.0.2.tgz",
"integrity": "sha512-uqGU1C+70orjeSUoIzD3TuXjL5dRQCIyjZrBrTmm0FWd6VQJMWHyG5ypuZ2lMiI5MrRajVSE1w+3J4hiNBYSJg==",
"dev": true,
"dependencies": {
"@antv/util": "^3.3.4",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-canvas-path-generator/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g-plugin-canvas-picker": {
"version": "1.10.13",
"resolved": "https://registry.npmjs.org/@antv/g-plugin-canvas-picker/-/g-plugin-canvas-picker-1.10.13.tgz",
"integrity": "sha512-EFbrIzhKgee76ObroBYpu/ZgolhctESUKB9N+e3yVFlBfnm8c/+4HFuiiEpntKzMpkS7kz/Z20PJHSAZiIVjKg==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/g-math": "2.0.2",
"@antv/g-plugin-canvas-path-generator": "1.3.13",
"@antv/g-plugin-canvas-renderer": "1.9.13",
"@antv/util": "^3.3.4",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-canvas-picker/node_modules/@antv/g-math": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-2.0.2.tgz",
"integrity": "sha512-uqGU1C+70orjeSUoIzD3TuXjL5dRQCIyjZrBrTmm0FWd6VQJMWHyG5ypuZ2lMiI5MrRajVSE1w+3J4hiNBYSJg==",
"dev": true,
"dependencies": {
"@antv/util": "^3.3.4",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-canvas-picker/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g-plugin-canvas-renderer": {
"version": "1.9.13",
"resolved": "https://registry.npmjs.org/@antv/g-plugin-canvas-renderer/-/g-plugin-canvas-renderer-1.9.13.tgz",
"integrity": "sha512-wTbIkHPN4ignXc9epqm03THFzMAygC/4GgrMn8WlyhzbZvd3BWvyhnSO3R/afYIqZwqxuYSEiFqXY1qNqGABtw==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/g-math": "2.0.2",
"@antv/g-plugin-canvas-path-generator": "1.3.13",
"@antv/g-plugin-image-loader": "1.3.13",
"@antv/util": "^3.3.4",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-canvas-renderer/node_modules/@antv/g-math": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-2.0.2.tgz",
"integrity": "sha512-uqGU1C+70orjeSUoIzD3TuXjL5dRQCIyjZrBrTmm0FWd6VQJMWHyG5ypuZ2lMiI5MrRajVSE1w+3J4hiNBYSJg==",
"dev": true,
"dependencies": {
"@antv/util": "^3.3.4",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-canvas-renderer/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g-plugin-device-renderer": {
"version": "1.9.16",
"resolved": "https://registry.npmjs.org/@antv/g-plugin-device-renderer/-/g-plugin-device-renderer-1.9.16.tgz",
"integrity": "sha512-zdPlXZaBi3tw7yjBPGiXdPQgJzmBK6ZJESprGOzxM5iQnW08RhuCX7mjlIiozbCpXpzqkgx7q3tiu/aEpQflmw==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/g-math": "2.0.2",
"@antv/g-plugin-image-loader": "1.3.13",
"@antv/g-shader-components": "1.8.5",
"@antv/util": "^3.3.4",
"@webgpu/types": "^0.1.6",
"earcut": "^2.2.3",
"eventemitter3": "^5.0.1",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-device-renderer/node_modules/@antv/g-math": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@antv/g-math/-/g-math-2.0.2.tgz",
"integrity": "sha512-uqGU1C+70orjeSUoIzD3TuXjL5dRQCIyjZrBrTmm0FWd6VQJMWHyG5ypuZ2lMiI5MrRajVSE1w+3J4hiNBYSJg==",
"dev": true,
"dependencies": {
"@antv/util": "^3.3.4",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-device-renderer/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g-plugin-dom-interaction": {
"version": "1.9.13",
"resolved": "https://registry.npmjs.org/@antv/g-plugin-dom-interaction/-/g-plugin-dom-interaction-1.9.13.tgz",
"integrity": "sha512-StGNQv8wCWlRrQ8tYfTggHCSCmEgAhqDGhgkujYrgT0PqTH7nIbTlnVFvMq4afYiuW+2r5Yh1veTY7hunRJ7+w==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-dragndrop": {
"version": "1.8.13",
"resolved": "https://registry.npmjs.org/@antv/g-plugin-dragndrop/-/g-plugin-dragndrop-1.8.13.tgz",
"integrity": "sha512-rSnMe8VAh86X+suzfqs4Vz0CtOOxXKJoNmG/2T0ohJ4mS4Jcg6iomKz+AzXKZLlc2n4TNnKv9JJYdA9NFo9uZg==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/util": "^3.3.4",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-dragndrop/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g-plugin-html-renderer": {
"version": "1.9.16",
"resolved": "https://registry.npmjs.org/@antv/g-plugin-html-renderer/-/g-plugin-html-renderer-1.9.16.tgz",
"integrity": "sha512-VdD1ahJejRu7ty9yqLvZPJJM67jz9yWSeSG6Yhm6SU/6oBkMgtjqiF55Vu1AZZ2XpeDD9hEibtwx4encjaT1zA==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/util": "^3.3.4",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-html-renderer/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g-plugin-image-loader": {
"version": "1.3.13",
"resolved": "https://registry.npmjs.org/@antv/g-plugin-image-loader/-/g-plugin-image-loader-1.3.13.tgz",
"integrity": "sha512-JIT+bADisGoaAmwa9Zq3S4HgkcyYjdiE8uiVGvjWif6uVplOuzxmLaXycIk7v/QevDhypfy0PhsW7n2D7Rh9BQ==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/util": "^3.3.4",
"gl-matrix": "^3.4.3",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-plugin-image-loader/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g-shader-components": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@antv/g-shader-components/-/g-shader-components-1.8.5.tgz",
"integrity": "sha512-MkVkTQBfA9mJ5jR75XA8yI96jcq4WC+p3VqxMNiiJ4mP7Oqb+oNqKJzxyX7Hfuu6IQ6PC2AOonE27OhR0z/5zg==",
"dev": true
},
"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==",
"dev": true,
"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-web-animations-api": {
"version": "1.2.13",
"resolved": "https://registry.npmjs.org/@antv/g-web-animations-api/-/g-web-animations-api-1.2.13.tgz",
"integrity": "sha512-wrbGfYvdnHxvlMs2Mi176kE7uydwkMjOSi1n0pVmXM5OHNqnRY8CvKX7WF9HfnHBMGHEgFaw7fZRjIkv+Cyzww==",
"dev": true,
"dependencies": {
"@antv/g-lite": "1.2.13",
"@antv/util": "^3.3.4",
"tslib": "^2.5.3"
}
},
"node_modules/@antv/g-web-animations-api/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g2": {
"version": "5.1.5",
"resolved": "https://registry.npmjs.org/@antv/g2/-/g2-5.1.5.tgz",
"integrity": "sha512-5p8qawGisBQHg4W6uivjGGuN3Gx3u3mRp3AR6GJmfnE/BpTSemNT4rOhAY/IJDp4suPRX/t1/BtKIuMiwhcftA==",
"dev": true,
"dependencies": {
"@antv/ava": "^3.0.7",
"@antv/coord": "^0.4.1",
"@antv/event-emitter": "^0.1.3",
"@antv/g": "^5.18.6",
"@antv/g-canvas": "^1.11.5",
"@antv/g-plugin-3d": "^1.9.14",
"@antv/g-plugin-dragndrop": "^1.8.3",
"@antv/gui": "^0.5.0",
"@antv/path-util": "^3.0.1",
"@antv/scale": "^0.4.7",
"@antv/util": "^3.3.2",
"d3-array": "^3.2.2",
"d3-dsv": "^3.0.1",
"d3-force": "^3.0.0",
"d3-format": "^3.1.0",
"d3-geo": "^3.0.1",
"d3-hierarchy": "^3.1.2",
"d3-path": "^3.1.0",
"d3-scale-chromatic": "^3.0.0",
"d3-shape": "^3.1.0",
"d3-voronoi": "^1.1.4",
"flru": "^1.0.2",
"fmin": "^0.0.2",
"pdfast": "^0.2.0"
}
},
"node_modules/@antv/g2/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==",
"dev": true,
"dependencies": {
"gl-matrix": "^3.1.0",
"lodash-es": "^4.17.21",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2/node_modules/@antv/scale": {
"version": "0.4.12",
"resolved": "https://registry.npmjs.org/@antv/scale/-/scale-0.4.12.tgz",
"integrity": "sha512-7klJjPXUpCwYc7WADh1XBC11DJYrP5fJoNfv4Ks6z7zPkIM7/PTGr+nU48P69nFL3X04Pe7QjVpevdfCqWvhZQ==",
"dev": true,
"dependencies": {
"@antv/util": "^2.0.13",
"color-string": "^1.5.5",
"fecha": "^4.2.1"
}
},
"node_modules/@antv/g2/node_modules/@antv/scale/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==",
"dev": true,
"dependencies": {
"csstype": "^3.0.8",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2/node_modules/@antv/util": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@antv/util/-/util-3.3.4.tgz",
"integrity": "sha512-NGRjPCPje8GIC14Ye7sjebamFIjxoZ+mCIqfXz6wD/M6fA9SgJivzmLB3Ry01Wq8PI36oOVv9BwrAGV1JD8vjA==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.3",
"gl-matrix": "^3.3.0",
"tslib": "^2.3.1"
}
},
"node_modules/@antv/g2/node_modules/d3-hierarchy": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz",
"integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==",
"dev": true,
"engines": {
"node": ">=12"
}
},
"node_modules/@antv/g2plot": {
"version": "2.4.31",
"resolved": "https://registry.npmjs.org/@antv/g2plot/-/g2plot-2.4.31.tgz",
"integrity": "sha512-SlWHYVsJgRN7E1Oe5Qk6yWBrSWmctmloknFmklaqe9vEeK+YB9ZLUffZvtAHT10mA2NZ+VjGUhlnMNgR9M1PQg==",
"dev": true,
"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/coord": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@antv/coord/-/coord-0.3.1.tgz",
"integrity": "sha512-rFE94C8Xzbx4xmZnHh2AnlB3Qm1n5x0VT3OROy257IH6Rm4cuzv1+tZaUBATviwZd99S+rOY9telw/+6C9GbRw==",
"dev": true,
"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.14",
"resolved": "https://registry.npmjs.org/@antv/g-canvas/-/g-canvas-0.5.14.tgz",
"integrity": "sha512-IUGLEMIMAUYgaBMT8h3FTmYQYz7sjQkKWwh6Psqx+UPK86fySa+G8fMRrh1EqAL07jVB+GRnn6Ym+3FoFUgeFg==",
"dev": true,
"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==",
"dev": true,
"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==",
"dev": true,
"dependencies": {
"@antv/util": "^2.0.9",
"gl-matrix": "^3.3.0",
"tslib": "^2.0.3"
}
},
"node_modules/@antv/g2plot/node_modules/@antv/g2": {
"version": "4.2.10",
"resolved": "https://registry.npmjs.org/@antv/g2/-/g2-4.2.10.tgz",
"integrity": "sha512-/ZlJ/DFJBCvtEQgE6roxdd6sBml0fZ8ZVfzG+HdjGpA7/ceURb8XkxUcqa0E8NV+e4sFijnaAhBCdUm2whiuyA==",
"dev": true,
"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",