package.json 770 B

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