next-ucap-messenger/electron-builder.json

84 lines
1.9 KiB
JSON
Raw Normal View History

2019-09-18 06:02:21 +00:00
{
2019-12-30 08:21:26 +00:00
"appId": "com.lgucap.dstalk",
"productName": "DS Talk",
2019-09-18 06:02:21 +00:00
"asar": true,
2019-12-30 08:21:26 +00:00
"extraMetadata": {
"name": "DS Talk"
},
"directories": {
"buildResources": "./config/build/",
"output": "./dist/electron/"
},
"files": [
"**/*",
"!**/*.ts",
"!**/*.scss",
"!LICENSE.md",
"!package.json",
"!package-lock.json",
"!electron-projects/",
"!projects/",
"!.prettierrc",
"!angular.json",
"!**/.awcache",
"!**/.vscode",
"!config/",
"!docker/",
"!tsconfig.json",
2019-12-31 05:15:29 +00:00
"!tslint.json",
{
"filter": ["**/*"],
"from": "./config/build/${os}/icon/daesang/",
"to": "./assets/icon/"
}
2019-12-30 08:21:26 +00:00
],
2019-09-18 06:02:21 +00:00
"protocols": {
"name": "DS Talk",
"schemes": ["DS Talk"]
2019-09-18 06:02:21 +00:00
},
"publish": {
"provider": "generic",
2020-01-21 05:41:28 +00:00
"url": "https://messenger.daesang.com/AppDist/pc"
2019-09-18 06:02:21 +00:00
},
"mac": {
"target": ["default"],
2019-12-30 08:21:26 +00:00
"icon": "./config/build/mac/icon/woori.icns"
2019-09-18 06:02:21 +00:00
},
"dmg": {
2019-12-30 08:21:26 +00:00
"title": "DS Talk"
2019-09-18 06:02:21 +00:00
},
"win": {
2020-01-21 04:10:24 +00:00
"target": ["nsis-web"],
2019-12-30 08:21:26 +00:00
"icon": "./config/build/win/icon/daesang/16x16.ico",
2019-12-27 08:35:32 +00:00
"legalTrademarks": "(c) 2015 lgucap.com",
2020-01-23 05:15:08 +00:00
"publisherName": "LG CNS Co.,Ltd",
2019-12-27 08:35:32 +00:00
"signingHashAlgorithms": ["sha1"],
2019-12-30 05:25:02 +00:00
"certificateFile": "./config/sign/www.lgcns.com.pfx",
2020-01-09 09:52:08 +00:00
"certificatePassword": "it15itsm",
"extraResources": [
{
"from": "./config/build/win/bin/AeroAdmin.exe",
"to": "./bin/AeroAdmin.exe"
}
]
2019-09-18 06:02:21 +00:00
},
"linux": {
"target": ["AppImage", "deb", "rpm", "zip", "tar.gz"],
2019-12-30 08:21:26 +00:00
"icon": "./config/build/linux/icon/woori/"
2019-09-18 06:02:21 +00:00
},
"nsis": {
2019-12-12 08:15:09 +00:00
"oneClick": true,
"allowToChangeInstallationDirectory": false,
"perMachine": false,
2020-01-02 06:18:09 +00:00
"differentialPackage": true,
"include": "./config/build/win/nsis/installer.nsh"
2020-01-21 04:10:24 +00:00
},
"nsisWeb": {
"oneClick": true,
"allowToChangeInstallationDirectory": false,
"perMachine": false,
"differentialPackage": true,
"include": "./config/build/win/nsis/installer.nsh"
2019-12-30 08:21:26 +00:00
}
2019-09-18 06:02:21 +00:00
}