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

83 lines
2.3 KiB
JSON
Raw Normal View History

2021-12-04 14:31:26 +08:00
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
2021-12-04 14:31:26 +08:00
"package": {
2022-03-09 01:53:18 +08:00
"productName": "Clash Verge",
2024-07-06 18:48:25 +08:00
"version": "1.7.3"
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": {
"bundle": {
"active": true,
2023-12-05 15:41:13 +08:00
"identifier": "io.github.clash-verge-rev.clash-verge-rev",
2021-12-04 14:31:26 +08:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
2024-05-12 19:19:18 +08:00
"icons/icon.icns",
2021-12-04 14:31:26 +08:00
"icons/icon.ico"
],
2022-11-12 11:37:23 +08:00
"resources": ["resources"],
2024-06-12 11:51:44 +08:00
"publisher": "Clash Verge Rev",
2024-06-19 10:04:28 +08:00
"externalBin": ["sidecar/verge-mihomo", "sidecar/verge-mihomo-alpha"],
2024-06-12 11:51:44 +08:00
"copyright": "GNU General Public License v3.0",
2021-12-04 14:31:26 +08:00
"category": "DeveloperTool",
2023-12-04 13:45:28 +08:00
"shortDescription": "A Clash Meta GUI based on tauri.",
"longDescription": "A Clash Meta GUI based on tauri."
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
},
"notification": {
"all": true
2024-01-17 15:06:16 +08:00
},
"dialog": {
"all": false,
"open": true
2024-02-24 00:52:21 +08:00
},
"protocol": {
"asset": true,
2024-05-18 15:47:45 +08:00
"assetScope": ["$APPDATA/**", "$RESOURCE/../**", "**"]
},
"path": {
"all": true
},
"fs": {
"exists": true,
"readFile": true,
"scope": ["$APPDATA/**", "$RESOURCE/../**", "**"]
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": {
2024-06-04 15:26:39 +08:00
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: asset: 'unsafe-eval' 'unsafe-inline' 'self';"
2021-12-04 14:31:26 +08:00
}
}
2022-11-12 11:37:23 +08:00
}