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
|
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Default capabilities for the DropOut launcher",
"windows": ["main"],
"remote": {
"urls": [
"http://127.0.0.1:5173",
"http://127.0.0.1:5173/*",
"http://localhost:5173",
"http://localhost:5173/*"
]
},
"permissions": [
"core:default",
"core:event:default",
"core:event:allow-listen",
"core:event:allow-emit",
"core:app:default",
"core:app:allow-version",
"core:path:default",
"core:window:default",
"shell:allow-open",
"dialog:default",
"fs:default",
{
"identifier": "fs:allow-read",
"allow": [{ "path": "**" }]
},
{
"identifier": "fs:allow-exists",
"allow": [{ "path": "**" }]
},
{
"identifier": "fs:allow-write-text-file",
"allow": [{ "path": "**" }]
}
]
}
|