package.json 901 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@vue/compiler-dom",
  3. "version": "3.0.0-alpha.10",
  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. "files": [
  10. "index.js",
  11. "dist"
  12. ],
  13. "sideEffects": false,
  14. "buildOptions": {
  15. "name": "VueCompilerDOM",
  16. "formats": [
  17. "esm-bundler",
  18. "cjs",
  19. "global",
  20. "esm"
  21. ]
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/vuejs/vue-next.git"
  26. },
  27. "keywords": [
  28. "vue"
  29. ],
  30. "author": "Evan You",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/vuejs/vue-next/issues"
  34. },
  35. "homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-dom#readme",
  36. "dependencies": {
  37. "@vue/shared": "3.0.0-alpha.10",
  38. "@vue/compiler-core": "3.0.0-alpha.10"
  39. }
  40. }