Files
tome/src-tauri/tauri.conf.json
Matte Noble 18dcf86bb5 Bump 0.9.2
2025-07-07 20:03:02 -07:00

129 lines
3.7 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"build": {
"beforeBuildCommand": "pnpm run build",
"beforeDevCommand": "pnpm run dev",
"frontendDist": "../build",
"devUrl": "http://localhost:5173"
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"createUpdaterArtifacts": true,
"targets": [
"dmg",
"app",
"nsis"
],
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"nsis": {
"installerHooks": "./windows/hooks.nsi"
},
"timestampUrl": "",
"signCommand": "relic.exe sign --file %1 --key azure --config relic.conf"
},
"longDescription": "",
"macOS": {
"entitlements": "./Entitlements.plist",
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": {
"python": "python",
"uvx": "uvx",
"node": "node",
"npx": "npx",
"bunx": "bunx",
"build/platform/windows/bin/*": ""
},
"shortDescription": "",
"linux": {
"deb": {
"depends": []
}
}
},
"productName": "Tome",
"mainBinaryName": "tome",
"version": "0.9.2",
"identifier": "co.runebook",
"plugins": {
"sql": {
"preload": [
"sqlite:tome.db"
]
},
"deep-link": {
"desktop": {
"schemes": [
"tome"
]
}
},
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDdGN0Q2QTBFQkRGNzFCRUMKUldUc0cvZTlEbXA5ZnhkalBpL2NhUU1VMXJxODJTNlQ2YThMWkV1UCtCb0JPMUU5T3RFWkx3M1QK",
"endpoints": [
"https://github.com/runebookai/tome/releases/latest/download/latest.json"
]
}
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "",
"width": 800,
"useHttpsScheme": true,
"backgroundColor": "#0b0b0b"
}
],
"security": {
"csp": null,
"capabilities": [
{
"identifier": "default",
"windows": [
"*"
],
"permissions": [
"core:default",
"opener:default",
"fs:allow-appdata-read",
"fs:allow-appdata-write",
"fs:allow-resource-read",
"sql:default",
"sql:allow-execute",
"updater:default",
"window-state:default"
]
},
{
"identifier": "draggable-window",
"windows": [
"*"
],
"permissions": [
"core:window:allow-start-dragging"
]
}
]
}
}
}