mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-12-02 03:38:03 +08:00
c0ca8abf11
* style:extension-detail * style: optimizi * feat: update UI * test: publish * test: build * chore: update .gitignore * testt: publish * test: relese * feat: check eoapi client is install * test: relese * feat: add save * feat: clickExtension tab query params * fix: update code * add i18n * chore: merge code * feat: extension support swtich enable status * fix: extension name not sure * fix: css style * chore: update desc * fix: some css style * feat: add single instance lock Co-authored-by: buqiyuan <1743369777@qq.com>
71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"appId": ".eoapi.io",
|
|
"asar": true,
|
|
"directories": {
|
|
"output": "release/"
|
|
},
|
|
"files": [
|
|
"out/app/**/*.js*",
|
|
"out/platform/**/*.js*",
|
|
"out/enviroment.js",
|
|
"out/shared/**/*.js*",
|
|
"**/*/browser/dist/**/*",
|
|
"**/*/node/dist/**/*",
|
|
"out/workbench/browser/src/**/*.js*",
|
|
"out/workbench/node/**/*.js*",
|
|
"out/core/**/package.json",
|
|
"out/app/common/**/*",
|
|
"!**/*.ts"
|
|
],
|
|
"publish": [
|
|
"github",
|
|
{
|
|
"provider": "generic",
|
|
"url": "https://packages.eoapi.io"
|
|
}
|
|
],
|
|
"generateUpdatesFilesForAllChannels": true,
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowElevation": true,
|
|
"allowToChangeInstallationDirectory": true,
|
|
// for win - 将协议写入主机的脚本
|
|
"include": "scripts/urlProtoco.nsh"
|
|
},
|
|
"protocols": [
|
|
// for macOS - 用于在主机注册指定协议
|
|
{
|
|
"name": "eoapi",
|
|
"schemes": ["eoapi"]
|
|
}
|
|
],
|
|
"win": {
|
|
"icon": "src/app/common/images/256x256.png",
|
|
"target": [
|
|
{
|
|
"target": "nsis"
|
|
},
|
|
"portable"
|
|
]
|
|
},
|
|
"portable": {
|
|
"splashImage": "src/app/common/images/eoapi.bmp"
|
|
},
|
|
"mac": {
|
|
"icon": "src/app/common/images/512x512.png",
|
|
"hardenedRuntime": true,
|
|
"gatekeeperAssess": false,
|
|
"entitlements": "scripts/entitlements.mac.plist",
|
|
"entitlementsInherit": "scripts/entitlements.mac.plist",
|
|
"target": ["dmg", "zip"]
|
|
},
|
|
"dmg": {
|
|
"sign": false
|
|
},
|
|
"afterSign": "scripts/notarize.js",
|
|
"linux": {
|
|
"icon": "src/app/common/images/",
|
|
"target": ["AppImage"]
|
|
}
|
|
}
|