-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtauri.conf.json
More file actions
65 lines (65 loc) · 1.94 KB
/
Copy pathtauri.conf.json
File metadata and controls
65 lines (65 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"$schema": "https://raw.githubusercontent.com/nicedoc/tauri-schema/main/schema/2.0/tauri.conf.json",
"productName": "Cotect",
"version": "0.4.0",
"identifier": "com.cotect.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "yarn vite:dev",
"beforeBuildCommand": "yarn vite:build"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "Cotect",
"width": 1280,
"height": 720,
"minWidth": 1280,
"minHeight": 720,
"visible": false,
"center": true
}
]
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEE1Q0NFMDQ5NEVDODZBNEYKUldSUGFzaE9TZURNcGJTeElkVmFtaHAvelRZZTVoVndtRktJNzBMTThQd1ZBOXNLQlhBL085SXoK",
"endpoints": [
"https://github.com/cotect-dev/cotect/releases/latest/download/latest.json"
]
}
},
"bundle": {
"active": true,
"targets": "all",
"createUpdaterArtifacts": true,
"publisher": "Grzegorz Raczek",
"homepage": "https://cotect.dev",
"shortDescription": "A fast, read-first code inspector for the agent era",
"longDescription": "Cotect watches your repository while AI agents write. Every change lands on an infinite canvas the moment it happens, ready to review hunk by hunk, without touching the working tree.",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"linux": {
"deb": {
"files": {
"/usr/share/metainfo/com.cotect.app.metainfo.xml": "metainfo/com.cotect.app.metainfo.xml"
}
}
},
"macOS": {
"dmg": {
"background": "dmg/background.png",
"windowSize": { "width": 660, "height": 400 },
"appPosition": { "x": 165, "y": 190 },
"applicationFolderPosition": { "x": 495, "y": 190 }
}
}
}
}