-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 858 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 858 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
35
36
37
38
39
40
41
{
"name": "@ymstar/agentmeter",
"version": "0.3.0",
"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"
],
"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"
}
}