-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 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
66
67
{
"name": "chakra-next-link",
"description": "Link, LinkButton and LinkIconButton utilities for chakra + next",
"author": "Fran Zekan",
"version": "2.0.0-6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/chakra-next-link.esm.js",
"scripts": {
"dev": "tsdx watch",
"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",
"next": ">=9",
"react": ">=16 || >=0.0.0-experimental-6a589ad71"
},
"devDependencies": {
"@chakra-ui/react": "^1.0.1",
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"@size-limit/preset-small-lib": "^4.6.0",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"babel-jest": "^26.3.0",
"framer-motion": "^2.9.4",
"husky": "^4.3.0",
"next": "^9.5.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"size-limit": "^4.6.0",
"tsdx": "^0.14.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/chakra-next-link.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/chakra-next-link.esm.js",
"limit": "10 KB"
}
]
}