Files
Jarrod Watts ef5f1c8b16 release: prepare v0.8.0
Releases hardened per-directory configuration overrides and configurable effort display formatting. Validated with the full suite, coverage, package dry run, zero runtime audit findings, artifact parity, and Node 18, Node 20, and Windows hosted CI.
2026-08-18 10:18:36 -04:00

38 lines
1.0 KiB
JSON

{
"name": "claude-hud",
"version": "0.8.0",
"description": "Real-time statusline HUD for Claude Code",
"type": "module",
"main": "dist/index.js",
"files": [
"dist/",
"src/",
"commands/",
"scripts/clean-dist.mjs",
".claude-plugin/"
],
"scripts": {
"build": "node scripts/clean-dist.mjs && 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": "^26.2.0",
"c8": "^11.0.0",
"typescript": "^7.0.2"
}
}