electron-builder-simple.json 770 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "appId": "com.your-app-name.app",
  3. "productName": "Your App Name",
  4. "directories": {
  5. "output": "electron-build"
  6. },
  7. "files": [
  8. "dist/**/*",
  9. "electron/**/*"
  10. ],
  11. "win": {
  12. "target": [
  13. {
  14. "target": "nsis",
  15. "arch": [
  16. "x64"
  17. ]
  18. }
  19. ]
  20. },
  21. "nsis": {
  22. "oneClick": false,
  23. "allowToChangeInstallationDirectory": true,
  24. "createDesktopShortcut": true,
  25. "createStartMenuShortcut": true,
  26. "shortcutName": "Your App Name"
  27. },
  28. "asar": true,
  29. "forceCodeSigning": false,
  30. "npmRebuild": false,
  31. "buildDependenciesFromSource": true,
  32. "linux": {
  33. "target": ["AppImage"],
  34. "category": "Office"
  35. },
  36. "mac": {
  37. "target": ["dmg"],
  38. "category": "public.app-category.productivity"
  39. }
  40. }