Skip to content

Commit

Permalink
fix: change to peerDependencies (#135)
Browse files Browse the repository at this point in the history
* fix: change to `peerDependencies`

* fix: change to `peerDependencies`
  • Loading branch information
himself65 authored Nov 28, 2024
1 parent caa7572 commit a688f47
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
12 changes: 8 additions & 4 deletions package-lock.json

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

7 changes: 5 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,17 @@
"@types/react-dom": "^18.2.19",
"eslint": "^8.57.0",
"tsup": "^8.3.0",
"typescript": "^5.3.3"
"typescript": "^5.3.3",
"react-hook-form": "^7.53.0"
},
"dependencies": {
"@autoform/core": "*",
"@autoform/zod": "*",
"@autoform/yup": "*",
"@hookform/resolvers": "^3.9.0",
"react": "^18.2.0",
"react": "^18.2.0"
},
"peerDependencies": {
"react-hook-form": "^7.53.0"
}
}
5 changes: 3 additions & 2 deletions packages/shadcn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10",
"eslint": "^8.57.0",
"react-hook-form": "^7.53.0",
"postcss": "^8",
"postcss-load-config": "^6",
"tailwindcss": "*",
Expand All @@ -54,13 +55,13 @@
"lucide-react": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-day-picker": "^8.10.1",
"react-hook-form": "^7.53.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.3.0",
"zod": "^3.23.8"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-hook-form": "^7.53.0"
}
}

0 comments on commit a688f47

Please sign in to comment.