opencode-database-plugin 1.0.3 → 1.0.7

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 +1 -1
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -69,7 +69,7 @@ bun install
69
69
  bun run typecheck
70
70
 
71
71
  # Run unit tests
72
- bun test
72
+ bun run test
73
73
 
74
74
  # Run integration tests
75
75
  bun run test:integration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-database-plugin",
3
- "version": "1.0.3",
3
+ "version": "1.0.7",
4
4
  "description": "OpenCode plugin that logs sessions, messages, tool executions, and token usage to PostgreSQL",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -50,5 +50,8 @@
50
50
  },
51
51
  "peerDependencies": {
52
52
  "@opencode-ai/plugin": "*"
53
+ },
54
+ "engines": {
55
+ "node": ">=22"
53
56
  }
54
57
  }