mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-12 22:40:24 +00:00
deepMerge was exported from shared/parse.ts but never imported or called from any other module. Biome confirms it as an unused variable. Removing it eliminates dead code and the now-unused isPlainObject import. Co-authored-by: spawn-qa-bot <qa@openrouter.ai> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
313 B
TypeScript
9 lines
313 B
TypeScript
export { parseJsonObj, parseJsonWith } from "@openrouter/spawn-shared";
|
|
|
|
// CLI-specific schema — not in shared package
|
|
import * as v from "valibot";
|
|
|
|
/** Schema for responses containing a `version` field (npm registry, GitHub releases). */
|
|
export const PkgVersionSchema = v.object({
|
|
version: v.string(),
|
|
});
|