package.json 824 B

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