-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react-hook-form-chakra",
"description": "chakra ui bindings for react-hook-form",
"author": "Crhistian Ramirez",
"version": "1.0.2",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"keywords": [
"chakra",
"chakra-ui",
"react-hook-form",
"bindings",
"react",
"form validation"
],
"repository": {
"type": "git",
"url": "https://github.com/crhistianramirez/react-hook-form-chakra"
},
"bugs": "https://github.com/crhistianramirez/react-hook-form-chakra/issues",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"docs": "typedoc --tsconfig tsconfig.lib.json"
},
"devDependencies": {
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.5.4",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@hookform/resolvers": "^3.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.15.10",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"framer-motion": "^6.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"tslib": "^2.5.0",
"typedoc": "^0.23.28",
"typescript": "^4.9.3",
"vite": "^4.3.3",
"yup": "^1.0.2"
},
"peerDependencies": {
"@chakra-ui/react": "^2",
"react": ">=17",
"react-hook-form": "^7"
}
}