-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "react-hook-form-zod",
"description": "Typesafe forms with React Hook Form and Zod",
"version": "0.3.0",
"type": "module",
"author": "Luka Hartwig <[email protected]>",
"repository": "github:lukahartwig/react-hook-form-zod",
"license": "MIT",
"files": [
"dist",
"src"
],
"keywords": [
"zod",
"react-hook-form",
"form",
"validation",
"typescript"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": "./dist/index.js",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"format": "prettier --ignore-path .gitignore --write .",
"release": "pnpm build && changeset publish",
"test": "vitest typecheck"
},
"peerDependencies": {
"zod": "^3.21.4"
},
"dependencies": {
"@hookform/resolvers": "^3.1.1",
"react-hook-form": "^7.45.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@hookform/resolvers": "^3.1.1",
"@types/react": "^18.2.14",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-hook-form": "^7.45.1",
"typescript": "^5.1.6",
"vitest": "^0.32.2",
"zod": "^3.21.4"
}
}