mirror of
https://github.com/nimbold/Firelink.git
synced 2026-07-26 12:08:27 +00:00
6cf360bce0
- refactor(backend): use tokio::sync::Mutex for DbState and update commands to async - fix(backend): remove unconditional post-queue system action in scheduler - refactor(backend): remove dead WebSocket aria2 progress loop - fix(backend): use character count for deep link payload length check - fix(backend): implement dynamic port fallback for extension server - build(backend): apply macos codesigning step for release builds - security(backend): add explicitly defined Content-Security-Policy - fix(frontend): replace pause_download API call with remove_download for file cleanup - fix(frontend): resolve bug ignoring 0% progress reporting - fix(frontend): append instead of overwrite deep link URLs when Add Modal is open - style(frontend): append standard .dark class for dark mode themes - style(frontend): remove ghost row layout hack from download table - build: decouple typescript binding generation from build step
59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "firelink",
|
|
"private": true,
|
|
"version": "0.7.3",
|
|
"description": "A fast desktop download manager powered by Rust, Tauri, React, and TypeScript.",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/nimbold/Firelink",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nimbold/Firelink.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nimbold/Firelink/issues"
|
|
},
|
|
"keywords": [
|
|
"download-manager",
|
|
"tauri",
|
|
"rust",
|
|
"react",
|
|
"typescript",
|
|
"aria2",
|
|
"yt-dlp",
|
|
"desktop"
|
|
],
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"bindings": "cd src-tauri && cargo test export_bindings --lib",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri"
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/vite": "^4.3.0",
|
|
"@tauri-apps/api": "^2",
|
|
"@tauri-apps/plugin-dialog": "^2.7.1",
|
|
"@tauri-apps/plugin-notification": "^2.3.3",
|
|
"@tauri-apps/plugin-opener": "^2",
|
|
"lucide-react": "^1.17.0",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"zustand": "^5.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2",
|
|
"@types/react": "^19.1.8",
|
|
"@types/react-dom": "^19.1.6",
|
|
"@vitejs/plugin-react": "^6.0.2",
|
|
"autoprefixer": "^10.5.0",
|
|
"postcss": "^8.5.15",
|
|
"tailwindcss": "^4.3.0",
|
|
"typescript": "~5.8.3",
|
|
"vite": "^8.0.16"
|
|
}
|
|
}
|