发布于 

electron 配置说明

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "installFile",//安装目录
"version": "1.0.0",//版本号
"description": "",
"main": "bin/main.js",
"scripts": {
"start": "tsc -p ./ && electron ./bin/main.js",
"dist": "tsc -p ./ && electron-builder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.test.app",//appid
"copyright": "Copyright © 2023 yohoj",
"productName": "appName",//安装包名称
"asar": true, //是否使用asar加密
"files": [
"./bin/**/*"
],//打包目录
"extraResources": [
"./bin/res/**"
],//额外资源
"compression": "maximum",//压缩级别 “store” | “normal” | “maximum” | “undefined”
"directories": {
"output": "dist"//输出目录
},
"publish": [//自动更新地址
{
"provider": "generic",
"url": "http://10.225.136.154/electron/update/static/official"
}
],
"nsis": {
"oneClick": false,//是否一键安装
"allowToChangeInstallationDirectory": true,//允许改变安装目录ß
"createDesktopShortcut": "always",//创建桌面快捷方式
"createStartMenuShortcut": true,//创建开始目录
"language": "2052"//语言
},
"mac": {
"category": "your.app.category.type"
},
"win": {
"icon": "bin/res/logo/logo.ico",//安装包图标
"target": [
"nsis"
]
}
}
}