app/electron-builder.json

125 lines
2.7 KiB
JSON
Raw Normal View History

2018-09-18 03:39:53 +00:00
{
"appId": "com.loafle.overflow.scanner",
2018-10-03 09:27:37 +00:00
"productName": "overFlow-NetworkScanner",
2018-09-27 07:57:49 +00:00
"copyright": "Copyright © 2016 LOAFLE",
2018-10-03 11:57:26 +00:00
"extraMetadata": {
"name": "overflow-network-scanner"
},
2018-10-03 17:20:12 +00:00
"asar": false,
2018-10-02 01:32:32 +00:00
"compression": "normal",
"npmRebuild": false,
"npmSkipBuildFromSource": false,
2018-10-03 09:27:37 +00:00
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
2018-09-26 14:20:09 +00:00
"directories": {
2018-10-02 11:33:17 +00:00
"buildResources": "./config/build/",
2018-09-28 05:28:29 +00:00
"output": "./build/package"
2018-09-26 14:20:09 +00:00
},
2018-09-18 05:58:08 +00:00
"files": [
2018-10-03 09:27:37 +00:00
"packages.json",
2018-09-28 05:28:29 +00:00
{
2018-10-04 05:43:18 +00:00
"filter": [
"**/*",
"!*.ts",
"!*.scss",
"!yarn.lock"
],
2018-10-02 08:54:45 +00:00
"from": "./build/dist/",
"to": "."
},
2018-10-03 09:27:37 +00:00
{
2018-10-04 05:43:18 +00:00
"filter": [
"**/*"
],
2018-10-03 09:27:37 +00:00
"from": "config/build/${os}/icon/",
"to": "./assets/image/icon/"
}
2018-10-02 01:32:32 +00:00
],
2018-10-03 09:27:37 +00:00
"extraResources": [
2018-10-02 01:32:32 +00:00
{
"from": "config/_database.sqlite",
"to": "./bin/database.sqlite"
}
2018-09-18 05:58:08 +00:00
],
2018-09-18 03:39:53 +00:00
"linux": {
"target": [
{
"target": "deb",
2018-10-04 05:43:18 +00:00
"arch": [
"ia32",
"x64"
]
2018-09-18 03:39:53 +00:00
}
],
2018-10-03 09:27:37 +00:00
"category": "Network;Monitor;",
"synopsis": "The network scanner from LOAFLE",
2018-10-03 11:57:26 +00:00
"icon": "config/build/linux/icon/",
"extraResources": [
{
"from": "config/build/${os}/bin/probe-${os}-${arch}",
"to": "./bin/probe"
}
2018-10-03 12:11:11 +00:00
],
"desktop": {
2018-10-03 12:40:36 +00:00
"StartupWMClass": "overflow-network-scanner"
2018-10-03 12:11:11 +00:00
}
2018-09-18 03:39:53 +00:00
},
2018-09-26 14:20:09 +00:00
"deb": {
2018-10-04 05:43:18 +00:00
"depends": [
"libpcap0.8"
],
2018-10-03 09:27:37 +00:00
"afterInstall": "config/build/linux/debian/after-install.tpl"
2018-09-26 14:20:09 +00:00
},
2018-09-18 03:39:53 +00:00
"mac": {
2018-10-04 05:43:18 +00:00
"target": [
"pkg"
],
2018-09-18 03:39:53 +00:00
"category": "public.app-category.utilities",
2018-09-18 05:58:08 +00:00
"minimumSystemVersion": "10.12.0",
2018-10-03 11:57:26 +00:00
"icon": "config/build/mac/icon/overflow_1024.icns",
"extraResources": [
{
2018-10-04 05:59:36 +00:00
"from": "config/build/mac/bin/probe-${os}-${arch}",
2018-10-03 11:57:26 +00:00
"to": "./bin/probe"
2018-10-04 05:59:36 +00:00
},
{
"filter": [
"**/*"
],
"from": "config/build/mac/ChmodBPF",
"to": "./ChmodBPF"
2018-10-03 11:57:26 +00:00
}
]
2018-09-18 03:39:53 +00:00
},
2018-10-04 02:52:41 +00:00
"pkg": {
2018-10-04 04:02:52 +00:00
"scripts": "mac/pkg/scripts/"
2018-09-18 05:58:08 +00:00
},
2018-09-26 14:20:09 +00:00
"win": {
"target": [
{
"target": "nsis",
2018-10-04 05:43:18 +00:00
"arch": [
"x64",
"ia32"
]
2018-09-26 14:20:09 +00:00
}
],
"legalTrademarks": "overFlow",
"publisherName": "LOAFLE",
2018-10-03 11:57:26 +00:00
"icon": "config/build/windows/icon/overflow_256.ico",
"extraResources": [
{
"from": "config/build/${os}/bin/probe-${os}-${arch}.exe",
"to": "./bin/probe.exe"
}
]
2018-09-18 05:58:08 +00:00
},
2018-09-26 14:20:09 +00:00
"nsis": {
"oneClick": false,
"perMachine": true,
2018-10-03 09:27:37 +00:00
"allowToChangeInstallationDirectory": false,
2018-10-04 05:43:18 +00:00
"installerIcon": "windows/icon/overflow_256.ico",
"uninstallerIcon": "windows/icon/overflow_256.ico",
2018-09-26 14:20:09 +00:00
"include": "config/build/windows/nsis/installer.nsh",
"menuCategory": "overFlow"
2018-09-18 03:39:53 +00:00
}
2018-10-04 05:43:18 +00:00
}