-
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.79 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.79 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": "opencode-context-usage",
"version": "0.2.1",
"description": "OpenCode TUI plugin: a /context command with the exact token breakdown behind the built-in Context panel (last request) plus session-wide usage, subagent totals, cache hit rate and cost.",
"type": "module",
"license": "MIT",
"author": "Angelo Quijano Orduña <angelo@globoazul.pe>",
"homepage": "https://github.com/angeloper86/opencode-context-usage#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/angeloper86/opencode-context-usage.git"
},
"bugs": {
"url": "https://github.com/angeloper86/opencode-context-usage/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"opencode-tui",
"tui",
"plugin",
"context",
"tokens",
"cache",
"cost"
],
"exports": {
"./tui": {
"types": "./dist/tui.d.ts",
"import": "./dist/tui.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"opencode": ">=1.18.0 <2"
},
"peerDependencies": {
"@opentui/core": ">=0.4.5",
"@opentui/keymap": ">=0.4.5",
"@opentui/solid": ">=0.4.5"
},
"peerDependenciesMeta": {
"@opentui/core": {
"optional": true
},
"@opentui/keymap": {
"optional": true
},
"@opentui/solid": {
"optional": true
}
},
"devDependencies": {
"@opencode-ai/plugin": "^1.18.30",
"@opencode-ai/sdk": "^1.18.30",
"@opentui/core": "^0.5.11",
"@opentui/keymap": "^0.5.11",
"@opentui/solid": "^0.5.11",
"typescript": "^7.0.2"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json",
"pretest": "npm run build",
"test": "node --test",
"prepare": "npm run build"
}
}