-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@antv/chart-visualization-skills",
"version": "0.1.3",
"description": "Chart visualization skills for AntV, can be used in various scenarios such as data analysis, business intelligence, and dashboard development. Skills and CLI are included.",
"type": "commonjs",
"main": "dist/api.js",
"types": "dist/api.d.ts",
"bin": {
"antv": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"antv",
"chart",
"visualization",
"skills",
"cli"
],
"scripts": {
"build": "npm run build:index && tsc && npm run copy:index",
"build:index": "tsx src/scripts/build.ts",
"copy:index": "rm -rf dist/index && cp -R src/index dist/",
"test": "vitest run",
"test:watch": "vitest",
"precommit": "npm run build"
},
"dependencies": {
"commander": "^12.1.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@types/node": "^20.11.0",
"tsx": "^4.21.0",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
},
"author": "AntV AI Team",
"license": "MIT",
"repository": "git@github.com:antvis/chart-visualization-skills.git"
}