opencode-project-panel 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -7,18 +7,21 @@ OpenCode TUI plugin that adds a bottom bar with:
|
|
|
7
7
|
|
|
8
8
|
## Install
|
|
9
9
|
|
|
10
|
-
Add the package to your OpenCode configuration
|
|
10
|
+
Add the package to your OpenCode TUI configuration (`tui.json` or
|
|
11
|
+
`tui.jsonc`):
|
|
11
12
|
|
|
12
|
-
```
|
|
13
|
+
```jsonc
|
|
13
14
|
{
|
|
14
|
-
"$schema": "https://opencode.ai/
|
|
15
|
+
"$schema": "https://opencode.ai/tui.json",
|
|
15
16
|
"plugin": ["opencode-project-panel"]
|
|
16
17
|
}
|
|
17
18
|
```
|
|
18
19
|
|
|
19
|
-
OpenCode installs npm plugins automatically at startup.
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
OpenCode installs npm TUI plugins automatically at startup. Do not add this
|
|
21
|
+
package to the server plugin list in `opencode.json`; this package is a TUI
|
|
22
|
+
plugin and exposes the `./tui` entrypoint. The plugin uses the current project
|
|
23
|
+
configuration (`opencode.json` or `opencode.jsonc`) when editing permissions
|
|
24
|
+
and MCP settings.
|
|
22
25
|
|
|
23
26
|
## Shortcuts
|
|
24
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-project-panel",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "OpenCode TUI plugin with a file manager and permissions panels",
|
|
6
6
|
"repository": {
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/chenkumi/opencode-project-panel/issues"
|
|
13
13
|
},
|
|
14
|
-
"main": "dist/index.js",
|
|
15
14
|
"exports": {
|
|
16
|
-
".": "./dist/index.js"
|
|
15
|
+
".": "./dist/index.js",
|
|
16
|
+
"./tui": "./dist/index.js"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"dist",
|