fix(llm-client): move zod to dependencies for Docker builds
The zod package was listed as peerDependency which isn't automatically installed in Docker production builds. Moving it to regular dependencies ensures the package builds correctly in CI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
111e934129
commit
cf6d47ff4e
|
|
@ -37,15 +37,14 @@
|
||||||
"schema",
|
"schema",
|
||||||
"validation"
|
"validation"
|
||||||
],
|
],
|
||||||
"dependencies": {},
|
"dependencies": {
|
||||||
"peerDependencies": {
|
"zod": "^4.1.12",
|
||||||
"zod": "^4.0.0"
|
"zod-to-json-schema": "^3.24.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^20.0.0",
|
"@types/node": "^20.0.0",
|
||||||
"typescript": "^5.0.0",
|
"typescript": "^5.0.0",
|
||||||
"vitest": "^1.0.0",
|
"vitest": "^1.0.0"
|
||||||
"zod": "^4.1.12"
|
|
||||||
},
|
},
|
||||||
"author": "Soroban Flashcards Team",
|
"author": "Soroban Flashcards Team",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue