tauri.conf.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "$schema": "https://schema.tauri.app/config/2",
  3. "productName": "Claude AI Installer",
  4. "version": "1.0.1",
  5. "identifier": "claude-ai-installer",
  6. "build": {
  7. "beforeDevCommand": "npm run dev:frontend",
  8. "devUrl": "http://localhost:5173",
  9. "beforeBuildCommand": "npm run build:frontend",
  10. "frontendDist": "../dist"
  11. },
  12. "app": {
  13. "withGlobalTauri": false,
  14. "windows": [
  15. {
  16. "title": "Claude AI Installer",
  17. "width": 1200,
  18. "height": 800,
  19. "minWidth": 1000,
  20. "minHeight": 800,
  21. "resizable": true,
  22. "fullscreen": false,
  23. "decorations": false,
  24. "transparent": false,
  25. "center": true
  26. }
  27. ],
  28. "security": {
  29. "csp": null
  30. }
  31. },
  32. "bundle": {
  33. "active": true,
  34. "targets": "all",
  35. "icon": [
  36. "icons/32x32.png",
  37. "icons/128x128.png",
  38. "icons/[email protected]",
  39. "icons/icon.icns",
  40. "icons/icon.ico"
  41. ],
  42. "resources": [],
  43. "windows": {
  44. "certificateThumbprint": null,
  45. "digestAlgorithm": "sha256",
  46. "timestampUrl": "",
  47. "nsis": {
  48. "installerIcon": "icons/icon.ico",
  49. "headerImage": null,
  50. "sidebarImage": null,
  51. "installMode": "currentUser",
  52. "languages": [
  53. "SimpChinese",
  54. "English"
  55. ],
  56. "displayLanguageSelector": true,
  57. "template": null
  58. },
  59. "wix": null
  60. },
  61. "macOS": {
  62. "minimumSystemVersion": "10.13"
  63. },
  64. "linux": {
  65. "appimage": {
  66. "bundleMediaFramework": false
  67. }
  68. }
  69. },
  70. "plugins": {
  71. "shell": {
  72. "open": true
  73. },
  74. "updater": {
  75. "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDc5NjdGMDhGMzU0MTVBQkUKUldTK1drRTFqL0JuZVE5UkM0V0krdkROLzF0d1ltYysyMmovTHBUeHdhRVU5T295MEw4SHRXUkIK",
  76. "endpoints": [
  77. "https://github.com/Apq/ClaudeCodeInstaller/releases/latest/download/latest.json"
  78. ]
  79. }
  80. }
  81. }