Files
claude-hud/package.json
dependabot[bot] fb677baf9e chore(deps-dev): bump @types/node from 25.5.0 to 25.5.2
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 25.5.0 to 25.5.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.5.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-04 21:32:38 +00:00

37 lines
1003 B
JSON

{
"name": "claude-hud",
"version": "0.0.12",
"description": "Real-time statusline HUD for Claude Code",
"type": "module",
"main": "dist/index.js",
"files": [
"dist/",
"src/",
"commands/",
".claude-plugin/"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "npm run build && node --test",
"test:coverage": "npm run build && c8 --reporter=text --reporter=lcov node --test",
"test:update-snapshots": "UPDATE_SNAPSHOTS=1 npm test",
"test:stdin": "npm run build && echo '{\"model\":{\"display_name\":\"Opus\"},\"context_window\":{\"current_usage\":{\"input_tokens\":45000},\"context_window_size\":200000},\"transcript_path\":\"/tmp/test.jsonl\"}' | node dist/index.js"
},
"keywords": [
"claude-code",
"statusline",
"hud"
],
"author": "Jarrod Watts",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"c8": "^11.0.0",
"typescript": "^6.0.2"
}
}