server/packages/plugin-kit/json-schema.ts

7 lines
210 B
TypeScript
Raw Normal View History

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