This update introduces a new script to generate application icons in various sizes, including 32x32, 64x64, 128x128, and 512x512 pixels. The generated icons are now included in the Tauri configuration, ensuring that the application has the appropriate icons for different contexts. - Added a script for generating icons from a source image - Updated Tauri configuration to reference new icon sizes - Included multiple icon formats for better compatibility
34 lines
898 B
JSON
34 lines
898 B
JSON
{
|
|
"name": "git-lite",
|
|
"version": "2026.7.15",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite --host 127.0.0.1",
|
|
"build": "vite build",
|
|
"icons": "node scripts/generate-app-icons.mjs",
|
|
"preview": "vite preview --host 127.0.0.1",
|
|
"tauri": "tauri",
|
|
"tauri:dev": "tauri dev",
|
|
"tauri:build": "tauri build",
|
|
"check": "svelte-check --tsconfig ./tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"@lucide/svelte": "^1.21.0",
|
|
"@tailwindcss/vite": "^4.3.1",
|
|
"@tauri-apps/api": "^2.5.0",
|
|
"@tauri-apps/plugin-dialog": "^2.7.1",
|
|
"@tauri-apps/plugin-updater": "^2.10.1",
|
|
"simple-icons": "^16.24.1",
|
|
"svelte": "^5.0.0",
|
|
"tailwindcss": "^4.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
|
"@tauri-apps/cli": "^2.5.0",
|
|
"svelte-check": "^4.0.0",
|
|
"typescript": "^5.6.0",
|
|
"vite": "^6.0.0"
|
|
}
|
|
}
|