-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathtauri.conf.json
77 lines (77 loc) · 1.81 KB
/
tauri.conf.json
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
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:5173",
"frontendDist": "../dist/"
},
"productName": "ZMK Studio",
"mainBinaryName": "zmk-studio",
"version": "0.3.1",
"identifier": "dev.zmk.studio",
"bundle": {
"active": true,
"category": "Productivity",
"copyright": "",
"linux": {
"deb": {
"depends": []
}
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": "-"
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"signCommand": "signtool.exe sign /v /debug /fd SHA256 /tr http://timestamp.acs.microsoft.com /td SHA256 /dlib ..\\Microsoft.Trusted.Signing.Client\\bin\\x64\\Azure.CodeSigning.Dlib.dll /dmdf trusted-signing-metadata.json %1"
}
},
"plugins": {
"cli": {
"description": "Tauri CLI Plugin Example",
"args": [
{
"name": "serial-port",
"takesValue": true,
"description": "Specific serial port to connect to"
}
]
}
},
"app": {
"security": {
"capabilities": [
"default"
],
"csp": {
"default-src": "'self' customprotocol: asset:",
"connect-src": "ipc: http://ipc.localhost"
}
},
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "ZMK Studio",
"width": 800
}
]
}
}