mirror of
https://github.com/antvis/chart-visualization-skills.git
synced 2026-09-14 15:58:00 +08:00
b47f2feae5
* docs: update readme add HTTP Context Service * docs: remove antv s2 skills * docs: add gpt-vis and x6 in readme
50 lines
1.5 KiB
JSON
50 lines
1.5 KiB
JSON
{
|
|
"name": "@antv/chart-visualization-skills",
|
|
"version": "0.1.6",
|
|
"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": "rm -rf dist && npm run build:index && tsc && npm run copy:zvec",
|
|
"build:index": "rm -rf src/.zvec && HF_ENDPOINT=https://hf-mirror.com tsx -e \"import('./src/context.ts').then(async (m) => { const context = m.default ?? m; await context.getContext(); await context.disposeContext(); }).catch((error) => { console.error(error); process.exit(1); })\"",
|
|
"copy:zvec": "cp -R src/.zvec dist/.zvec",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"precommit": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@antv/context": "^0.1.3",
|
|
"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",
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"access": "public"
|
|
}
|
|
}
|