@neeter/server
Advanced tools
@@ -33,2 +33,6 @@ import { type HookCallbackMatcher, type HookEvent, query } from "@anthropic-ai/claude-agent-sdk"; | ||
| hooks?: Partial<Record<HookEvent, HookCallbackMatcher[]>>; | ||
| /** Extra CLI flags forwarded to the Claude Code subprocess. */ | ||
| extraArgs?: Record<string, string | null>; | ||
| /** Environment variables forwarded to the Claude Code subprocess. */ | ||
| env?: Record<string, string | undefined>; | ||
| } | ||
@@ -35,0 +39,0 @@ export interface ResumeOptions { |
+2
-0
@@ -160,2 +160,4 @@ import { query, } from "@anthropic-ai/claude-agent-sdk"; | ||
| ...(init.hooks ? { hooks: init.hooks } : {}), | ||
| ...(init.extraArgs ? { extraArgs: init.extraArgs } : {}), | ||
| ...(init.env ? { env: init.env } : {}), | ||
| ...extraQueryOptions, | ||
@@ -162,0 +164,0 @@ }, |
+2
-2
| { | ||
| "name": "@neeter/server", | ||
| "version": "0.10.4", | ||
| "version": "0.10.5", | ||
| "description": "Hono server toolkit for building chat UIs on top of the Claude Agent SDK", | ||
@@ -24,3 +24,3 @@ "license": "MIT", | ||
| "dependencies": { | ||
| "@neeter/types": "0.10.4" | ||
| "@neeter/types": "0.10.5" | ||
| }, | ||
@@ -27,0 +27,0 @@ "peerDependencies": { |
44949
0.82%1011
0.6%+ Added
- Removed
Updated