-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.57 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
57
58
59
60
61
62
63
{
"name": "agentmeter-action",
"version": "0.1.0",
"description": "Track token usage and cost for AI agent runs in GitHub Actions. Works with Claude Code, Copilot, and Codex.",
"private": false,
"license": "MIT",
"author": {
"name": "Foo.software",
"url": "https://foo.software"
},
"homepage": "https://agentmeter.app",
"repository": {
"type": "git",
"url": "https://github.com/agentmeter/agentmeter-action.git"
},
"bugs": {
"url": "https://github.com/agentmeter/agentmeter-action/issues"
},
"keywords": [
"github-actions",
"ai",
"agent",
"claude",
"claude-code",
"token-usage",
"cost-tracking",
"agentmeter",
"anthropic",
"copilot",
"codex",
"observability"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc --outDir dist_ts_tmp && ncc build dist_ts_tmp/main.js -o dist --minify --license licenses.txt && rm -rf dist_ts_tmp",
"build:watch": "tsc --watch",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"biome check --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"fflate": "^0.8.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@types/node": "^20",
"@vercel/ncc": "^0.38.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"typescript": "^5.7.3",
"vitest": "^3.0.0"
}
}