electron-builder.json 518 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "appId": "zskk.dros",
  3. "productName": "dros",
  4. "electronVersion": "36.2.1",
  5. "files": ["dist/h5/**/*", "main.js"],
  6. "win": {
  7. "target": [
  8. {
  9. "target": "portable",
  10. "arch": ["x64", "ia32"]
  11. }
  12. ]
  13. },
  14. "mac": {
  15. "target": [
  16. {
  17. "target": "dmg",
  18. "arch": ["x64", "arm64"]
  19. }
  20. ]
  21. },
  22. "linux": {
  23. "target": [
  24. {
  25. "target": "AppImage",
  26. "arch": ["arm64"]
  27. }
  28. ]
  29. },
  30. "directories": {
  31. "output": "dist/electron"
  32. }
  33. }