We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9544e2 commit e2a8714Copy full SHA for e2a8714
package.json
@@ -35,7 +35,7 @@
35
"dist"
36
],
37
"scripts": {
38
- "build": "yarn run build:code && yarn run build:schema",
+ "build": "yarn run build:code",
39
"build:code": "tsc",
40
"build:schema": "node ./scripts/build-dxt-schema.js",
41
"dev": "tsc --watch",
src/schemas.ts
@@ -1,4 +1,4 @@
1
-import * as z from "zod/v4";
+import * as z from "zod";
2
3
export const McpServerConfigSchema = z.object({
4
command: z.string(),
src/types.ts
-import type * as z from "zod/v4";
+import type * as z from "zod";
import type {
DxtManifestAuthorSchema,
0 commit comments