Skip to content

Commit e2a8714

Browse files
fix: Go back to zod/v3 (#59)
1 parent a9544e2 commit e2a8714

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"dist"
3636
],
3737
"scripts": {
38-
"build": "yarn run build:code && yarn run build:schema",
38+
"build": "yarn run build:code",
3939
"build:code": "tsc",
4040
"build:schema": "node ./scripts/build-dxt-schema.js",
4141
"dev": "tsc --watch",

src/schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as z from "zod/v4";
1+
import * as z from "zod";
22

33
export const McpServerConfigSchema = z.object({
44
command: z.string(),

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type * as z from "zod/v4";
1+
import type * as z from "zod";
22

33
import type {
44
DxtManifestAuthorSchema,

0 commit comments

Comments
 (0)