package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@vitejs/plugin-vue",
  3. "version": "6.0.6",
  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.21.7",
  44. "vite": "^8.0.5",
  45. "vue": "^3.5.32"
  46. },
  47. "dependencies": {
  48. "@rolldown/pluginutils": "1.0.0-rc.13"
  49. },
  50. "compatiblePackages": {
  51. "schemaVersion": 1,
  52. "rolldown": {
  53. "type": "incompatible",
  54. "reason": "Uses Vite-specific APIs"
  55. },
  56. "rollup": {
  57. "type": "incompatible",
  58. "reason": "Uses Vite-specific APIs"
  59. }
  60. },
  61. "scripts": {
  62. "dev": "tsdown --watch",
  63. "build": "tsdown"
  64. }
  65. }