mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 13:54:01 +00:00
9 lines
263 B
TypeScript
Executable File
9 lines
263 B
TypeScript
Executable File
#!/usr/bin/env bun
|
|
|
|
import "zod-openapi/extend"
|
|
import { Config } from "../src/config/config"
|
|
import { zodToJsonSchema } from "zod-to-json-schema"
|
|
|
|
const result = zodToJsonSchema(Config.Info)
|
|
await Bun.write("config.schema.json", JSON.stringify(result, null, 2))
|