67 lines
1.6 KiB
JSON
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"
|
|
}
|
|
}
|
|
}
|