electron-builder.json 743 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "appId": "zskk.dros",
  3. "productName": "dros",
  4. "electronVersion": "36.2.1",
  5. "asar": true,
  6. "compression": "store",
  7. "files": ["main.js", "src/log/**/*", "!node_modules/**/*"],
  8. "extraFiles": [
  9. {
  10. "from": "dist/h5",
  11. "to": "h5",
  12. "filter": ["**/*"]
  13. }
  14. ],
  15. "win": {
  16. "signAndEditExecutable": false,
  17. "forceCodeSigning": false,
  18. "target": [
  19. {
  20. "target": "portable",
  21. "arch": ["x64"]
  22. }
  23. ]
  24. },
  25. "mac": {
  26. "target": [
  27. {
  28. "target": "dmg",
  29. "arch": ["x64", "arm64"]
  30. }
  31. ]
  32. },
  33. "linux": {
  34. "target": [
  35. {
  36. "target": "AppImage",
  37. "arch": ["arm64"]
  38. }
  39. ]
  40. },
  41. "directories": {
  42. "output": "dist/electron"
  43. }
  44. }