ucap-lg-desktop/electron-builder.json

81 lines
2.0 KiB
JSON
Raw Normal View History

2020-08-10 05:05:14 +00:00
{
"appId": "com.lgucap.mmessenger",
"productName": "M Messenger",
"asar": true,
"extraMetadata": {
"name": "M Messenger"
},
"directories": {
"buildResources": "./config/build/",
"output": "./package/"
},
"files": [
"**/*",
"!**/*.ts",
"!**/*.scss",
"!LICENSE.md",
"!package.json",
"!package-lock.json",
"!config/",
"!dist-resources/",
"!src/",
"!.prettierrc",
"!**/.vscode",
"!tsconfig.app.json",
"!tsconfig.json",
"!tsconfig.spec.json",
"!tslint.json"
],
"protocols": {
"name": "M Messenger",
"schemes": ["M Messenger"]
},
"publish": {
"provider": "generic",
"url": "http://mmessenger.lfcorp.com/update/desktop"
},
"mac": {
"target": ["dmg", "zip"],
"category": "public.app-category.business",
"icon": "./src/assets/app/images/icon/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"extendInfo": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
}
}
},
"dmg": {
"title": "M Messenger",
"background": "./config/build/mac/images/background_dmg.png"
},
"win": {
"target": ["nsis-web"],
"icon": "./src/assets/app/images/icon/icon.ico",
"legalTrademarks": "(c) 2015 lgucap.com",
"publisherName": "LG CNS Co.,Ltd",
"signingHashAlgorithms": ["sha1"],
"certificateFile": "./config/build/win/sign/www.lgcns.com.pfx",
"certificatePassword": "it15itsm"
},
"nsis": {
"oneClick": true,
"allowToChangeInstallationDirectory": false,
"perMachine": false,
"differentialPackage": true,
"include": "./config/build/win/nsis/installer.nsh"
},
"nsisWeb": {
"oneClick": true,
"allowToChangeInstallationDirectory": false,
"perMachine": false,
"differentialPackage": true,
"include": "./config/build/win/nsis/installer.nsh"
},
"linux": {
"target": ["AppImage", "deb", "rpm", "zip", "tar.gz"],
"icon": "./src/assets/app/images/icon/"
}
}