package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@superset-ui/plugin-chart-cartodiagram",
  3. "version": "0.0.1",
  4. "description": "An OpenLayers map that displays charts for single features.",
  5. "sideEffects": false,
  6. "main": "lib/index.js",
  7. "module": "esm/index.js",
  8. "files": [
  9. "esm",
  10. "lib"
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/apache-superset/superset-ui.git"
  15. },
  16. "keywords": [
  17. "superset"
  18. ],
  19. "license": "Apache-2.0",
  20. "bugs": {
  21. "url": "https://github.com/apache-superset/superset-ui/issues"
  22. },
  23. "homepage": "https://github.com/apache-superset/superset-ui#readme",
  24. "contributors": [
  25. "terrestris GmbH & Co. KG <info@terrestris.de> (https://www.terrestris.de)",
  26. "meggsimum - Büro für Geoinformatik <info@meggsimum.de> (https://meggsimum.de)"
  27. ],
  28. "publishConfig": {
  29. "access": "public"
  30. },
  31. "dependencies": {
  32. "@types/geojson": "^7946.0.10",
  33. "geojson": "^0.5.0",
  34. "lodash": "^4.17.21"
  35. },
  36. "peerDependencies": {
  37. "@ant-design/icons": "^5.2.6",
  38. "@reduxjs/toolkit": "*",
  39. "@superset-ui/chart-controls": "*",
  40. "@superset-ui/core": "*",
  41. "@types/react-redux": "*",
  42. "geostyler": "^14.1.3",
  43. "geostyler-data": "^1.0.0",
  44. "geostyler-openlayers-parser": "^4.0.0",
  45. "geostyler-style": "^7.2.0",
  46. "geostyler-wfs-parser": "^2.0.0",
  47. "ol": "^7.1.0",
  48. "polished": "*",
  49. "react": "^17.0.2",
  50. "react-dom": "^17.0.2"
  51. }
  52. }