UNPKG

zod

Version:

Typescript-first schema declaration and validation library with static type inference

63 lines (62 loc) 1.41 kB
{ "name": "zod", "version": "1.0.6", "description": "Typescript-first schema declaration and validation library with static type inference", "main": "./lib/main.js", "types": "./lib/main.d.ts", "files": [ "lib" ], "repository": { "type": "git", "url": "https://github.com/vriad/zod" }, "author": "Colin McDonnell <colin@vriad.com>", "license": "MIT", "sideEffects": false, "bugs": { "url": "https://github.com/vriad/zod/issues" }, "homepage": "https://github.com/vriad/zod", "dependencies": {}, "tags": [ "typescript", "schema", "validation", "type", "inference" ], "keywords": [ "typescript", "schema", "validation", "type", "inference" ], "include": [ "src" ], "exclude": [ "node_modules", "**/__tests__/*" ], "scripts": { "clean": "rm -rf lib/*", "build": "yarn run clean && tsc", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "test": "jest --config jestconfig.json", "prepare": "npm run build", "play": "nodemon -e ts -w . -x ts-node playground.ts" }, "devDependencies": { "@types/jest": "^25.1.4", "jest": "^25.1.0", "nodemon": "^2.0.2", "prettier": "^1.19.1", "ts-jest": "^25.2.1", "tslint": "^6.1.0", "tslint-config-prettier": "^1.18.0", "typescript": "^3.8.3" } }