Adds Git LFS support to the backend API and related UI. The app now exposes commands to inspect, install, track and pull. A sidecar git-lfs binary is bundled and a prep script is added. This prepares the correct binary for each target platform. - Expose Git LFS status and management commands in API - Bundle and prepare a sidecar git-lfs binary for targets - Update packaging, docs, and README with LFS notes
35 lines
957 B
JSON
35 lines
957 B
JSON
{
|
|
"name": "gitty",
|
|
"version": "2026.8.4",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite --host 127.0.0.1",
|
|
"build": "vite build",
|
|
"prepare:lfs": "node scripts/prepare-git-lfs-sidecar.mjs",
|
|
"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"
|
|
}
|
|
}
|