package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "@antv/x6-vue-shape",
  3. "version": "2.1.2",
  4. "description": "X6 shape for rendering vue components.",
  5. "main": "lib/index.js",
  6. "module": "es/index.js",
  7. "unpkg": "dist/index.js",
  8. "jsdelivr": "dist/index.js",
  9. "types": "lib/index.d.ts",
  10. "files": [
  11. "dist",
  12. "es",
  13. "lib",
  14. "src"
  15. ],
  16. "keywords": [
  17. "shape",
  18. "vue",
  19. "render",
  20. "x6",
  21. "antv"
  22. ],
  23. "dependencies": {
  24. "vue-demi": "latest"
  25. },
  26. "peerDependencies": {
  27. "@antv/x6": "^2.x",
  28. "@vue/composition-api": "^1.0.0-rc.1",
  29. "vue": "^2.0.0 || >=3.0.0"
  30. },
  31. "peerDependenciesMeta": {
  32. "@vue/composition-api": {
  33. "optional": true
  34. }
  35. },
  36. "devDependencies": {
  37. "@antv/x6": "^2.x",
  38. "vue": "^3.0.0"
  39. },
  40. "author": {
  41. "name": "bubkoo",
  42. "email": "bubkoo.wy@gmail.com"
  43. },
  44. "license": "MIT",
  45. "homepage": "https://x6.antv.antgroup.com/tutorial/intermediate/vue",
  46. "bugs": {
  47. "url": "https://github.com/antvis/x6/issues"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": "https://github.com/antvis/x6.git",
  52. "directory": "packages/x6-vue-shape"
  53. },
  54. "publishConfig": {
  55. "access": "public",
  56. "registry": "https://registry.npmjs.org"
  57. },
  58. "scripts": {
  59. "clean:turbo": "rss",
  60. "clean:build": "rss",
  61. "clean:coverage": "rss",
  62. "clean": "rss",
  63. "build:esm": "rss",
  64. "build:cjs": "rss",
  65. "build:umd": "rss",
  66. "build:dev": "rss",
  67. "build:watch": "rss",
  68. "build:watch:esm": "rss",
  69. "build:watch:cjs": "rss",
  70. "build": "rss",
  71. "prebuild": "rss",
  72. "test": "rss",
  73. "coveralls": "rss",
  74. "pretest": "rss"
  75. }
  76. }