diff options
Diffstat (limited to 'src-tauri/tauri.conf.json')
| -rw-r--r-- | src-tauri/tauri.conf.json | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json new file mode 100644 index 0000000..d4a7f19 --- /dev/null +++ b/src-tauri/tauri.conf.json @@ -0,0 +1,66 @@ +{ + "build": { + "beforeDevCommand": "", + "beforeBuildCommand": "", + "devPath": "../src", + "distDir": "../src", + "withGlobalTauri": true + }, + "package": { + "productName": "monkeytype-desktop", + "version": "0.0.0" + }, + "tauri": { + "allowlist": { + "all": true + }, + "bundle": { + "active": true, + "category": "DeveloperTool", + "copyright": "Copyright (C) 2022-2022 Fuwn", + "deb": { + "depends": [] + }, + "externalBin": [], + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/[email protected]", + "icons/icon.icns", + "icons/icon.ico" + ], + "identifier": "me.fuwn.monkeytype-desktop", + "longDescription": "Monkeytype, but for desktop", + "macOS": { + "entitlements": null, + "exceptionDomain": "", + "frameworks": [], + "providerShortName": null, + "signingIdentity": null + }, + "resources": [], + "shortDescription": "", + "targets": "all", + "windows": { + "certificateThumbprint": null, + "digestAlgorithm": "sha256", + "timestampUrl": "" + } + }, + "security": { + "csp": null + }, + "updater": { + "active": false + }, + "windows": [ + { + "fullscreen": false, + "height": 600, + "resizable": true, + "title": "monkeytype", + "width": 800 + } + ] + } +} |