package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@superset-ui/plugin-chart-echarts",
  3. "version": "0.20.3",
  4. "description": "Superset Chart - Echarts",
  5. "keywords": [
  6. "superset"
  7. ],
  8. "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-echarts#readme",
  9. "bugs": {
  10. "url": "https://github.com/apache/superset/issues"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/apache/superset.git",
  15. "directory": "superset-frontend/plugins/plugin-chart-echarts"
  16. },
  17. "license": "Apache-2.0",
  18. "author": "Superset",
  19. "sideEffects": false,
  20. "main": "lib/index.js",
  21. "module": "esm/index.js",
  22. "files": [
  23. "esm",
  24. "lib"
  25. ],
  26. "dependencies": {
  27. "@types/react-redux": "^7.1.34",
  28. "d3-array": "^1.2.0",
  29. "dayjs": "^1.11.18",
  30. "lodash": "^4.17.21"
  31. },
  32. "peerDependencies": {
  33. "@apache-superset/core": "*",
  34. "@superset-ui/chart-controls": "*",
  35. "@superset-ui/core": "*",
  36. "echarts": "*",
  37. "memoize-one": "*",
  38. "react": "^17.0.2"
  39. },
  40. "publishConfig": {
  41. "access": "public"
  42. }
  43. }