-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"name": "@aamkye/opencode-tools",
"version": "1.0.0",
"description": "OpenCode TUI sidebar plugin for GLM rate limit reset countdown",
"private": true,
"type": "module",
"exports": {
"./home": "./tui/home.tsx",
"./token-report": "./tui/token-report.tsx",
"./context": "./tui/context.tsx",
"./ses-tokens": "./tui/ses-tokens.tsx",
"./subagent": "./tui/subagent.tsx",
"./quota": "./tui/quota.tsx",
"./mcp": "./tui/mcp.tsx",
"./lsp": "./tui/lsp.tsx",
"./todo": "./tui/todo.tsx"
},
"files": [
"dist",
"plugin-manifest.json",
"tui",
"shared",
"README.md"
],
"scripts": {
"test": "node tests/compile-session-rename.mjs && node tests/compile-presentation.mjs && node --test tests/*.test.mjs",
"typecheck": "tsc --noEmit",
"build": "npm run build:plugins",
"build:plugins": "node build-plugins.mjs",
"deploy:local": "node deploy-plugins.mjs local",
"deploy:global": "node deploy-plugins.mjs global",
"build:session-rename": "node build-session-rename.mjs"
},
"keywords": [
"opencode",
"opencode-plugin",
"sidebar",
"glm",
"reset",
"countdown"
],
"license": "MIT",
"engines": {
"opencode": ">=1.18.1"
},
"dependencies": {
"@opencode-ai/plugin": "^1.3.3",
"@opentui/core": "^0.4.2",
"@opentui/solid": "^0.4.2",
"solid-js": "^1.9.12",
"string-width": "7.2.0"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^26.0.1",
"babel-preset-solid": "^1.9.12",
"esbuild": "^0.28.1",
"typescript": "^6.0.3"
}
}