-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgossamer.conf.json
More file actions
62 lines (62 loc) · 1.54 KB
/
gossamer.conf.json
File metadata and controls
62 lines (62 loc) · 1.54 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
{
"$schema": "https://gossamer.dev/schemas/config/v1",
"productName": "PanLL",
"version": "0.1.0",
"identifier": "com.hyperpolymath.panll",
"build": {
"frontendDist": "./public",
"devUrl": "http://localhost:8000/public/",
"beforeDevCommand": "deno task bundle && deno task bundle:watch & deno task css:watch & deno task serve:dev",
"beforeBuildCommand": "deno task bundle && deno task css:build",
"runner": "deno"
},
"app": {
"windows": [{
"label": "main",
"title": "PanLL eNSAID",
"width": 1400,
"height": 900,
"minWidth": 1000,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"decorations": true,
"center": true
}],
"security": {
"csp": null,
"capabilities": ["filesystem", "network", "shell", "clipboard", "notification", "tray"],
"capabilityTokens": {
"enabled": false,
"issuer": "gossamer-runtime",
"ttl": 3600
}
},
"ipc": {
"protocol": "json",
"bridgeInjection": true
}
},
"plugins": {},
"bundle": {
"active": true,
"targets": ["deb", "appimage"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png"
],
"copyright": "Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath)",
"license": "MPL-2.0",
"linux": {
"desktopEntry": true,
"category": "Development"
}
},
"ephapax": {
"modules": [],
"region": "window",
"linearVerification": true,
"regionBoundary": "strict"
}
}