zenstack/packages/zod/package.json
github-actions[bot] 87644178b3
[CI] Bump version 3.7.1 (#2678)
Co-authored-by: ymc9 <104139426+ymc9@users.noreply.github.com>
2026-05-22 08:31:58 -07:00

59 lines
1.6 KiB
JSON

{
"name": "@zenstackhq/zod",
"displayName": "ZenStack Zod Integration",
"description": "Automatically deriving Zod schemas from ZModel schemas",
"version": "3.7.1",
"type": "module",
"author": {
"name": "ZenStack Team",
"email": "contact@zenstack.dev"
},
"homepage": "https://zenstack.dev",
"repository": {
"type": "git",
"url": "https://github.com/zenstackhq/zenstack"
},
"license": "MIT",
"scripts": {
"build": "tsc --noEmit && tsdown",
"watch": "tsdown --watch",
"lint": "eslint src --ext ts",
"test": "vitest run",
"pack": "pnpm pack",
"test:generate": "tsx ../../scripts/test-generate.ts ."
},
"keywords": [
"zenstack",
"zod"
],
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"dependencies": {
"@zenstackhq/schema": "workspace:*",
"decimal.js": "catalog:"
},
"devDependencies": {
"@zenstackhq/eslint-config": "workspace:*",
"@zenstackhq/tsdown-config": "workspace:*",
"@zenstackhq/typescript-config": "workspace:*",
"@zenstackhq/vitest-config": "workspace:*",
"zod": "^4.1.0"
},
"peerDependencies": {
"zod": "catalog:"
},
"funding": "https://github.com/sponsors/zenstackhq"
}