electron-builder.json 650 B

12345678910111213141516171819202122232425262728
  1. {
  2. "appId": "vip.raex.trading",
  3. "productName": "RAEX大智慧",
  4. "asar": true,
  5. "directories": {
  6. "output": "release"
  7. },
  8. "files": ["dist"],
  9. "mac": {
  10. "artifactName": "${productName}_${version}.${ext}",
  11. "target": ["dmg"]
  12. },
  13. "win": {
  14. "target": [
  15. {
  16. "target": "nsis",
  17. "arch": ["x64"]
  18. }
  19. ],
  20. "artifactName": "${productName}_${version}.${ext}"
  21. },
  22. "nsis": {
  23. "oneClick": false,
  24. "perMachine": false,
  25. "allowToChangeInstallationDirectory": true,
  26. "deleteAppDataOnUninstall": false
  27. }
  28. }