2025-06-05 14:56:16 +01:00
|
|
|
{
|
|
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
|
|
|
"productName": "Stirling-PDF",
|
2025-06-09 10:04:40 +01:00
|
|
|
"version": "2.0.0",
|
|
|
|
"identifier": "stirling.pdf.dev",
|
2025-06-05 14:56:16 +01:00
|
|
|
"build": {
|
2025-06-09 10:04:40 +01:00
|
|
|
"frontendDist": "../dist",
|
2025-06-05 14:56:16 +01:00
|
|
|
"devUrl": "http://localhost:5173",
|
|
|
|
"beforeDevCommand": "npm run dev",
|
|
|
|
"beforeBuildCommand": "npm run build"
|
|
|
|
},
|
|
|
|
"app": {
|
|
|
|
"windows": [
|
|
|
|
{
|
|
|
|
"title": "Stirling-PDF",
|
2025-07-22 17:30:58 +01:00
|
|
|
"width": 1024,
|
|
|
|
"height": 768,
|
2025-06-05 14:56:16 +01:00
|
|
|
"resizable": true,
|
|
|
|
"fullscreen": false
|
|
|
|
}
|
2025-07-01 14:22:19 +01:00
|
|
|
]
|
2025-06-05 14:56:16 +01:00
|
|
|
},
|
|
|
|
"bundle": {
|
|
|
|
"active": true,
|
2025-07-22 17:30:58 +01:00
|
|
|
"targets": ["deb", "rpm", "dmg", "msi"],
|
2025-06-05 14:56:16 +01:00
|
|
|
"icon": [
|
2025-07-22 17:30:58 +01:00
|
|
|
"icons/icon.png",
|
2025-06-05 14:56:16 +01:00
|
|
|
"icons/icon.icns",
|
2025-07-22 17:30:58 +01:00
|
|
|
"icons/icon.ico",
|
|
|
|
"icons/16x16.png",
|
|
|
|
"icons/32x32.png",
|
|
|
|
"icons/64x64.png",
|
|
|
|
"icons/128x128.png",
|
|
|
|
"icons/192x192.png"
|
2025-06-09 10:04:40 +01:00
|
|
|
],
|
|
|
|
"resources": [
|
2025-06-13 11:55:09 +01:00
|
|
|
"libs/*.jar",
|
|
|
|
"runtime/jre/**/*"
|
2025-07-04 14:33:59 +01:00
|
|
|
],
|
|
|
|
"fileAssociations": [
|
|
|
|
{
|
|
|
|
"ext": ["pdf"],
|
|
|
|
"name": "PDF Document",
|
|
|
|
"description": "Open PDF files with Stirling-PDF",
|
2025-07-22 17:30:58 +01:00
|
|
|
"role": "Editor",
|
|
|
|
"mimeType": "application/pdf"
|
2025-07-04 14:33:59 +01:00
|
|
|
}
|
2025-07-22 17:30:58 +01:00
|
|
|
],
|
|
|
|
"linux": {
|
|
|
|
"deb": {
|
|
|
|
"desktopTemplate": "stirling-pdf.desktop"
|
|
|
|
}
|
|
|
|
}
|
2025-06-09 10:04:40 +01:00
|
|
|
},
|
|
|
|
"plugins": {
|
|
|
|
"shell": {
|
|
|
|
"open": true
|
2025-07-04 14:33:59 +01:00
|
|
|
},
|
|
|
|
"fs": {
|
|
|
|
"requireLiteralLeadingDot": false
|
2025-06-09 10:04:40 +01:00
|
|
|
}
|
2025-06-05 14:56:16 +01:00
|
|
|
}
|
|
|
|
}
|