tsoa-zod-validator
Version:
Zod validation decorators for tsoa
73 lines (72 loc) • 1.94 kB
JSON
{
"name": "tsoa-zod-validator",
"version": "0.1.0",
"description": "Zod validation decorators for tsoa",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "biome lint src/",
"lint:fix": "biome lint --apply src/",
"format": "biome format src/",
"format:fix": "biome format --write src/",
"check": "biome check src/",
"check:fix": "biome check --write src/",
"ci": "biome ci",
"dev": "tsc --watch",
"quality": "pnpm check && pnpm build",
"build:examples": "tsc -p tsconfig.examples.json",
"prepublishOnly": "pnpm quality"
},
"keywords": [
"tsoa",
"zod",
"validation",
"decorators",
"typescript",
"express",
"api",
"openapi",
"swagger"
],
"author": "qj365",
"license": "MIT",
"homepage": "https://github.com/qj365/tsoa-zod-validator#readme",
"repository": {
"type": "git",
"url": "https://github.com/qj365/tsoa-zod-validator.git"
},
"bugs": {
"url": "https://github.com/qj365/tsoa-zod-validator/issues"
},
"peerDependencies": {
"tsoa": ">=6.0.0",
"zod": ">=3.0.0"
},
"dependencies": {
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.15",
"express": "^5.1.0",
"jest": "^30.0.4",
"lefthook": "^1.12.2",
"ts-jest": "^29.4.0",
"tsoa": "^6.6.0",
"typescript": "^5.8.3",
"zod": "^4.0.5"
}
}