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

91 lines
2.4 KiB
JSON
Raw Normal View History

2021-12-04 09:31:26 +03:00
{
"package": {
2022-03-08 20:53:18 +03:00
"productName": "Clash Verge",
2022-09-02 19:40:50 +03:00
"version": "1.0.6"
2021-12-04 09:31:26 +03:00
},
"build": {
"distDir": "../dist",
2022-01-08 17:23:48 +03:00
"devPath": "http://localhost:3000/",
2021-12-09 18:26:42 +03:00
"beforeDevCommand": "yarn run web:dev",
"beforeBuildCommand": "yarn run web:build"
2021-12-04 09:31:26 +03:00
},
"tauri": {
"systemTray": {
2022-06-21 20:26:25 +03:00
"iconPath": "icons/tray-icon.ico",
2021-12-04 09:31:26 +03:00
"iconAsTemplate": true
},
"bundle": {
"active": true,
"targets": "all",
2021-12-25 21:30:34 +03:00
"identifier": "top.gydi.clashverge",
2021-12-04 09:31:26 +03:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
2022-06-18 13:41:53 +03:00
"icons/icon-new.icns",
2021-12-04 09:31:26 +03:00
"icons/icon.ico"
],
2022-08-16 18:56:29 +03:00
"resources": ["resources"],
"externalBin": ["sidecar/clash", "sidecar/clash-meta"],
2022-03-04 20:51:29 +03:00
"copyright": "© 2022 zzzgydi All Rights Reserved",
2021-12-04 09:31:26 +03:00
"category": "DeveloperTool",
2021-12-25 21:30:34 +03:00
"shortDescription": "A Clash GUI based on tauri.",
"longDescription": "A Clash GUI based on tauri.",
2021-12-04 09:31:26 +03:00
"deb": {
2022-04-28 10:05:10 +03:00
"depends": []
2021-12-04 09:31:26 +03:00
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"exceptionDomain": "",
"signingIdentity": null,
"entitlements": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
2022-05-29 20:30:36 +03:00
"timestampUrl": "",
"wix": {
2022-08-16 18:56:29 +03:00
"language": ["zh-CN", "en-US"]
2022-05-29 20:30:36 +03:00
}
2021-12-04 09:31:26 +03:00
}
},
"updater": {
2022-01-09 21:15:38 +03:00
"active": true,
"endpoints": [
2022-03-19 06:14:12 +03: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-09 21:15:38 +03:00
],
2022-02-13 13:45:03 +03:00
"dialog": false,
2022-02-16 05:59:31 +03:00
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDExNUFBNTBBN0FDNEFBRTUKUldUbHFzUjZDcVZhRVRJM25NS3NkSFlFVElxUkNZMzZ6bHUwRVJjb2F3alJXVzRaeDdSaTA2YWYK"
2021-12-04 09:31:26 +03:00
},
"allowlist": {
2022-02-15 21:42:56 +03:00
"shell": {
"all": true
},
"window": {
"all": true
2022-03-20 08:16:50 +03:00
},
"process": {
"all": true
2022-02-15 21:42:56 +03:00
}
2021-12-04 09:31:26 +03:00
},
"windows": [
{
"title": "Clash Verge",
"width": 800,
2022-05-09 09:01:46 +03:00
"height": 636,
2021-12-04 09:31:26 +03:00
"resizable": true,
2021-12-08 18:40:52 +03:00
"fullscreen": false,
2022-01-08 17:23:48 +03:00
"decorations": false,
2022-01-11 21:27:29 +03:00
"transparent": true,
2021-12-09 18:26:42 +03:00
"minWidth": 600,
"minHeight": 520
2021-12-04 09:31:26 +03:00
}
],
"security": {
2022-03-28 18:17:11 +03: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 09:31:26 +03:00
}
}
2022-08-16 18:56:29 +03:00
}