package.json 951 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@vue/compiler-dom",
  3. "version": "3.0.0-beta.14",
  4. "description": "@vue/compiler-dom",
  5. "main": "index.js",
  6. "module": "dist/compiler-dom.esm-bundler.js",
  7. "types": "dist/compiler-dom.d.ts",
  8. "unpkg": "dist/compiler-dom/global.js",
  9. "jsdelivr": "dist/compiler-dom/global.js",
  10. "files": [
  11. "index.js",
  12. "dist"
  13. ],
  14. "sideEffects": false,
  15. "buildOptions": {
  16. "name": "VueCompilerDOM",
  17. "formats": [
  18. "esm-bundler",
  19. "esm-browser",
  20. "cjs",
  21. "global"
  22. ]
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/vuejs/vue-next.git"
  27. },
  28. "keywords": [
  29. "vue"
  30. ],
  31. "author": "Evan You",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/vuejs/vue-next/issues"
  35. },
  36. "homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-dom#readme",
  37. "dependencies": {
  38. "@vue/shared": "3.0.0-beta.14",
  39. "@vue/compiler-core": "3.0.0-beta.14"
  40. }
  41. }