claude-usage-monitor
Version:
Real-time CLI dashboard for monitoring Claude AI token usage with 5-hour session tracking
54 lines (53 loc) • 1.28 kB
JSON
{
"name": "claude-usage-monitor",
"version": "0.1.0",
"description": "Real-time CLI dashboard for monitoring Claude AI token usage with 5-hour session tracking",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"claude-usage": "dist/index.js"
},
"scripts": {
"build": "tsc && (echo '#!/usr/bin/env node' && cat dist/index.js) > dist/index.js.tmp && mv dist/index.js.tmp dist/index.js && chmod +x dist/index.js",
"dev": "bun index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"anthropic",
"usage",
"tokens",
"monitoring",
"cli",
"dashboard",
"ai",
"token-tracking",
"session-monitor"
],
"author": "sasha gudulin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agudulin/claude-usage-monitor.git"
},
"homepage": "https://github.com/agudulin/claude-usage-monitor#readme",
"bugs": {
"url": "https://github.com/agudulin/claude-usage-monitor/issues"
},
"dependencies": {
"ccusage": "latest"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}