package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@vue/runtime-core",
  3. "version": "3.4.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. "exports": {
  13. ".": {
  14. "types": "./dist/runtime-core.d.ts",
  15. "node": {
  16. "production": "./dist/runtime-core.cjs.prod.js",
  17. "development": "./dist/runtime-core.cjs.js",
  18. "default": "./index.js"
  19. },
  20. "import": "./dist/runtime-core.esm-bundler.js",
  21. "require": "./index.js"
  22. },
  23. "./*": "./*"
  24. },
  25. "buildOptions": {
  26. "name": "VueRuntimeCore",
  27. "formats": [
  28. "esm-bundler",
  29. "cjs"
  30. ]
  31. },
  32. "sideEffects": false,
  33. "repository": {
  34. "type": "git",
  35. "url": "git+https://github.com/vuejs/core.git",
  36. "directory": "packages/runtime-core"
  37. },
  38. "keywords": [
  39. "vue"
  40. ],
  41. "author": "Evan You",
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/vuejs/core/issues"
  45. },
  46. "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
  47. "dependencies": {
  48. "@vue/shared": "workspace:*",
  49. "@vue/reactivity": "workspace:*"
  50. }
  51. }