@toninho09/opencode-cache-scope 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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +5 -17
package/README.md CHANGED
@@ -47,12 +47,14 @@ Or with options (see [Configuration](#configuration) below):
47
47
  }
48
48
  ```
49
49
 
50
- (Optional) Enable the sidebar widget in your `tui.json`:
50
+ (Optional) Enable the sidebar widget in your `tui.json`. Use the bare package
51
+ name — opencode resolves the `./tui` entrypoint from the package's `exports`
52
+ automatically, so do not append `/tui` yourself:
51
53
 
52
54
  ```json
53
55
  {
54
56
  "$schema": "https://opencode.ai/tui.json",
55
- "plugin": ["@toninho09/opencode-cache-scope/tui"]
57
+ "plugin": ["@toninho09/opencode-cache-scope"]
56
58
  }
57
59
  ```
58
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toninho09/opencode-cache-scope",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "opencode plugin that alerts you when prompt caching breaks mid-session",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -37,26 +37,14 @@
37
37
  "url": "https://github.com/toninho09/opencode-cache-scope/issues"
38
38
  },
39
39
  "dependencies": {
40
- "@opencode-ai/plugin": "latest"
41
- },
42
- "peerDependencies": {
43
- "@opentui/core": ">=0.3.4",
44
- "@opentui/keymap": ">=0.3.4",
45
- "@opentui/solid": ">=0.3.4"
46
- },
47
- "peerDependenciesMeta": {
48
- "@opentui/core": { "optional": true },
49
- "@opentui/keymap": { "optional": true },
50
- "@opentui/solid": { "optional": true }
40
+ "@opencode-ai/plugin": "latest",
41
+ "@opentui/solid": "0.3.4",
42
+ "solid-js": "1.9.12"
51
43
  },
52
44
  "devDependencies": {
53
45
  "typescript": "^5.9.3",
54
46
  "@types/node": "^25.2.2",
55
- "@types/bun": "latest",
56
- "@opentui/core": "0.3.4",
57
- "@opentui/keymap": "0.3.4",
58
- "@opentui/solid": "0.3.4",
59
- "solid-js": "1.9.12"
47
+ "@types/bun": "latest"
60
48
  },
61
49
  "scripts": {
62
50
  "test": "bun test"