Files
SirBlob 43c8cfd85a
CI / frontend (push) Failing after 10s
CI / backend (push) Successful in 2m39s
Bump version to 1.1.0
2026-07-22 18:00:07 -04:00

67 lines
1.6 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "typst-desktop",
"version": "1.1.0",
"identifier": "co.sirblob.typst-desktop",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../build"
},
"app": {
"windows": [
{
"title": "Typst Desktop",
"width": 1280,
"height": 800,
"minWidth": 900,
"minHeight": 600,
"decorations": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"createUpdaterArtifacts": false,
"publisher": "SirBlobby",
"copyright": "Copyright (c) 2026 SirBlobby",
"category": "Productivity",
"shortDescription": "A desktop editor for Typst",
"longDescription": "A desktop editor for Typst documents with a built-in compiler, live preview, and optional sync to a TypstDrive server.",
"homepage": "https://github.com/sirblobby/typst-desktop",
"licenseFile": "../LICENSE",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
],
"linux": {
"deb": {
"depends": [
"libwebkit2gtk-4.1-0",
"libgtk-3-0"
]
}
},
"windows": {
"webviewInstallMode": {
"type": "downloadBootstrapper"
},
"nsis": {
"installMode": "both",
"displayLanguageSelector": false
}
},
"macOS": {
"minimumSystemVersion": "10.15"
}
}
}