| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- {
- "$schema": "https://schema.tauri.app/config/2",
- "productName": "Claude AI Installer",
- "version": "1.0.1",
- "identifier": "claude-ai-installer",
- "build": {
- "beforeDevCommand": "npm run dev:frontend",
- "devUrl": "http://localhost:5173",
- "beforeBuildCommand": "npm run build:frontend",
- "frontendDist": "../dist"
- },
- "app": {
- "withGlobalTauri": false,
- "windows": [
- {
- "title": "Claude AI Installer",
- "width": 1200,
- "height": 800,
- "minWidth": 1000,
- "minHeight": 800,
- "resizable": true,
- "fullscreen": false,
- "decorations": false,
- "transparent": false,
- "center": true
- }
- ],
- "security": {
- "csp": null
- }
- },
- "bundle": {
- "active": true,
- "targets": "all",
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/[email protected]",
- "icons/icon.icns",
- "icons/icon.ico"
- ],
- "resources": [],
- "windows": {
- "certificateThumbprint": null,
- "digestAlgorithm": "sha256",
- "timestampUrl": "",
- "nsis": {
- "installerIcon": "icons/icon.ico",
- "headerImage": null,
- "sidebarImage": null,
- "installMode": "currentUser",
- "languages": [
- "SimpChinese",
- "English"
- ],
- "displayLanguageSelector": true,
- "template": null
- },
- "wix": null
- },
- "macOS": {
- "minimumSystemVersion": "10.13"
- },
- "linux": {
- "appimage": {
- "bundleMediaFramework": false
- }
- }
- },
- "plugins": {
- "shell": {
- "open": true
- },
- "updater": {
- "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDc5NjdGMDhGMzU0MTVBQkUKUldTK1drRTFqL0JuZVE5UkM0V0krdkROLzF0d1ltYysyMmovTHBUeHdhRVU5T295MEw4SHRXUkIK",
- "endpoints": [
- "https://github.com/Apq/ClaudeCodeInstaller/releases/latest/download/latest.json"
- ]
- }
- }
- }
|