@chart-plugins/superset-indicator-chart
Version:
Indicator chart plugin for Apache Superset
64 lines (63 loc) • 1.71 kB
JSON
{
"name": "@chart-plugins/superset-indicator-chart",
"version": "4.1.11",
"description": "Indicator chart plugin for Apache Superset",
"main": "lib/index.js",
"module": "esm/index.js",
"files": [
"esm",
"lib"
],
"scripts": {
"build": "npm run build-cjs && npm run build-esm && npm run ts-types",
"build-cjs": "babel src --extensions \".ts,.tsx,.js,.jsx\" --copy-files --out-dir lib",
"build-clean": "npm run clean && npm run build",
"build-esm": "BABEL_OUTPUT=esm babel src --extensions \".ts,.tsx,.js,.jsx\" --copy-files --out-dir esm",
"dev": "BABEL_OUTPUT=esm babel src --extensions \".ts,.tsx,.js,.jsx\" --watch --copy-files --out-dir esm",
"prebuild": "rimraf {lib,esm,tsconfig.tsbuildinfo}",
"ts-types": "tsc --build",
"test": "jest"
},
"keywords": [
"superset",
"superset-ui",
"indicator",
"chart",
"plugin"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime-corejs3": "^7.22.6",
"antd": "4.10.3",
"react-icons": "^4.2.0",
"recharts": "^1.8.5"
},
"devDependencies": {
"@airbnb/config-babel": "^3.1.0",
"@types/react": "^16.14.0",
"@types/react-dom": "^16.9.0",
"@types/recharts": "^1.8.24",
"babel-loader": "^9.1.0",
"typescript": "^4.9.0",
"react-loadable": "^5.5.0"
},
"peerDependencies": {
"@superset-ui/chart-controls": "*",
"@superset-ui/core": "*",
"memoize-one": "*",
"react": "^16.13.1 <17",
"react-dom": "^16.13.1 <17"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"directories": {
"lib": "lib"
}
}