tauri.meta.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "package": {
  3. "productName": "Clash Verge Meta",
  4. "version": "1.0.1"
  5. },
  6. "build": {
  7. "distDir": "../dist",
  8. "devPath": "http://localhost:3000/",
  9. "beforeDevCommand": "yarn run web:dev",
  10. "beforeBuildCommand": "yarn run web:build"
  11. },
  12. "tauri": {
  13. "systemTray": {
  14. "iconPath": "icons/tray-icon.png",
  15. "iconAsTemplate": true
  16. },
  17. "bundle": {
  18. "active": true,
  19. "targets": "all",
  20. "identifier": "top.gydi.clashverge",
  21. "icon": [
  22. "icons/32x32.png",
  23. "icons/128x128.png",
  24. "icons/128x128@2x.png",
  25. "icons/icon.icns",
  26. "icons/icon.ico"
  27. ],
  28. "resources": ["resources"],
  29. "externalBin": ["sidecar/clash", "sidecar/clash-meta"],
  30. "copyright": "© 2022 zzzgydi All Rights Reserved",
  31. "category": "DeveloperTool",
  32. "shortDescription": "A Clash GUI based on tauri.",
  33. "longDescription": "A Clash GUI based on tauri.",
  34. "deb": {
  35. "depends": []
  36. },
  37. "macOS": {
  38. "frameworks": [],
  39. "minimumSystemVersion": "",
  40. "exceptionDomain": "",
  41. "signingIdentity": null,
  42. "entitlements": null
  43. },
  44. "windows": {
  45. "certificateThumbprint": null,
  46. "digestAlgorithm": "sha256",
  47. "timestampUrl": ""
  48. }
  49. },
  50. "updater": {
  51. "active": true,
  52. "endpoints": [
  53. "https://github.com/zzzgydi/clash-verge/releases/download/updater/update.json",
  54. "https://hub.fastgit.xyz/zzzgydi/clash-verge/releases/download/updater/update-proxy.json"
  55. ],
  56. "dialog": false,
  57. "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDExNUFBNTBBN0FDNEFBRTUKUldUbHFzUjZDcVZhRVRJM25NS3NkSFlFVElxUkNZMzZ6bHUwRVJjb2F3alJXVzRaeDdSaTA2YWYK"
  58. },
  59. "allowlist": {
  60. "shell": {
  61. "all": true
  62. },
  63. "window": {
  64. "all": true
  65. },
  66. "process": {
  67. "all": true
  68. }
  69. },
  70. "windows": [
  71. {
  72. "title": "Clash Verge",
  73. "width": 800,
  74. "height": 636,
  75. "resizable": true,
  76. "fullscreen": false,
  77. "decorations": false,
  78. "transparent": true,
  79. "minWidth": 600,
  80. "minHeight": 520
  81. }
  82. ],
  83. "security": {
  84. "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';"
  85. }
  86. }
  87. }