fix(runtime-config): add missing zod dependency to Clock and Contacts web apps

Added zod ^3.25.76 to package.json dependencies for:
- @clock/web
- @contacts/web

This fixes build failures in pre-push hook where runtime.ts config validation
required zod but it wasn't listed as a dependency.

Calendar and Chat apps already had zod installed (^4.2.0).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Wuesteon 2025-12-15 22:44:24 +01:00
parent b8d1067414
commit 22af71883e
3 changed files with 353 additions and 224 deletions

View file

@ -48,7 +48,8 @@
"d3": "^7.9.0",
"svelte-dnd-action": "^0.9.68",
"svelte-i18n": "^4.0.1",
"topojson-client": "^3.1.0"
"topojson-client": "^3.1.0",
"zod": "^3.25.76"
},
"type": "module"
}

View file

@ -54,7 +54,8 @@
"d3-zoom": "^3.0.0",
"date-fns": "^4.1.0",
"lucide-svelte": "^0.556.0",
"svelte-i18n": "^4.0.1"
"svelte-i18n": "^4.0.1",
"zod": "^3.25.76"
},
"type": "module"
}