-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.5 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-usage-panel",
"version": "0.1.1",
"description": "Sidebar token-usage and cost panel for the opencode TUI. Breaks a session down by model with per-model cost, context usage, and configurable peak/off-peak pricing.",
"author": "shiv kumar",
"repository": {
"type": "git",
"url": "git+https://github.com/shiv-source/opencode-usage-panel.git"
},
"homepage": "https://github.com/shiv-source/opencode-usage-panel",
"bugs": {
"url": "https://github.com/shiv-source/opencode-usage-panel/issues"
},
"type": "module",
"license": "MIT",
"scripts": {
"build": "node scripts/build.mjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"main": "./dist/tui.js",
"exports": {
".": {
"import": "./dist/tui.js"
},
"./tui": {
"import": "./dist/tui.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"opencode",
"opencode-plugin",
"tui",
"tokens",
"usage",
"cost"
],
"peerDependencies": {
"@opencode-ai/plugin": ">=1.18.0",
"@opentui/core": ">=0.4.5",
"@opentui/solid": ">=0.4.5",
"solid-js": "*"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.18.30",
"@opentui/core": "^0.5.11",
"@opentui/solid": "^0.5.11",
"esbuild": "^0.28.2",
"esbuild-plugin-solid": "^0.6.0",
"solid-js": "^1.9.12",
"typescript": "^5.9.3"
},
"engines": {
"opencode": ">=1.18.0"
}
}