CoolFace
Apppublic

Leon4gr45/builder

sourceHugging Facemitupdated 2d agoView on Hugging Face
0likes
electron-builder.yml65 linesDownload Raw Back to desktop
1appId: com.oswstudio.app2productName: OSW Studio3copyright: Copyright © 2026 OSW Studio4 5directories:6  output: dist7  app: app8 9extraMetadata:10  main: main.js11  author:12    name: OSW Studio13    email: otst@oswstudio.com14 15asar: false16 17files:18  - "**/*"19  - "!**/.env"20  - "!node_modules/@img/sharp-*/**"21  - "!node_modules/sharp/**"22 23mac:24  target:25    - target: dmg26      arch:27        - universal28  icon: electron/icons/icon.icns29  category: public.app-category.developer-tools30  darkModeSupport: true31  x64ArchFiles: "**/*.node"32 33dmg:34  artifactName: OSW-Studio-${version}-${arch}.${ext}35 36win:37  target:38    - nsis39  icon: electron/icons/icon.png40 41nsis:42  oneClick: false43  allowToChangeInstallationDirectory: true44  # Explicit, space-free name so the built file, the uploaded GitHub asset, and45  # the generated latest.yml all agree. The default ("OSW Studio Setup x.y.z.exe")46  # is sanitized differently by electron-builder (spaces to hyphens in latest.yml)47  # and by GitHub (spaces to dots in the asset name), which broke the Windows48  # auto-updater with a 404 on the download URL.49  artifactName: OSW-Studio-Setup-${version}.${ext}50 51appImage:52  artifactName: OSW-Studio-${version}-${arch}.${ext}53 54linux:55  target:56    - AppImage57    - deb58  icon: electron/icons/icon.png59  category: Development60 61publish:62  provider: github63  owner: o-stahl64  repo: osw-studio65