Fix peer dependency conflict by relaxing adapter-utils requirement
The peer dependency on @paperclipai/adapter-utils was pinned to >=2026.411.0-canary.8 which conflicts with the stable 2026.403.0 version used by other adapters (claude-k8s, hermes-k8s). Since the canary types (AdapterConfigSchema, getConfigSchema on ServerAdapterModule) are only needed at compile time, we can safely relax the peer dep to >=0.3.0 while keeping the canary as a devDependency for our own build. Bumps version to 0.1.13. Closes FAR-49 Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@farhoodliquor/paperclip-adapter-opencode-k8s",
|
"name": "@farhoodliquor/paperclip-adapter-opencode-k8s",
|
||||||
"version": "0.1.12",
|
"version": "0.1.13",
|
||||||
"description": "Paperclip adapter plugin that runs OpenCode agents as Kubernetes Jobs",
|
"description": "Paperclip adapter plugin that runs OpenCode agents as Kubernetes Jobs",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
"@kubernetes/client-node": "^1.0.0"
|
"@kubernetes/client-node": "^1.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@paperclipai/adapter-utils": ">=2026.411.0-canary.8"
|
"@paperclipai/adapter-utils": ">=0.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@paperclipai/adapter-utils": "^2026.411.0-canary.8",
|
"@paperclipai/adapter-utils": "^2026.411.0-canary.8",
|
||||||
|
|||||||
Reference in New Issue
Block a user