claude-usage-tracker
Version:
Advanced analytics for Claude Code usage with cost optimization, conversation length analysis, and rate limit tracking
73 lines (72 loc) • 1.76 kB
JSON
{
"name": "claude-usage-tracker",
"version": "1.3.2",
"description": "Advanced analytics for Claude Code usage with cost optimization, conversation length analysis, and rate limit tracking",
"main": "dist/index.js",
"type": "module",
"files": [
"dist/**/*",
"config/**/*",
"README.md",
"LICENSE"
],
"bin": {
"claude-usage": "dist/cli.js",
"claude-usage-tracker": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"format": "biome format --write .",
"prepublishOnly": "npm run build",
"lint:src": "biome check src/",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haasonsaas/claude-usage-tracker.git"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"usage",
"tracking",
"analytics",
"cost-optimization",
"conversation-analysis",
"rate-limit",
"cli",
"monitoring",
"efficiency",
"ai-usage",
"cost-tracking"
],
"author": "Jonathan Haas",
"license": "MIT",
"bugs": {
"url": "https://github.com/haasonsaas/claude-usage-tracker/issues"
},
"homepage": "https://github.com/haasonsaas/claude-usage-tracker#readme",
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"dependencies": {
"@types/js-yaml": "^4.0.9",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"date-fns": "^3.6.0",
"glob": "^11.0.3",
"js-yaml": "^4.1.0",
"zod": "^3.25.76"
}
}