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-08 14:45:14 +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-16 15:56:34 +01:00
"targets" : [ "deb" , "rpm" , "dmg" , "msi" , "appimage" ] ,
2025-06-05 14:56:16 +01:00
"icon" : [
2025-07-08 14:45:14 +01:00
"icons/icon.png" ,
2025-06-05 14:56:16 +01:00
"icons/icon.icns" ,
2025-07-16 15:56:34 +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-15 15:58:45 +01:00
"role" : "Editor" ,
"mimeType" : "application/pdf"
2025-07-04 14:33:59 +01:00
}
2025-07-16 15:56:34 +01:00
] ,
"linux" : {
"deb" : {
"desktopTemplate" : "[Desktop Entry]\nVersion=1.0\nType=Application\nName=Stirling-PDF\nComment=Locally hosted web application that allows you to perform various operations on PDF files\nExec=stirling-pdf %F\nIcon=stirling-pdf\nTerminal=false\nMimeType=application/pdf;\nCategories=Office;Graphics;\nStartupNotify=true\nStartupWMClass=Stirling-PDF"
}
}
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
}
}