tauri.conf.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "$schema": "https://schema.tauri.app/config/2",
  3. "productName": "Claude AI Installer",
  4. "version": "0.0.6",
  5. "identifier": "com.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": [
  35. "msi",
  36. "nsis"
  37. ],
  38. "icon": [
  39. "icons/32x32.png",
  40. "icons/128x128.png",
  41. "icons/[email protected]",
  42. "icons/icon.icns",
  43. "icons/icon.ico"
  44. ],
  45. "resources": [],
  46. "windows": {
  47. "certificateThumbprint": null,
  48. "digestAlgorithm": "sha256",
  49. "timestampUrl": "",
  50. "nsis": {
  51. "installerIcon": "icons/icon.ico",
  52. "headerImage": null,
  53. "sidebarImage": null,
  54. "installMode": "currentUser",
  55. "languages": [
  56. "SimpChinese",
  57. "English"
  58. ],
  59. "displayLanguageSelector": true,
  60. "template": null
  61. },
  62. "wix": null
  63. },
  64. "macOS": {
  65. "minimumSystemVersion": "10.13"
  66. },
  67. "linux": {
  68. "appimage": {
  69. "bundleMediaFramework": false
  70. }
  71. }
  72. },
  73. "plugins": {
  74. "shell": {
  75. "open": true
  76. },
  77. "updater": {
  78. "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDc5NjdGMDhGMzU0MTVBQkUKUldTK1drRTFqL0JuZVE5UkM0V0krdkROLzF0d1ltYysyMmovTHBUeHdhRVU5T295MEw4SHRXUkIK",
  79. "endpoints": [
  80. "https://github.com/Apq/ClaudeCodeInstaller/releases/latest/download/latest.json"
  81. ]
  82. }
  83. }
  84. }