server/packages/kit/json-schema.ts

7 lines
213 B
TypeScript
Raw Normal View History

import { zodToJsonSchema } from "zod-to-json-schema";
import { manifestSchema } from "./schema.ts";
const jsonSchema = zodToJsonSchema(manifestSchema);
console.write(`${JSON.stringify(jsonSchema, null, 4)}\n`);