-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 1.86 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
{
"name": "rescript-chakra",
"version": "1.2.0",
"description": "⚡️ ReScript bindings for @chakra-ui/react",
"keywords": [
"rescript",
"react",
"chakra-ui",
"ui-component",
"bindings"
],
"author": "ri7nz <[email protected]>",
"license": "MIT",
"homepage": "https://rescript-chakra.vercel.app/",
"publishConfig": {
"access": "public"
},
"files": [
"src/**/*.re",
"src/**/*.rei",
"src/**/*.res",
"src/**/*.resi",
"rescript.json"
],
"repository": "https://github.com/rescript-ui/rescript-chakra",
"bugs": "https://github.com/rescript-ui/rescript-chakra/issues",
"packageManager": "[email protected]",
"scripts": {
"start": "rescript build -w",
"prebuild": "rescript clean",
"build": "rescript build -with-deps",
"clean": "rescript clean",
"ci": "yarn install --immutable",
"pretest": "yarn build",
"test": "vitest run",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"prettier": {
"trailingComma": "all"
},
"lint-staged": {
"*.{md,json,js}": [
"prettier --write"
],
"*.{res,resi}": [
"rescript format"
]
},
"devDependencies": {
"@chakra-ui/react": "1.6.8",
"@emotion/react": "11.4.1",
"@emotion/styled": "11.3.0",
"@rescript/react": "0.13.0",
"@semantic-release/changelog": "^6",
"@semantic-release/git": "^10",
"@semantic-release/npm": "^12",
"@vitest/coverage-v8": "^2.0.5",
"framer-motion": "4.1.17",
"husky": "7.0.2",
"lint-staged": "11.1.2",
"pinst": "3.0.0",
"prettier": "2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rescript": "^11",
"rescript-vitest": "^1.4.0",
"semantic-release": "^24",
"vitest": "^2.0.5"
},
"peerDependencies": {
"@chakra-ui/react": ">=1.6.3",
"@rescript/react": "0.10.3"
}
}