package.json 967 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "vite-plugin-electron",
  3. "version": "0.12.0",
  4. "description": "Electron 🔗 Vite",
  5. "main": "./dist/index.js",
  6. "types": "./dist/index.d.ts",
  7. "exports": {
  8. ".": {
  9. "types": "./dist/index.d.ts",
  10. "import": "./dist/index.mjs",
  11. "require": "./dist/index.js"
  12. },
  13. "./*": "./*"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/electron-vite/vite-plugin-electron.git"
  18. },
  19. "author": "草鞋没号 <308487730@qq.com>",
  20. "license": "MIT",
  21. "scripts": {
  22. "dev": "vite build --watch",
  23. "build": "vite build",
  24. "types": "tsc --emitDeclarationOnly",
  25. "prepublishOnly": "npm run test && npm run build",
  26. "test": "vitest run"
  27. },
  28. "devDependencies": {
  29. "rollup": "^3.17.2",
  30. "typescript": "^4.9.5",
  31. "vite": "^4.1.4",
  32. "vitest": "^0.28.5"
  33. },
  34. "files": [
  35. "dist",
  36. "electron-env.d.ts"
  37. ],
  38. "keywords": [
  39. "vite",
  40. "plugin",
  41. "electron",
  42. "renderer"
  43. ]
  44. }