forked from OzymandiasTheGreat/emoji-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron-builder.json
56 lines (56 loc) · 1.06 KB
/
electron-builder.json
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
51
52
53
54
55
56
{
"appId": "tk.ozymandias.emoji-keyboard",
"productName": "emoji-keyboard",
"copyright": "© 2020 ${author}",
"directories": {
"buildResources": "dist/resources",
"output": "dist/release/"
},
"electronDownload": {
"version": "8.0.1"
},
"nodeVersion": "${current}",
"files": [
"**/*",
"!**/*.ts",
"!**/*.py",
"!.*",
"!*.json",
"!*.md",
"!*.code-workspace",
"!*.webpack.*",
"!LICENSE",
"!package.json",
"!package-lock.json",
"!pyproject.toml",
"!poetry.lock",
"!src",
"!src_py",
"!.venv",
"!scripts",
"!sources",
"!karma.conf.js",
"!.vscode"
],
"linux": {
"icon": "dist/resources/icon",
"category": "Utility",
"target": [
"AppImage"
]
},
"appImage": {
"license": "LICENSE"
},
"extraResources": [
{
"from": "dist/resources/main.pyz",
"to": "main.pyz"
}
],
"asar": true,
"asarUnpack": [
"dist/angular/assets/data/emoji.json",
"dist/angular/assets/data/default.ini"
]
}