-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@banburist/opencode-headsup",
"version": "0.2.4",
"description": "Live inference telemetry pinned to the OpenCode 2 sidebar.",
"license": "MIT",
"author": "charlesnutter",
"repository": {
"type": "git",
"url": "git+https://github.com/charlesnutter/opencode-headsup.git"
},
"type": "module",
"exports": {
"./tui": "./tui.tsx"
},
"devDependencies": {
"@opencode-ai/client": "0.0.0-beta-19271",
"@opencode-ai/plugin": "0.0.0-beta-19271",
"@opencode-ai/theme": "0.0.0-beta-19271",
"@opentui/core": "0.5.11",
"@opentui/solid": "0.5.11",
"@types/node": "^22.0.0",
"solid-js": "1.9.12",
"typescript": "^5.6.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "npm run typecheck && bun test/format.test.mjs && bun test/http.test.mjs && bun test/prometheus-text.test.mjs && bun test/universal.test.mjs && bun test/mtplx.test.mjs && bun test/omlx.test.mjs && bun test/llamacpp.test.mjs && bun test/prometheus.test.mjs && bun test/koboldcpp.test.mjs && bun test/splash.test.mjs && bun test/mlxserve.test.mjs && bun test/history.test.mjs && bun test/panels.test.mjs && bun test/references.test.mjs"
},
"files": [
"tui.tsx",
"format.ts",
"http.ts",
"prometheus-text.ts",
"universal.ts",
"history.ts",
"panels.ts",
"adapters/",
"README.md",
"LICENSE"
],
"keywords": [
"opencode",
"opencode-plugin",
"opencode2",
"tui",
"hud",
"telemetry",
"tokens-per-second",
"ttft",
"inference",
"llama.cpp",
"vllm",
"sglang",
"koboldcpp",
"mlx",
"mlx-serve",
"mtplx",
"omlx",
"splash",
"lmdeploy",
"aphrodite"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@opencode-ai/plugin": "0.0.0-beta-19271",
"@opentui/core": ">=0.5.10",
"@opentui/solid": ">=0.5.10",
"solid-js": ">=1.9.0"
}
}