-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 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
{
"name": "opencode-plugin-codex-usage",
"version": "0.1.1",
"license": "MIT",
"description": "OpenCode TUI plugin that shows live Codex usage limits in the session sidebar.",
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"codex",
"usage",
"quota",
"rate-limit",
"tui",
"sidebar",
"openai"
],
"homepage": "https://github.com/anaskhan96/opencode-plugin-codex-usage#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/anaskhan96/opencode-plugin-codex-usage.git"
},
"bugs": {
"url": "https://github.com/anaskhan96/opencode-plugin-codex-usage/issues"
},
"type": "module",
"exports": {
".": {
"import": "./tui.tsx"
},
"./tui": {
"import": "./tui.tsx"
}
},
"files": [
"docs",
"README.md",
"package.json",
"tui.tsx"
],
"scripts": {
"check": "bun -e \"import('@opentui/solid/runtime-plugin-support').then(() => import('./tui.tsx')).then(() => console.log('plugin import ok'))\""
},
"dependencies": {
"@opencode-ai/plugin": "latest",
"@opentui/solid": "^0.1.101",
"solid-js": "^1.9.10"
}
}