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

86 lines
2.2 KiB
JSON
Raw Normal View History

2021-12-04 14:31:26 +08:00
{
"package": {
2021-12-26 02:42:52 +08:00
"productName": "clash-verge",
2022-03-02 01:59:53 +08:00
"version": "0.0.20"
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": {
"iconPath": "icons/icon.png",
"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",
"icons/icon.icns",
"icons/icon.ico"
],
2021-12-28 01:48:25 +08:00
"resources": ["resources"],
"externalBin": ["sidecar/clash"],
2021-12-26 02:30:34 +08:00
"copyright": "© 2021 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": {
"depends": [],
"useBootstrapper": false
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "",
"useBootstrapper": false,
"exceptionDomain": "",
"signingIdentity": null,
"entitlements": null
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"updater": {
2022-01-10 02:15:38 +08:00
"active": true,
"endpoints": [
"https://github.com/zzzgydi/clash-verge/releases/download/updater/update.json"
],
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
}
2021-12-04 14:31:26 +08:00
},
"windows": [
{
"title": "Clash Verge",
"width": 800,
"height": 600,
"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": {
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
}
}
2021-12-28 01:48:25 +08:00
}