-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.04 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "chakra-form",
"description": "React hook form + chakra + react-select",
"author": "Fran Zekan",
"version": "0.4.9",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/chakra-form.esm.js",
"scripts": {
"dev": "tsdx watch",
"both": "concurrently \"yarn dev\" \"cd example && yarn dev\"",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src test example/pages",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"@chakra-ui/react": ">=1",
"@emotion/react": ">=11",
"@emotion/styled": ">=11",
"framer-motion": ">=2",
"react": ">=16 || >=0.0.0-experimental-6a589ad71",
"react-hook-form": "~7",
"react-select": ">=4"
},
"dependencies": {
"@hookform/resolvers": "^2.6.1",
"conditional-wrap": "^1.0.2"
},
"devDependencies": {
"@chakra-ui/react": "^1.6.2",
"@chakra-ui/system": "^1.6.6",
"@emotion/react": "11.4.0",
"@emotion/styled": "11.3.0",
"@size-limit/preset-small-lib": "^4.6.0",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-select": "^4.0.17",
"babel-jest": "^26.3.0",
"concurrently": "^6.2.1",
"framer-motion": "4.1.11",
"husky": "^4.3.0",
"np": "^7.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.12.0",
"react-select": "^4.3.1",
"size-limit": "^4.6.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"zod": "^3.5.1"
},
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/chakra-form.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/chakra-form.esm.js",
"limit": "10 KB"
}
],
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1",
"typescript": "4.3.5"
}
}