package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@vitejs/plugin-vue",
  3. "version": "6.0.7",
  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.mjs",
  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 || ^8.0.0",
  34. "vue": "^3.2.25"
  35. },
  36. "devDependencies": {
  37. "@babel/types": "^7.29.0",
  38. "@jridgewell/gen-mapping": "^0.3.13",
  39. "@jridgewell/trace-mapping": "^0.3.31",
  40. "obug": "^2.1.1",
  41. "slash": "^5.1.0",
  42. "source-map-js": "^1.2.1",
  43. "tsdown": "^0.22.0",
  44. "unrun": "^0.3.0",
  45. "vite": "^8.0.13",
  46. "vue": "^3.5.34"
  47. },
  48. "dependencies": {
  49. "@rolldown/pluginutils": "^1.0.1"
  50. },
  51. "compatiblePackages": {
  52. "schemaVersion": 1,
  53. "rolldown": {
  54. "type": "incompatible",
  55. "reason": "Uses Vite-specific APIs"
  56. },
  57. "rollup": {
  58. "type": "incompatible",
  59. "reason": "Uses Vite-specific APIs"
  60. }
  61. },
  62. "scripts": {
  63. "dev": "tsdown --watch",
  64. "build": "tsdown"
  65. }
  66. }