Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/plugins/openapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@
"semver": "^7.5.2",
"ts-pattern": "^4.3.0",
"yaml": "^2.2.2",
"zod": "^3.22.4",
"zod-validation-error": "^1.5.0"
},
"peerDependencies": {
"zod": "catalog:"
},
"devDependencies": {
"@readme/openapi-parser": "^2.4.0",
"@types/pluralize": "^0.0.29",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/trpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"tslib": "^2.4.1"
},
"peerDependencies": {
"zod": "^3.22.4"
"zod": "catalog:"
},
"devDependencies": {
"@trpc/next": "^10.32.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@
"ts-pattern": "^4.3.0",
"tslib": "^2.4.1",
"uuid": "^9.0.0",
"zod": "^3.22.4",
"zod-validation-error": "^1.5.0"
},
"peerDependencies": {
"@prisma/client": "5.0.0 - 6.13.x"
"@prisma/client": "5.0.0 - 6.13.x",
"zod": "catalog:"
},
"author": {
"name": "ZenStack Team"
Expand Down
4 changes: 2 additions & 2 deletions packages/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@
"vscode-languageserver": "^8.0.2",
"vscode-languageserver-textdocument": "^1.0.7",
"vscode-uri": "^3.0.6",
"zod": "^3.22.4",
"zod-validation-error": "^1.5.0"
},
"peerDependencies": {
"prisma": "5.0.0 - 6.13.x"
"prisma": "5.0.0 - 6.13.x",
"zod": "catalog:"
},
"devDependencies": {
"@prisma/client": "6.13.x",
Expand Down
4 changes: 3 additions & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@
"superjson": "^1.13.0",
"ts-japi": "^1.10.1",
"url-pattern": "^1.0.3",
"zod": "^3.22.4",
"zod-validation-error": "^1.5.0",
"decimal.js": "^10.4.2"
},
"peerDependencies": {
"zod": "catalog:"
},
"devDependencies": {
"@nestjs/common": "^10.3.7",
"@nestjs/platform-express": "^10.3.7",
Expand Down
41 changes: 22 additions & 19 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ packages:
catalog:
ts-morph: ^26.0.0
typescript: ~5.8.0
zod: ^3.25.0
2 changes: 1 addition & 1 deletion script/test-scaffold.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function run(cmd: string) {

run('npm init -y');
run(
'npm i --no-audit --no-fund typescript@~5.8.0 [email protected] @prisma/[email protected] zod@^3.22.4 decimal.js @types/node'
'npm i --no-audit --no-fund typescript@~5.8.0 [email protected] @prisma/[email protected] zod@^3.25.0 decimal.js @types/node'
);

console.log('Test scaffold setup complete.');
Loading