forked from MoeFE/GoogleTranslate
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathelectron-builder.json
More file actions
38 lines (38 loc) · 819 Bytes
/
electron-builder.json
File metadata and controls
38 lines (38 loc) · 819 Bytes
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
{
"productName": "Google 翻译",
"appId": "org.moefe.googletranslate",
"files": ["dist/**/*", "!src", "!node_modules"],
"directories": {
"output": "build"
},
"extraResources": [
"./public",
{
"from": "src/bridge/target/release/bridge",
"to": "./public/google-translate-bridge"
},
{
"from": "src/bridge/target/release/bridge.exe",
"to": "./public/google-translate-bridge.exe"
},
{
"from": "node_modules/regedit/vbs",
"to": "./public/vbs"
}
],
"publish": {
"provider": "github",
"vPrefixedTagName": false
},
"win": {
"icon": "./public/icon.png"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "./public/icon.png"
},
"linux": {
"target": ["AppImage"],
"category": "Utility"
}
}