Skip to content

Commit

Permalink
Merge pull request #67 from hack-dance/align-zod-peers
Browse files Browse the repository at this point in the history
align zod peers to common req from the zod to json schema package
  • Loading branch information
roodboi authored Jul 9, 2024
2 parents 561e345 + b430e47 commit 37d59bc
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 12 deletions.
9 changes: 9 additions & 0 deletions .changeset/clean-items-search.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"evalz": minor
"stream-hooks": minor
"llm-polyglot": minor
"schema-stream": minor
"zod-stream": minor
---

updating required peer dep on zod to better align with all other packages as well as the one required ecternal zod to json schema dependency.
2 changes: 1 addition & 1 deletion apps/next-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@
"use-debounce": "^9.0.4",
"use-immer": "^0.9.0",
"vaul": "^0.7.9",
"zod": "3.22.4"
"zod": "^3.23.3"
}
}
2 changes: 1 addition & 1 deletion apps/www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@
"use-debounce": "^9.0.4",
"use-immer": "^0.9.0",
"vaul": "^0.7.9",
"zod": "3.22.4"
"zod": "^3.23.3"
}
}
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/constants/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"eslint": "^8.53.0",
"typescript": "^5.2.2",
"ramda": "^0.29.0",
"zod": "3.22.4"
"zod": "^3.23.3"
},
"peerDependencies": {},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"tippy.js": "^6.3.7",
"use-debounce": "^9.0.4",
"vaul": "^0.7.9",
"zod": "3.22.4"
"zod": "^3.23.3"
},
"peerDependencies": {
"react": "^18.2.0",
Expand Down
4 changes: 2 additions & 2 deletions public-packages/evalz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"peerDependencies": {
"@instructor-ai/instructor": "latest",
"openai": ">=4.28.0",
"zod": ">=3.22.4"
"zod": "^3.23.3"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
Expand All @@ -61,7 +61,7 @@
"tsup": "^8.0.1",
"typescript": "^5.2.2",
"ramda": "^0.29.0",
"zod": "3.22.4"
"zod": "^3.23.3"
},
"dependencies": {
"fastest-levenshtein": "^1.0.16"
Expand Down
2 changes: 1 addition & 1 deletion public-packages/hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"zod-stream": "^1.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": ">=3.22.4"
"zod": "^3.23.3"
},
"dependencies": {}
}
4 changes: 2 additions & 2 deletions public-packages/schemaStream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
"eslint": "^8.53.0",
"tsup": "^8.0.1",
"typescript": "^5.2.2",
"zod": "3.22.4"
"zod": "^3.23.3"
},
"peerDependencies": {
"zod": "3.22.4"
"zod": "^3.23.3"
},
"dependencies": {
"ramda": "^0.29.0"
Expand Down
6 changes: 3 additions & 3 deletions public-packages/zod-stream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
"homepage": "https://island.novy.work",
"dependencies": {
"schema-stream": "^3.1.0",
"zod-to-json-schema": "^3.22.3"
"zod-to-json-schema": "^3.23.1"
},
"peerDependencies": {
"openai": ">=4.24.1",
"zod": ">=3.22.4"
"zod": "^3.23.3"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
Expand All @@ -61,6 +61,6 @@
"tsup": "^8.0.1",
"typescript": "^5.2.2",
"ramda": "^0.29.0",
"zod": "3.22.4"
"zod": "^3.23.3"
}
}

0 comments on commit 37d59bc

Please sign in to comment.