123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "package": {
- "productName": "Clash Verge",
- "version": "0.1.0"
- },
- "build": {
- "distDir": "../dist",
- "devPath": "http://localhost:3000/proxy",
- "beforeDevCommand": "yarn run web:dev",
- "beforeBuildCommand": "yarn run web:build"
- },
- "tauri": {
- "systemTray": {
- "iconPath": "icons/icon.png",
- "iconAsTemplate": true
- },
- "bundle": {
- "active": true,
- "targets": "all",
- "identifier": "com.tauri.dev",
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/128x128@2x.png",
- "icons/icon.icns",
- "icons/icon.ico"
- ],
- "resources": ["resources"],
- "externalBin": ["sidecar/clash"],
- "copyright": "",
- "category": "DeveloperTool",
- "shortDescription": "",
- "longDescription": "",
- "deb": {
- "depends": [],
- "useBootstrapper": false
- },
- "macOS": {
- "frameworks": [],
- "minimumSystemVersion": "",
- "useBootstrapper": false,
- "exceptionDomain": "",
- "signingIdentity": null,
- "entitlements": null
- },
- "windows": {
- "certificateThumbprint": null,
- "digestAlgorithm": "sha256",
- "timestampUrl": ""
- }
- },
- "updater": {
- "active": false
- },
- "allowlist": {
- "all": true
- },
- "windows": [
- {
- "title": "Clash Verge",
- "width": 800,
- "height": 600,
- "resizable": true,
- "fullscreen": false,
- "decorations": true,
- "transparent": false,
- "minWidth": 600,
- "minHeight": 520
- }
- ],
- "security": {
- "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
- }
- }
- }
|