package.json 995 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@vue/compiler-dom",
  3. "version": "3.0.5",
  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/compiler-dom.global.js",
  9. "jsdelivr": "dist/compiler-dom/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. "directory": "packages/compiler-dom"
  28. },
  29. "keywords": [
  30. "vue"
  31. ],
  32. "author": "Evan You",
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/vuejs/vue-next/issues"
  36. },
  37. "homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-dom#readme",
  38. "dependencies": {
  39. "@vue/shared": "3.0.5",
  40. "@vue/compiler-core": "3.0.5"
  41. }
  42. }