package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@vitejs/plugin-vue",
  3. "version": "6.0.1",
  4. "type": "module",
  5. "license": "MIT",
  6. "author": "Evan You",
  7. "description": "The official plugin for Vue SFC support in Vite.",
  8. "keywords": [
  9. "vite",
  10. "vite-plugin",
  11. "vue"
  12. ],
  13. "files": [
  14. "dist"
  15. ],
  16. "exports": {
  17. ".": "./dist/index.js",
  18. "./package.json": "./package.json"
  19. },
  20. "engines": {
  21. "node": "^20.19.0 || >=22.12.0"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/vitejs/vite-plugin-vue.git",
  26. "directory": "packages/plugin-vue"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/vitejs/vite-plugin-vue/issues"
  30. },
  31. "homepage": "https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme",
  32. "peerDependencies": {
  33. "vite": "^5.0.0 || ^6.0.0 || ^7.0.0",
  34. "vue": "^3.2.25"
  35. },
  36. "devDependencies": {
  37. "@jridgewell/gen-mapping": "^0.3.12",
  38. "@jridgewell/trace-mapping": "^0.3.29",
  39. "debug": "^4.4.1",
  40. "rollup": "^4.45.1",
  41. "slash": "^5.1.0",
  42. "source-map-js": "^1.2.1",
  43. "tsdown": "^0.13.0",
  44. "vite": "^7.0.5",
  45. "vue": "^3.5.18"
  46. },
  47. "dependencies": {
  48. "@rolldown/pluginutils": "1.0.0-beta.29"
  49. },
  50. "scripts": {
  51. "dev": "tsdown --watch",
  52. "build": "tsdown"
  53. }
  54. }