gitbutler/src-tauri/tauri.conf.json

80 lines
1.6 KiB
JSON
Raw Normal View History

2023-01-31 17:55:57 +03:00
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../build",
"withGlobalTauri": false
},
"package": {
2023-02-03 12:36:51 +03:00
"productName": "GitButler",
2023-01-31 17:55:57 +03:00
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
2023-02-13 15:38:57 +03:00
"shell": {
"all": false,
"open": true
},
2023-01-31 17:55:57 +03:00
"dialog": {
"all": false,
"open": true
2023-02-01 14:43:29 +03:00
},
"window": {
"all": false,
"startDragging": true
2023-02-02 18:26:38 +03:00
},
"path": {
"all": true
},
"fs": {
"all": false,
"readFile": true,
"writeFile": true,
"exists": true,
"createDir": true,
2023-02-13 15:38:57 +03:00
"scope": [
"$APPLOCALDATA/user.json"
]
2023-01-31 17:55:57 +03:00
}
},
"bundle": {
"active": true,
2023-02-03 12:36:51 +03:00
"identifier": "com.gitbutler.app",
2023-01-31 17:55:57 +03:00
"category": "DeveloperTool",
2023-02-03 12:36:51 +03:00
"copyright": "Copyright © 2023 GitButler. All rights reserved.",
2023-01-31 17:55:57 +03:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
2023-02-08 18:44:11 +03:00
"targets": ["dmg"]
2023-01-31 17:55:57 +03:00
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "git-butler-tauri",
2023-02-01 14:43:29 +03:00
"width": 800,
"hiddenTitle": true,
2023-02-09 15:26:40 +03:00
"theme": "Dark",
2023-02-01 14:43:29 +03:00
"titleBarStyle": "Overlay"
2023-01-31 17:55:57 +03:00
}
2023-02-10 17:39:48 +03:00
],
"systemTray": {
"iconPath": "icons/tray.png",
"iconAsTemplate": true
}
2023-01-31 17:55:57 +03:00
}
}