blob: ae740421f66d1d2b15425ca47e82d74b005b2eca [file]
{
"name": "@echarts-x/custom-$CUSTOM_SERIES_KEBAB_NAME$",
"version": "1.0.0-beta.0",
"description": "Custom $CUSTOM_SERIES_NAME$ series for Apache ECharts",
"main": "dist/$CUSTOM_SERIES_KEBAB_NAME$.js",
"module": "dist/$CUSTOM_SERIES_KEBAB_NAME$.esm.mjs",
"exports": {
".": {
"types": "./dist/$CUSTOM_SERIES_KEBAB_NAME$.d.ts",
"import": "./dist/$CUSTOM_SERIES_KEBAB_NAME$.esm.mjs",
"require": "./dist/$CUSTOM_SERIES_KEBAB_NAME$.js"
}
},
"types": "dist/$CUSTOM_SERIES_KEBAB_NAME$.d.ts",
"keywords": [
"echarts",
"apache-echarts",
"data-visualization",
"chart",
"dataviz"
],
"author": "",
"license": "Apache-2.0",
"homepage": "https://github.com/apache/echarts-custom-series/tree/main/custom-series/$CUSTOM_SERIES_NAME$",
"repository": {
"type": "git",
"url": "git+https://github.com/apache/echarts-custom-series.git"
},
"scripts": {
"test:browser": "npx http-server . -p 8088 -o examples/index.html",
"test:ssr": "node examples/ssr.js",
"test": "npm run test:ssr"
},
"devDependencies": {
"echarts": "^6.0.0",
"typescript": "^5.5.4"
},
"peerDependencies": {
"echarts": "^6.0.0"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
}
}