-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.1 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.1 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@ymstar/agentmeter",
"version": "0.4.1",
"description": "Token usage and cost tracking for Claude Code",
"type": "module",
"bin": {
"agentmeter": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && cp -r src/dashboard/static dist/dashboard/",
"test": "vitest run",
"dev": "tsc -p tsconfig.json --watch"
},
"keywords": [
"ai",
"agent",
"token",
"metering",
"mcp",
"claude",
"claude-code",
"token-tracking",
"cost-monitoring",
"llm",
"dashboard",
"anthropic",
"cursor",
"gemini-cli",
"prompt-caching",
"developer-tools",
"cli",
"sqlite",
"token-usage",
"ai-cost",
"agent-metering"
],
"author": "",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.1.0"
},
"files": [
"dist",
"dist/dashboard/static"
],
"repository": {
"type": "git",
"url": "https://github.com/ymstar/agentmeter.git"
}
}