项目文件夹

文件
T
Jarrod Watts 813516c32a
Release / release (push) Has been cancelled
release: 0.2.1
Bump package, lockfile, plugin metadata, and marketplace metadata to 0.2.1. Document the #617, #619, and #625 fixes in CHANGELOG.md. Verified locally with npm ci, npm run build, npm test, npm run test:coverage, version metadata checks, and dist/index.js presence. GitHub CI passed on Node 18 and 20.
2026-06-18 15:56:05 -04:00

37 行
1002 B
JSON

{
"name": "claude-hud",
"version": "0.2.1",
"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.9.3",
"c8": "^11.0.0",
"typescript": "^6.0.3"
}
}