superset/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-chart/package.json
Christine Chambers 466084706d Make connection and color packages peer dependencies (#59)
* Make connection and color packages peer dependencies

- Also updating the version of the color package in the demo package to be the latest

* Addressing PR comments. Only updating the version of the color package in the demo package
2021-11-26 11:44:37 +08:00

43 lines
963 B
JSON

{
"name": "@superset-ui/chart",
"version": "0.7.0",
"description": "SuperChart and related modules",
"sideEffects": false,
"main": "lib/index.js",
"module": "esm/index.js",
"files": [
"esm",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/apache-superset/superset-ui.git"
},
"keywords": [
"superset"
],
"author": "Superset",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/apache-superset/superset-ui/issues"
},
"homepage": "https://github.com/apache-superset/superset-ui#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@superset-ui/core": "^0.7.0",
"prop-types": "^15.6.2",
"react-loadable": "^5.5.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@superset-ui/connection": "^0.7.0",
"react": "^15 || ^16"
},
"peerDependencies": {
"@superset-ui/connection": "^0.7.0",
"react": "^15 || ^16"
}
}