a5cff433a6
- Storage: SQLite local via rusqlite - Supabase: REST API via reqwest - Printer: USB ESC/POS for TM-T20 - Frontend: vanilla HTML (form-v9.3 ported) - Build: GitHub Actions for Linux/Windows/macOS
44 lines
922 B
JSON
44 lines
922 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Fechamento de Caixa",
|
|
"identifier": "com.ofrangao.fechamento-caixa",
|
|
"version": "1.0.0",
|
|
"build": {
|
|
"beforeBuildCommand": "",
|
|
"beforeDevCommand": "",
|
|
"frontendDist": "../src"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Fechamento de Caixa — O Frangão",
|
|
"width": 1100,
|
|
"height": 780,
|
|
"minWidth": 900,
|
|
"minHeight": 650,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"center": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"withGlobalTauri": true
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"windows": {
|
|
"webviewInstallMode": { "type": "embedBootstrapper" }
|
|
}
|
|
}
|
|
}
|