prisma-gen-zod
v0.0.0
Published
A Prisma generator that creates Zod schemas for all of your models
Downloads
4
Readme
PRISMA-GEN-ZOD
Generate zod models from Prisma schema.
Installation
npm install prisma-gen-zod
Usage
In your prisma schema, include the custom generator:
generator zod {
provider = "prisma-gen-zod"
output = "../prisma-zod"
}
run prisma generate
to generate the zod models.