-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
88 lines (88 loc) · 1.94 KB
/
Copy pathelectron-builder.json
File metadata and controls
88 lines (88 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"appId": "com.omnibioai.studio",
"productName": "OmniBioAI Studio",
"copyright": "Copyright \u00a9 2026 OmniBioAI",
"asar": true,
"compression": "maximum",
"directories": {
"output": "release"
},
"files": [
"electron/**/*",
"dist/**/*",
"backend/**/*",
"scripts/**/*",
"package.json"
],
"extraResources": [
{
"from": "docker-compose.yml",
"to": "docker-compose.yml"
},
{
"from": "docker-compose.release.yml",
"to": "docker-compose.release.yml"
},
{
"from": "db-init",
"to": "db-init"
},
{
"from": "scripts",
"to": "scripts"
},
{
"from": "monitoring",
"to": "monitoring"
},
{
"from": "docker",
"to": "docker"
}
],
"linux": {
"target": [
{"target": "AppImage", "arch": ["arm64"]},
{"target": "deb", "arch": ["arm64"]},
{"target": "rpm", "arch": ["arm64"]}
],
"category": "Science",
"icon": "build/icon.png",
"description": "AI-powered bioinformatics orchestration platform",
"maintainer": "Manish Kumar <manish@omnibioai.org>",
"vendor": "OmniBioAI"
},
"mac": {
"target": [
{"target": "dmg", "arch": ["x64", "arm64"]}
],
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns"
},
"dmg": {
"title": "OmniBioAI Studio"
},
"win": {
"target": [{"target": "nsis", "arch": ["x64"]}],
"icon": "build/icon.ico",
"requestedExecutionLevel": "requireAdministrator"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico"
},
"extraMetadata": {
"buildConfig": {
"devMode": "${env.OMNIBIOAI_DEV_MODE}"
}
},
"publish": {
"provider": "github",
"owner": "man4ish",
"repo": "omnibioai-studio"
}
}