package.json 675 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "@vue/runtime-core",
  3. "version": "3.0.0-alpha.1",
  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. "jsx.d.ts"
  11. ],
  12. "types": "dist/runtime-core.d.ts",
  13. "sideEffects": false,
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/vuejs/vue.git"
  17. },
  18. "keywords": [
  19. "vue"
  20. ],
  21. "author": "Evan You",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/vuejs/vue/issues"
  25. },
  26. "homepage": "https://github.com/vuejs/vue/tree/dev/packages/runtime-core#readme",
  27. "dependencies": {
  28. "@vue/reactivity": "3.0.0-alpha.1"
  29. }
  30. }