package.json 949 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@vue/runtime-vapor",
  3. "version": "3.0.0-vapor",
  4. "description": "@vue/runtime-vapor",
  5. "main": "index.js",
  6. "module": "dist/runtime-vapor.esm-bundler.js",
  7. "types": "dist/runtime-vapor.d.ts",
  8. "unpkg": "dist/runtime-vapor.global.js",
  9. "files": [
  10. "index.js",
  11. "dist"
  12. ],
  13. "sideEffects": false,
  14. "buildOptions": {
  15. "name": "VueRuntimeVapor",
  16. "formats": [
  17. "esm-bundler"
  18. ]
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/vuejs/core.git",
  23. "directory": "packages/runtime-vapor"
  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/dev/packages/runtime-vapor#readme",
  34. "dependencies": {
  35. "@vue/shared": "workspace:*",
  36. "@vue/reactivity": "workspace:*"
  37. },
  38. "peerDependencies": {
  39. "@vue/runtime-dom": "workspace:*"
  40. }
  41. }