UNPKG

@mintlify/validation

Version:

Validates mint.json files

7 lines (6 loc) 163 B
import { z } from 'zod'; export const nameSchema = z .string() .trim() .nonempty() .describe('The name of the project, organization, or product');