mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-05-13 18:32:39 +00:00
Phase 7 - Documentation: - Update CHANGELOG with all v2.0.0 changes - Document unified context tracking, cost display, hooks architecture - List all fixes: flickering, session handling, test reliability - Reference ADRs and research documents - Bump version to 2.0.0 All phases complete: - Phase 1: Research - Phase 2: Architecture decisions - Phase 3: Foundation (ESLint, Prettier, hooks) - Phase 4: Context system rewrite - Phase 5: Architecture refactor - Phase 6: Polish & features - Phase 7: Documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "claude-hud-tui",
|
|
"version": "2.0.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/index.js",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix",
|
|
"format": "prettier --write src/",
|
|
"format:check": "prettier --check src/",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"ink": "^5.0.1",
|
|
"react": "^18.3.1",
|
|
"minimist": "^1.2.8"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "^16.3.1",
|
|
"@types/minimist": "^1.2.5",
|
|
"@types/node": "^22.10.2",
|
|
"@types/react": "^18.3.12",
|
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
"@typescript-eslint/parser": "^8.51.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"husky": "^9.1.7",
|
|
"ink-testing-library": "^4.0.0",
|
|
"lint-staged": "^16.2.7",
|
|
"prettier": "^3.7.4",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|