json2zod
Version:
A CLI tool and library to convert JSON to Zod schemas with optional OpenAPI examples.
35 lines (34 loc) • 740 B
JSON
{
"name": "json2zod",
"version": "1.0.1",
"description": "A CLI tool and library to convert JSON to Zod schemas with optional OpenAPI examples.",
"main": "dist/generator.js",
"types": "dist/generator.d.ts",
"bin": {
"json2zod": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"zod",
"schema",
"json",
"cli",
"openapi",
"zod-openapi",
"typescript"
],
"author": "Yannick Burkard",
"license": "MIT",
"homepage": "https://json2zod.pages.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/Drarox/json2zod.git"
},
"devDependencies": {
"@types/node": "^24.0.3",
"typescript": "^5.8.3"
}
}