-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 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
{
"name": "opencode-limits-sidebar",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"description": "OpenCode plugin that displays usage limits in the TUI sidebar",
"main": "./dist/server.js",
"types": "./dist/server.d.ts",
"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",
"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/node": "^20.0.0",
"@vitest/coverage-v8": "^4.1.2",
"jsdom": "^29.0.1",
"typescript": "^5.0.2",
"vitest": "^4.1.2"
}
}