package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@vitejs/plugin-vue",
  3. "version": "5.1.4",
  4. "type": "commonjs",
  5. "license": "MIT",
  6. "author": "Evan You",
  7. "files": [
  8. "dist"
  9. ],
  10. "main": "./dist/index.cjs",
  11. "module": "./dist/index.mjs",
  12. "types": "./dist/index.d.ts",
  13. "exports": {
  14. ".": {
  15. "import": "./dist/index.mjs",
  16. "require": "./dist/index.cjs"
  17. }
  18. },
  19. "engines": {
  20. "node": "^18.0.0 || >=20.0.0"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/vitejs/vite-plugin-vue.git",
  25. "directory": "packages/plugin-vue"
  26. },
  27. "bugs": {
  28. "url": "https://github.com/vitejs/vite-plugin-vue/issues"
  29. },
  30. "homepage": "https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme",
  31. "peerDependencies": {
  32. "vite": "^5.0.0",
  33. "vue": "^3.2.25"
  34. },
  35. "devDependencies": {
  36. "@jridgewell/gen-mapping": "^0.3.5",
  37. "@jridgewell/trace-mapping": "^0.3.25",
  38. "debug": "^4.3.6",
  39. "rollup": "^4.21.3",
  40. "slash": "^5.1.0",
  41. "source-map-js": "^1.2.0",
  42. "vite": "^5.4.3",
  43. "vue": "^3.5.3"
  44. },
  45. "scripts": {
  46. "dev": "unbuild --stub",
  47. "build": "unbuild && pnpm run patch-cjs",
  48. "patch-cjs": "tsx ../../scripts/patchCJS.ts"
  49. }
  50. }