UNPKG

zod-prime

Version:

Enhance Zod with real-world schema utilities for production-grade apps.

68 lines (67 loc) 1.84 kB
{ "name": "zod-prime", "version": "1.0.1", "description": "Enhance Zod with real-world schema utilities for production-grade apps.", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "git@github.com:Sufo10/zod-prime.git" }, "homepage": "https://github.com/Sufo10/zod-prime#readme", "bugs": { "url": "https://github.com/Sufo10/zod-prime/issues" }, "files": [ "dist" ], "engines": { "node": ">=16" }, "scripts": { "build": "tsup src/index.ts --dts --format esm,cjs --out-dir dist", "test": "vitest run", "test:watch": "vitest watch", "test:coverage": "vitest run --coverage", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "prepare": "husky install", "prepublishOnly": "npm run build && npm test && npm run lint", "docs": "typedoc --out docs src/index.ts", "clean": "rm -rf dist coverage docs" }, "keywords": [ "zod", "validation", "typescript", "schema", "utility", "validation-schema", "type-safe", "typescript-library" ], "author": "zod-prime (https://github.com/zod-prime)", "license": "MIT", "peerDependencies": { "zod": "^3.22.0" }, "devDependencies": { "@types/node": "^24.0.1", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "@vitest/coverage-v8": "^3.2.3", "eslint": "^8.0.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.4.1", "husky": "^9.0.0", "lint-staged": "^16.1.0", "prettier": "^3.5.3", "tsup": "^7.2.0", "typedoc": "^0.28.5", "typescript": "^5.0.0", "vitest": "^1.2.0", "zod": "^3.22.0" } }