mirror of
https://github.com/sst/opencode.git
synced 2025-07-08 00:25:00 +00:00
8 lines
263 B
TypeScript
Executable file
8 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))
|