-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathelectron-builder.json
More file actions
53 lines (53 loc) · 1 KB
/
electron-builder.json
File metadata and controls
53 lines (53 loc) · 1 KB
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
{
"appId": "codemate.ai-terminal",
"productName": "CodeTerm",
"files": [
"dist-electron",
"dist-react"
],
"extraResources": [
"dist-electron/preload.cjs",
"src/assets/**"
],
"mac": {
"icon": "src/assets/icons/mac/icon.icns",
"target": "dmg",
"extraResources": [
{
"from": "backend/dist/macOS/mainSave",
"to": "backend/mainSave"
}
],
"protocols": [
{
"name": "codeTerm",
"schemes": ["codeTerm"]
}
]
},
"linux": {
"icon": "src/assets/icons/png",
"target": [
"AppImage", "deb"
],
"category": "Utility",
"maintainer": "contact@codemate.ai",
"description": "An ai-powered terminal",
"extraResources": [
{
"from": "backend/dist/linux/mainSave",
"to": "backend/mainSave"
}
],
"protocols": [
{
"name": "codeTerm",
"schemes": ["codeTerm"]
}
],
"executableName": "CodeTerm-0.0.1"
},
"deb": {
"afterInstall": "scripts/deb-postinstall.tpl"
}
}