freezerpc/package.json

64 lines
1.3 KiB
JSON
Raw Normal View History

2020-08-28 23:06:19 +02:00
{
"name": "freezer",
"private": true,
2021-02-07 15:20:15 +01:00
"version": "1.1.16",
2020-08-28 23:06:19 +02:00
"description": "",
"scripts": {
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"build": "cd app && npm i && cd client && npm i && npm run build && cd .. && cd .. && npm run dist"
},
"license": "ISC",
"devDependencies": {
"electron": "^9.2.1",
"electron-builder": "^22.8.0"
},
"build": {
"appId": "com.exttex.freezer",
"productName": "Freezer",
2020-08-28 23:06:19 +02:00
"extraResources": [
{
"from": "app/assets/**",
"to": "assets/"
}
],
"files": [
"**/*",
"!app/client/",
"app/client/dist/**"
],
"win": {
"target": [
"portable",
"nsis"
2020-08-28 23:06:19 +02:00
],
"icon": "build/icon.ico",
"asarUnpack": [
"app/node_modules/nodeezcryptor/**"
]
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowElevation": false,
"allowToChangeInstallationDirectory": false
},
2020-08-28 23:06:19 +02:00
"linux": {
"target": [
"AppImage"
],
"category": "audio",
"icon": "build/iconset"
},
"appImage": {
"desktop": {
"X-AppImage-Name": "Freezer",
"Name": "Freezer",
"Type": "Application",
"Categories": "AudioVideo"
}
2020-08-28 23:06:19 +02:00
}
}
}