package.json 925 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@vue/runtime-dom",
  3. "version": "3.3.4",
  4. "description": "@vue/runtime-dom",
  5. "main": "index.js",
  6. "module": "dist/runtime-dom.esm-bundler.js",
  7. "types": "dist/runtime-dom.d.ts",
  8. "unpkg": "dist/runtime-dom.global.js",
  9. "files": [
  10. "index.js",
  11. "dist"
  12. ],
  13. "sideEffects": false,
  14. "buildOptions": {
  15. "name": "VueRuntimeDOM",
  16. "formats": [
  17. "esm-bundler",
  18. "esm-browser",
  19. "cjs",
  20. "global"
  21. ]
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/vuejs/core.git",
  26. "directory": "packages/runtime-dom"
  27. },
  28. "keywords": [
  29. "vue"
  30. ],
  31. "author": "Evan You",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/vuejs/core/issues"
  35. },
  36. "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-dom#readme",
  37. "dependencies": {
  38. "@vue/shared": "3.3.4",
  39. "@vue/runtime-core": "3.3.4",
  40. "csstype": "^3.1.1"
  41. }
  42. }