mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-05-21 15:52:37 +00:00
- 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>
27 lines
566 B
JSON
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"
|
|
}
|
|
}
|