package.json 1.2 KB

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