package.json 844 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@vue/compiler-dom",
  3. "version": "3.0.0-alpha.3",
  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.git"
  26. },
  27. "keywords": [
  28. "vue"
  29. ],
  30. "author": "Evan You",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/vuejs/vue/issues"
  34. },
  35. "homepage": "https://github.com/vuejs/vue/tree/dev/packages/compiler-dom#readme",
  36. "dependencies": {
  37. "@vue/compiler-core": "3.0.0-alpha.3"
  38. }
  39. }