-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.nosign.linux.json
More file actions
42 lines (42 loc) · 1.05 KB
/
electron-builder.nosign.linux.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"appId": "com.guide-ide.desktop",
"productName": "guIDE",
"copyright": "Copyright © 2026 GraySoft LLC",
"directories": {
"output": "dist-electron"
},
"files": [
"*.js",
"*.json",
"server/**/*",
"pipeline/**/*",
"tools/**/*",
"chatWrappers/**/*",
"frontend/dist/**/*",
"node_modules/**/*",
"build/**/*",
"!node_modules/.cache/**",
"!node_modules/@node-llama-cpp/win-*/**",
"!node_modules/@node-llama-cpp/mac-*/**",
"!node_modules/@node-llama-cpp/linux-arm64/**",
"!node_modules/@node-llama-cpp/linux-armv7l/**",
"!node_modules/@node-llama-cpp/linux-x64-cuda/**",
"!node_modules/@node-llama-cpp/linux-x64-cuda-ext/**",
"!frontend/node_modules/**",
"!**/*.map",
"!**/*.ts",
"!**/test/**",
"!**/tests/**",
"!**/spec/**",
"!**/.git/**"
],
"asar": false,
"linux": {
"icon": "build/icon.png",
"target": [
{ "target": "AppImage", "arch": ["x64"] }
],
"artifactName": "guIDE-${version}-cpu-linux-x64.${ext}",
"category": "Development"
}
}