-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 941 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 941 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
42
{
"name": "opencode-token-counter",
"version": "0.2.3",
"description": "Track token usage, cost, and provider/model statistics in OpenCode. Provides in-chat reports, CSV export, and a graphical web dashboard.",
"type": "module",
"main": "server.ts",
"exports": {
".": "./server.ts",
"./tui": "./tui.ts"
},
"files": [
"server.ts",
"tui.ts",
"lib/",
"web/",
"README.md"
],
"keywords": [
"opencode",
"plugin",
"token",
"usage",
"tracking",
"cost",
"analytics"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/coldhell7/Opencode-token-counter"
},
"bugs": {
"url": "https://github.com/coldhell7/Opencode-token-counter/issues"
},
"homepage": "https://github.com/coldhell7/Opencode-token-counter",
"dependencies": {
"@opencode-ai/plugin": ">=1.15.0"
},
"devDependencies": {
"bun-types": "latest"
}
}