feat: initial Club Launcher MVP

This commit is contained in:
2026-05-30 19:27:24 +00:00
commit 2ef7e2a92d
27 changed files with 8139 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
module.exports = {
appId: 'ru.club.launcher',
productName: 'ClubLauncher',
executableName: 'ClubLauncher',
copyright: 'Copyright © 2026',
directories: {
output: 'dist-build',
buildResources: 'resources',
},
files: [
'out/**/*',
],
win: {
target: [
{ target: 'msi', arch: ['x64'] },
{ target: 'nsis', arch: ['x64'] },
],
forceCodeSigning: false,
signingHashAlgorithms: null,
sign: null,
},
msi: {
createDesktopShortcut: true,
createStartMenuShortcut: true,
shortcutName: 'Club Launcher',
},
nsis: {
oneClick: false,
allowToChangeInstallationDirectory: true,
installerIcon: 'resources/icon.ico',
uninstallerIcon: 'resources/icon.ico',
installerHeaderIcon: 'resources/icon.ico',
createDesktopShortcut: true,
createStartMenuShortcut: true,
shortcutName: 'Club Launcher',
},
}