-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.36 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
{
"name": "@alxark/opencode-panel-apps",
"version": "0.1.7",
"description": "OpenCode TUI plugin: render a sidebar panel of periodic shell-command outputs, configured via opencode-panel-apps.jsonc.",
"type": "module",
"exports": {
"./tui": {
"types": "./dist/tui.d.ts",
"default": "./dist/tui.tsx"
}
},
"oc-plugin": [
"tui"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && node scripts/prepare-tui-dist.mjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"opencode",
"opencode-plugin",
"tui",
"sidebar",
"panel",
"solid-js"
],
"license": "MIT",
"author": "Alex Arakelian",
"repository": {
"type": "git",
"url": "git+https://github.com/alxark/opencode-panel-apps.git"
},
"bugs": {
"url": "https://github.com/alxark/opencode-panel-apps/issues"
},
"homepage": "https://github.com/alxark/opencode-panel-apps#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@opentui/solid": "^0.2.6",
"comment-json": "^5.0.0",
"solid-js": "^1.9.12"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.4.3"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.14.44",
"@types/node": "^22.0.0",
"typescript": "^5.9.3"
}
}