From c3eb96d052fde57e2b0da334d762312b939ebdfd Mon Sep 17 00:00:00 2001 From: Felix Rieseberg Date: Thu, 10 Jul 2025 15:27:17 -0700 Subject: [PATCH] fix: Go back to zod/v3 --- package.json | 2 +- src/schemas.ts | 2 +- src/types.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e6e04ca..0073631 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "dist" ], "scripts": { - "build": "yarn run build:code && yarn run build:schema", + "build": "yarn run build:code", "build:code": "tsc", "build:schema": "node ./scripts/build-dxt-schema.js", "dev": "tsc --watch", diff --git a/src/schemas.ts b/src/schemas.ts index eebb4c2..151286f 100644 --- a/src/schemas.ts +++ b/src/schemas.ts @@ -1,4 +1,4 @@ -import * as z from "zod/v4"; +import * as z from "zod"; export const McpServerConfigSchema = z.object({ command: z.string(), diff --git a/src/types.ts b/src/types.ts index 5b8aafc..5813089 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,4 +1,4 @@ -import type * as z from "zod/v4"; +import type * as z from "zod"; import type { DxtManifestAuthorSchema,