-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 945 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "cost-guardian",
"version": "2.0.0",
"description": "Real-time cost tracking and budget management for Claude Code",
"main": "scripts/estimator.js",
"scripts": {
"test": "node scripts/pricing.js list && node scripts/store.js init && echo 'All checks passed'",
"init-db": "node scripts/store.js init",
"report": "node scripts/reporter.js session ${CLAUDE_SESSION_ID:-test}",
"daily": "node scripts/reporter.js daily 7"
},
"keywords": [
"claude-code",
"cost-tracking",
"budget",
"tokens",
"claude",
"anthropic",
"ai-coding"
],
"author": "Manavarya Singh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Manavarya09/cost-guardian.git"
},
"bugs": {
"url": "https://github.com/Manavarya09/cost-guardian/issues"
},
"homepage": "https://github.com/Manavarya09/cost-guardian#readme",
"engines": {
"node": ">=16.0.0"
}
}