package.json 827 B

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