mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-04-16 14:52:41 +00:00
Bumps [c8](https://github.com/bcoe/c8) from 10.1.3 to 11.0.0. - [Release notes](https://github.com/bcoe/c8/releases) - [Changelog](https://github.com/bcoe/c8/blob/main/CHANGELOG.md) - [Commits](https://github.com/bcoe/c8/compare/v10.1.3...v11.0.0) --- updated-dependencies: - dependency-name: c8 dependency-version: 11.0.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
903 B
JSON
31 lines
903 B
JSON
{
|
|
"name": "claude-hud",
|
|
"version": "0.0.7",
|
|
"description": "Real-time statusline HUD for Claude Code",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"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": "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.2.3",
|
|
"c8": "^11.0.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|