forked from comit-network/xmr-btc-swap
-
Notifications
You must be signed in to change notification settings - Fork 7
/
tauri.conf.json
59 lines (59 loc) · 1.33 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
{
"productName": "UnstoppableSwap",
"version": "1.0.0-alpha.1",
"identifier": "net.unstoppableswap.gui",
"build": {
"devUrl": "http://localhost:1420",
"frontendDist": "../src-gui/dist",
"beforeBuildCommand": {
"cwd": "../src-gui",
"script": "yarn run build"
}
},
"app": {
"windows": [
{
"title": "UnstoppableSwap",
"width": 800,
"height": 600
}
],
"security": {
"dangerousDisableAssetCspModification": true
}
},
"bundle": {
"createUpdaterArtifacts": true,
"active": true,
"targets": [
"appimage",
"dmg",
"nsis"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
]
},
"plugins": {
"updater": {
"active": true,
"dialog": true,
"endpoints": [
"https://cdn.crabnebula.app/update/unstoppableswap/unstoppableswap-gui-rs/{{target}}-{{arch}}/{{current_version}}"
],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEE2MDgxRDEwMDZENkYxNUMKUldSYzhkWUdFQjBJcGwzN24yZlduTzNndFZnVW9Qa1k2WFVTMEMxcHBSc2dSVVlzbVNHdGNFQ0EK"
},
"cli": {
"description": "Start the GUI application",
"args": [
{
"name": "testnet"
}
]
}
}
}