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

77 lines
2.2 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-03-28 12:06:41 +08:00
"version": "1.5.11"
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",
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",
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-02-26 13:31:51 +08:00
"assetScope": ["$APPDATA/**", "$RESOURCE/../**"]
},
"path": {
"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": {
2024-02-24 00:52:21 +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 asset: http: https: data: 'self';"
2021-12-04 14:31:26 +08:00
}
}
2022-11-12 11:37:23 +08:00
}