corrected zod version mismatch

This commit is contained in:
2025-11-17 19:37:55 -05:00
parent 28d4607768
commit 995d145384
2 changed files with 5 additions and 5 deletions

View File

@@ -8,13 +8,13 @@
"name": "@app/shared", "name": "@app/shared",
"version": "1.0.0", "version": "1.0.0",
"dependencies": { "dependencies": {
"zod": "^4.1.12" "zod": "^3.25.76"
} }
}, },
"node_modules/zod": { "node_modules/zod": {
"version": "4.1.12", "version": "3.25.76",
"resolved": "https://registry.npmjs.org/zod/-/zod-4.1.12.tgz", "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
"integrity": "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==", "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
"license": "MIT", "license": "MIT",
"funding": { "funding": {
"url": "https://github.com/sponsors/colinhacks" "url": "https://github.com/sponsors/colinhacks"

View File

@@ -4,6 +4,6 @@
"main": "index.ts", "main": "index.ts",
"type": "module", "type": "module",
"dependencies": { "dependencies": {
"zod": "^4.1.12" "zod": "^3.25.76"
} }
} }