-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.15 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
{
"name": "opencode-context-view",
"version": "0.1.0",
"description": "OpenCode plugin to visualize context usage and inspect hidden context: system prompt, tool definitions and injections",
"type": "module",
"author": "ReStranger",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ReStranger/opencode-context-view.git"
},
"keywords": [
"opencode",
"opencode-plugin",
"tui-plugin",
"context",
"tokens"
],
"engines": {
"node": ">=20"
},
"exports": {
".": "./src/server/index.ts",
"./server": "./src/server/index.ts",
"./tui": "./src/tui/index.tsx"
},
"files": [
"src"
],
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@opencode-ai/plugin": "beta"
},
"peerDependencies": {
"@opencode-ai/theme": "beta",
"@opentui/core": ">=0.5.6",
"@opentui/solid": ">=0.5.6",
"solid-js": ">=1.9.0"
},
"devDependencies": {
"@opencode-ai/theme": "beta",
"@opentui/core": "^0.5.6",
"@opentui/solid": "^0.5.6",
"@types/bun": "^1.3.0",
"solid-js": "^1.9.0",
"typescript": "^5.9.0"
}
}