mirror of
https://github.com/srbhr/Resume-Matcher.git
synced 2026-01-19 15:27:13 +00:00
- Add processing_status field to track resume parsing state (pending, processing, ready, failed) - Improve LLM prompts with concrete JSON examples for better free model compatibility - Fix JSON extraction to handle responses without outer braces - Add Swiss-themed delete confirmation dialog component - Fix stale localStorage when database is deleted (auto-clear on 404) - Update dashboard to show real-time processing status with visual indicators - Update resume viewer with contextual error messages for different states - Remove on-demand LLM parsing that caused repeated failures 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
861 B
JSON
36 lines
861 B
JSON
{
|
|
"name": "ui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
|
|
"format": "prettier --write ."
|
|
},
|
|
"dependencies": {
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^0.501.0",
|
|
"next": "^16.1.1",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"tailwind-merge": "^3.4.0",
|
|
"tw-animate-css": "^1.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9.27.0",
|
|
"eslint-config-next": "15.3.0",
|
|
"eslint-config-prettier": "^10.1.5",
|
|
"eslint-plugin-prettier": "^5.4.0",
|
|
"prettier": "^3.5.3",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|