-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "opencode-status-hud",
"version": "0.1.3",
"description": "Real-time usage HUD plugin for OpenCode CLI — shows provider API utilization, context tokens, cost, and agent info",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"opencode-status-hud": "bin/opencode-status-hud.js"
},
"files": [
"dist",
"bin",
"docs/guide/installation.md",
"README.md"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./api": {
"types": "./dist/src/api.d.ts",
"import": "./dist/src/api.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Two-Weeks-Team/opencode-status-hud"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "npm run typecheck",
"test": "vitest run",
"build": "tsc -p tsconfig.build.json",
"verify:tmux": "bash scripts/verify-tmux-runtime.sh",
"ci": "npm run lint && npm run test && npm run build",
"prepublishOnly": "npm run ci"
},
"devDependencies": {
"@types/node": "22.13.10",
"typescript": "5.8.2",
"vitest": "3.0.9"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.10",
"jsonc-parser": "^3.3.1"
}
}