package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "echarts-for-vue",
  3. "version": "1.4.1",
  4. "description": "ECharts wrapper component for Vue 3, 2 and TypeScript",
  5. "main": "dist/echarts-for-vue.js",
  6. "module": "dist/echarts-for-vue.mjs",
  7. "scripts": {
  8. "build:prod": "node scripts/build-prod.js"
  9. },
  10. "author": "Ambit Tsai <ambit_tsai@qq.com>",
  11. "license": "Apache-2.0",
  12. "dependencies": {
  13. "@types/echarts": "^4.9.7"
  14. },
  15. "devDependencies": {
  16. "@rollup/plugin-typescript": "^8.2.1",
  17. "rollup": "^2.27.1",
  18. "rollup-plugin-terser": "^7.0.2",
  19. "tslib": "^2.2.0",
  20. "typescript": "^4.2.4"
  21. },
  22. "peerDependencies": {
  23. "echarts": ">=3",
  24. "vue": ">=2"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/ambit-tsai/echarts-for-vue.git"
  29. },
  30. "homepage": "https://github.com/ambit-tsai/echarts-for-vue#readme",
  31. "bugs": {
  32. "url": "https://github.com/ambit-tsai/echarts-for-vue/issues"
  33. },
  34. "keywords": [
  35. "echarts",
  36. "vue3",
  37. "vue",
  38. "chart",
  39. "typescript",
  40. "ts",
  41. "wrap"
  42. ]
  43. }