Launcher/electron-builder.json
Shadowner dee2b9a636 Refactoring Repository architecture + POC svelte
Only the interface is in state of work, there is no logic actually.
2023-03-11 17:12:38 +01:00

29 lines
617 B
JSON

{
"productName": "Minecraft Launcher",
"appId": "electron.minecraft.launcher",
"copyright": "Copyright © 2023 ${author}",
"win": {
"target": ["nsis"]
},
"mac": {
"target": ["dmg"],
"category": "productivity",
"type": "distribution",
"hardenedRuntime": "true"
},
"linux": {
"target": ["AppImage", "snap"],
"category": "productivity"
},
"files": ["./build/**/*", "./node_modules/**/*", "./package.json"],
"publish": [
{
"provider": "github",
"owner": "Daniel Scalzi",
"contributers": ["Shadowner"],
"repo": "minecraftLauncher"
}
]
}