- Add system tray with menu: Show, Hide, Lock, Check Updates, Quit - Integrate tauri-plugin-updater for seamless auto-updates - Add UpdateBanner component for update notifications - Add useAutoUpdater hook for update state management - Add useTrayEvents hook for tray event handling - Add Updates section to Settings page for manual update checks - Configure updater endpoints in tauri.conf.json - Exclude desktop-wallet from Cargo workspace (uses own Tauri deps)
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"name": "@synor/desktop-wallet",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri",
|
|
"tauri:dev": "tauri dev",
|
|
"tauri:build": "tauri build",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.0.0",
|
|
"@tauri-apps/plugin-fs": "^2.0.0",
|
|
"@tauri-apps/plugin-store": "^2.0.0",
|
|
"@tauri-apps/plugin-shell": "^2.0.0",
|
|
"@tauri-apps/plugin-dialog": "^2.0.0",
|
|
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
|
|
"@tauri-apps/plugin-updater": "^2.0.0",
|
|
"@tauri-apps/plugin-notification": "^2.0.0",
|
|
"@tauri-apps/plugin-process": "^2.0.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.21.0",
|
|
"zustand": "^4.4.7",
|
|
"lucide-react": "^0.303.0",
|
|
"clsx": "^2.1.0",
|
|
"tailwind-merge": "^2.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.0.0",
|
|
"@types/react": "^18.2.45",
|
|
"@types/react-dom": "^18.2.18",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"autoprefixer": "^10.4.16",
|
|
"postcss": "^8.4.32",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.10"
|
|
}
|
|
}
|