package.json 740 B

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