mirror of
https://github.com/antvis/chart-visualization-skills.git
synced 2026-09-14 15:58:00 +08:00
79513ce84a
* docs: add badge in readme * chore: remove unused line * fix: remove skills from npm and remove path field --------- Co-authored-by: 逍为 <xiaowei.wzw@antgroup.com>
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@antv/chart-visualization-skills",
|
|
"version": "0.1.1",
|
|
"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"
|
|
}
|