Files
imager/package.json
SuperKali 8e99d25c8d feat: add settings panel with theme, language, and developer options
Implement comprehensive settings modal with:
- Theme switching (light/dark/auto) with system preference detection
- Language selection for 17 languages with native name sorting
- Developer mode with detailed logging and log viewer
- About section with app info and external links
- Update notification improvements with reduced log spam

Technical improvements:
- Added ThemeContext with persistent state management
- Implemented memory-safe log file reading (5MB limit)
- Fixed all ESLint, TypeScript, and Clippy warnings
- Added JSDoc documentation for public APIs
- Updated README.md and DEVELOPMENT.md with new features
2025-12-30 09:59:24 +01:00

64 lines
1.8 KiB
JSON

{
"name": "armbian-imager",
"private": true,
"version": "1.0.0",
"description": "Flash Armbian OS images to SD cards and USB drives",
"author": "Armbian",
"maintainers": [
"SuperKali <hello@superkali.me>"
],
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"--dev": "Development commands",
"dev": "vite",
"build:dev": "tsc -b && vite build --mode development",
"tauri:dev": "tauri dev",
"tauri:build:dev": "tauri build --debug",
"--prod": "Production commands",
"build": "tsc -b && vite build",
"build:prod": "tsc -b && vite build --mode production",
"tauri:build": "tauri build",
"tauri:build:prod": "tauri build",
"--other": "Other commands",
"lint": "eslint .",
"preview": "vite preview",
"clean": "rm -rf node_modules dist src-tauri/target",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-process": "^2",
"@tauri-apps/plugin-shell": "^2.3.3",
"@tauri-apps/plugin-store": "^2.4.1",
"@tauri-apps/plugin-updater": "^2",
"@types/qrcode": "^1.5.6",
"ansi-to-html": "^0.7.0",
"i18next": "^25.7.2",
"lucide-react": "^0.560.0",
"qrcode": "^1.5.4",
"react": "^19.2.2",
"react-dom": "^19.2.2",
"react-i18next": "^16.5.0",
"twemoji": "^14.0.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tauri-apps/cli": "^2.9.6",
"@types/node": "^24.10.3",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.49.0",
"vite": "^7.2.4"
}
}