clash-verge-rev/src-tauri/tauri.conf.json

85 lines
2.3 KiB
JSON
Raw Normal View History

2021-12-04 14:31:26 +08:00
{
"package": {
2022-03-09 01:53:18 +08:00
"productName": "Clash Verge",
"version": "1.4.2"
2021-12-04 14:31:26 +08:00
},
"build": {
"distDir": "../dist",
2022-01-08 22:23:48 +08:00
"devPath": "http://localhost:3000/",
2023-11-13 14:49:28 +08:00
"beforeDevCommand": "pnpm run web:dev",
"beforeBuildCommand": "pnpm run web:build"
2021-12-04 14:31:26 +08:00
},
"tauri": {
"systemTray": {
2022-06-22 01:26:25 +08:00
"iconPath": "icons/tray-icon.ico",
2021-12-04 14:31:26 +08:00
"iconAsTemplate": true
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "moe.elaina.clash.verge",
2021-12-04 14:31:26 +08:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
2022-06-18 18:41:53 +08:00
"icons/icon-new.icns",
2021-12-04 14:31:26 +08:00
"icons/icon.ico"
],
2022-11-12 11:37:23 +08:00
"resources": ["resources"],
"externalBin": ["sidecar/clash-meta", "sidecar/clash-meta-alpha"],
2022-03-05 01:51:29 +08:00
"copyright": "© 2022 zzzgydi All Rights Reserved",
2021-12-04 14:31:26 +08:00
"category": "DeveloperTool",
2021-12-26 02:30:34 +08:00
"shortDescription": "A Clash GUI based on tauri.",
"longDescription": "A Clash GUI based on tauri.",
2021-12-04 14:31:26 +08:00
"deb": {
2023-02-02 10:54:15 +08:00
"depends": ["openssl"]
2021-12-04 14:31:26 +08:00
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"exceptionDomain": "",
"signingIdentity": null,
"entitlements": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
2022-05-30 01:30:36 +08:00
"timestampUrl": "",
"wix": {
"language": ["zh-CN", "en-US", "ru-RU"]
2022-05-30 01:30:36 +08:00
}
2021-12-04 14:31:26 +08:00
}
},
"updater": {
2022-01-10 02:15:38 +08:00
"active": true,
"endpoints": [
2023-12-02 23:04:04 +08:00
"https://mirror.ghproxy.com/https://github.com/clash-verge-rev/clash-verge-rev/releases/download/updater/update-proxy.json",
"https://github.com/clash-verge-rev/clash-verge-rev/releases/download/updater/update.json"
2022-01-10 02:15:38 +08:00
],
2022-02-13 18:45:03 +08:00
"dialog": false,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEQyOEMyRjBCQkVGOUJEREYKUldUZnZmbStDeStNMHU5Mmo1N24xQXZwSVRYbXA2NUpzZE5oVzlqeS9Bc0t6RVV4MmtwVjBZaHgK"
2021-12-04 14:31:26 +08:00
},
"allowlist": {
2022-02-16 02:42:56 +08:00
"shell": {
"all": true
},
"window": {
"all": true
2022-03-20 13:16:50 +08:00
},
"process": {
"all": true
},
"globalShortcut": {
"all": true
2023-12-01 15:52:49 +08:00
},
"clipboard": {
"all": true
2022-02-16 02:42:56 +08:00
}
2021-12-04 14:31:26 +08:00
},
2022-10-11 00:57:34 +08:00
"windows": [],
2021-12-04 14:31:26 +08:00
"security": {
2023-10-31 12:00:57 +08:00
"csp": "script-src 'unsafe-eval' 'self'; default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self'; img-src data: 'self';"
2021-12-04 14:31:26 +08:00
}
}
2022-11-12 11:37:23 +08:00
}