papayu/src-tauri/tauri.conf.json
Yuriy de9c2660d5 Установка в Программы, убраны ТМЦ/Регламенты, фикс updater и версий Tauri
- tauri.conf.json: добавлен pubkey для плагина updater
- package.json: @tauri-apps/api и plugin-updater закреплены на 2.9.x
- App.tsx: убраны разделы ТМЦ и Регламенты из навигации и маршрутов
- scripts/install-to-applications.sh: установка .app в /Applications + сброс Launchpad
- Установить в Программы.command: запуск установки двойным кликом
- README: инструкция по установке в Программы и npm run install-app

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-10 16:48:16 +03:00

43 lines
1.1 KiB
JSON

{
"productName": "PAPA YU",
"version": "2.4.5",
"identifier": "com.papa-yu.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "PAPA YU",
"label": "main",
"width": 1024,
"height": 720,
"minWidth": 1024,
"minHeight": 720,
"resizable": true
}
]
},
"bundle": {
"active": true,
"targets": "all",
"icon": ["icons/icon.png"],
"resources": [],
"externalBin": [],
"copyright": "",
"category": "DeveloperTool",
"shortDescription": "PAPA YU",
"longDescription": "PAPA YU — анализ проекта и автоматические исправления"
},
"plugins": {
"updater": {
"pubkey": "-----BEGIN PUBLIC KEY-----\nMCowBQYDK4VwAyEAGbYECPx+5y2xOxR9jFGSnZ0k0lE=\n-----END PUBLIC KEY-----",
"endpoints": ["https://github.com/yrippert-maker/papayu/releases/latest/download/latest.json"]
}
}
}