Files
claude-hud/tui/package.json
Jarrod Watts 617c90df3a chore: Bump version to 1.0.0
- Update tui/package.json to 1.0.0
- Update plugin.json to 1.0.0
- All 18 tests passing
- TypeScript strict mode verified
- No console.log statements

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 13:38:52 +11:00

27 lines
566 B
JSON

{
"name": "claude-hud-tui",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"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": "^5.7.2",
"vitest": "^4.0.16"
}
}