mirror of
https://github.com/armbian/imager.git
synced 2026-01-06 12:31:28 -08:00
- Add tauri-plugin-updater and tauri-plugin-process dependencies - Configure updater endpoint for GitHub Releases - Rewrite UpdateModal with download progress and changelog display - Add update-related i18n translations (15 languages) - Configure createUpdaterArtifacts for .sig file generation - Update workflow to use correct bundle types for each platform
61 lines
1.7 KiB
JSON
61 lines
1.7 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-shell": "^2.3.3",
|
|
"@tauri-apps/plugin-updater": "^2",
|
|
"@tauri-apps/plugin-process": "^2",
|
|
"@types/qrcode": "^1.5.6",
|
|
"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"
|
|
},
|
|
"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"
|
|
}
|
|
}
|