Files
cutThink_lite/src-tauri/tauri.conf.json

102 lines
2.5 KiB
JSON
Raw Normal View History

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "CutThenThink Lite",
"version": "0.1.0",
"identifier": "com.cutthenthink.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "CutThenThink Lite",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false,
"minWidth": 600,
"minHeight": 400
}
],
"security": {
"csp": null
},
"withGlobalTauri": true
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"publisher": "CutThenThink",
"copyright": "Copyright © 2025 CutThenThink",
"category": "Productivity",
"shortDescription": "Lightweight screenshot and annotation tool",
"longDescription": "CutThenThink Lite is a lightweight screenshot capture and annotation tool designed for quick visual communication. Perfect for creating tutorials, reporting bugs, or sharing ideas visually.",
"createUpdaterArtifacts": true,
"linux": {
"deb": {
"depends": []
},
"appimage": {
"bundleMediaFramework": false
}
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "10.13",
"exceptionDomain": "",
"signingIdentity": null,
"entitlements": null,
"providerShortName": null,
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
],
"window": {
"width": 540,
"height": 380
}
}
},
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"nsis": {
"displayLanguageSelector": false,
"languages": ["English", "SimpChinese"],
"template": false,
"installMode": "perMachine",
"allowDowngrades": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"multiUserLauncher": false
},
"wix": {
"language": ["en-US", "zh-CN"]
},
"webviewInstallMode": {
"type": "embedBootstrapper"
}
}
}
}