before restructering project

This commit is contained in:
Robert Nasarek 2022-09-08 15:50:11 +02:00
parent 99adc9c445
commit 9605a5b972
22 changed files with 733 additions and 210 deletions

32
electron-builder.json Normal file
View file

@ -0,0 +1,32 @@
{
"appId": "org.nasarek.marvin",
"win": {
"target": "NSIS",
"icon": "marvin256x256.ico"
},
"nsis": {
"oneClick": false,
"installerIcon": "marvin256x256.ico",
"uninstallerIcon": "marvin256x256.ico",
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": "deb",
"category": "Utility",
"icon": "marvin256x256.png"
},
"files": [
"*.js",
"**/*",
"./dist/bundle.css",
"./dist/index.html",
"./dist/main.js",
"./dist/main.js.LICENSE.txt",
"node_modules"
],
"extraResources": [{
"from": "resources/files",
"to": "files"
}
]
}