-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.01 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@joserdf/opencode-usage-sidebar",
"version": "0.2.2",
"type": "module",
"license": "MIT",
"description": "OpenCode plugin that displays Claude/Codex/Copilot usage limits in the TUI sidebar, powered by usage-tui (Linux fork of opencode-limits-sidebar).",
"author": "joserdf",
"homepage": "https://github.com/joserdf/opencode-usage-sidebar#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/joserdf/opencode-usage-sidebar.git"
},
"bugs": {
"url": "https://github.com/joserdf/opencode-usage-sidebar/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"sidebar",
"usage",
"limits",
"claude",
"codex",
"copilot",
"tui",
"usage-tui"
],
"main": "./dist/server.js",
"types": "./dist/server.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js",
"config": {
"enabled": true
}
},
"./tui": {
"types": "./dist/index.d.ts",
"import": "./dist/index.jsx",
"config": {
"enabled": true,
"sidebar": true
}
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"dev": "opencode plugin dev",
"prepublishOnly": "npm run build",
"test": "npm run build && vitest run --coverage"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.2.0"
},
"dependencies": {
"@opentui/core": "^0.1.0",
"@opentui/solid": "^0.1.0",
"solid-js": "^1.8.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.3.2",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"@types/bun": "^1.3.13",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.1.2",
"jsdom": "^29.0.1",
"typescript": "^5.0.2",
"vitest": "^4.1.2"
}
}