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

92 lines
2.4 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",
2022-09-03 00:40:50 +08:00
"version": "1.0.6"
2021-12-04 14:31:26 +08:00
},
"build": {
"distDir": "../dist",
2022-01-08 22:23:48 +08:00
"devPath": "http://localhost:3000/",
2021-12-09 23:26:42 +08:00
"beforeDevCommand": "yarn run web:dev",
"beforeBuildCommand": "yarn 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",
2021-12-26 02:30:34 +08:00
"identifier": "top.gydi.clashverge",
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-08-16 23:56:29 +08:00
"resources": ["resources"],
"externalBin": ["sidecar/clash", "sidecar/clash-meta"],
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": {
2022-04-28 15:05:10 +08:00
"depends": []
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": {
2022-08-16 23:56:29 +08:00
"language": ["zh-CN", "en-US"]
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": [
2022-03-19 11:14:12 +08:00
"https://github.com/zzzgydi/clash-verge/releases/download/updater/update.json",
"https://hub.fastgit.xyz/zzzgydi/clash-verge/releases/download/updater/update-proxy.json"
2022-01-10 02:15:38 +08:00
],
2022-02-13 18:45:03 +08:00
"dialog": false,
2022-02-16 10:59:31 +08:00
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDExNUFBNTBBN0FDNEFBRTUKUldUbHFzUjZDcVZhRVRJM25NS3NkSFlFVElxUkNZMzZ6bHUwRVJjb2F3alJXVzRaeDdSaTA2YWYK"
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
2022-02-16 02:42:56 +08:00
}
2021-12-04 14:31:26 +08:00
},
"windows": [
{
"title": "Clash Verge",
"width": 800,
2022-05-09 14:01:46 +08:00
"height": 636,
2022-09-06 22:18:06 +08:00
"center": true,
2021-12-04 14:31:26 +08:00
"resizable": true,
2021-12-08 23:40:52 +08:00
"fullscreen": false,
2022-01-08 22:23:48 +08:00
"decorations": false,
2022-01-12 02:27:29 +08:00
"transparent": true,
2021-12-09 23:26:42 +08:00
"minWidth": 600,
"minHeight": 520
2021-12-04 14:31:26 +08:00
}
],
"security": {
2022-03-28 23:17:11 +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-08-16 23:56:29 +08:00
}