-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 930 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 930 Bytes
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
{
"name": "@rescript/react",
"version": "0.10.1",
"description": "React bindings for ReScript",
"files": [
"README.md",
"Changes.md",
"LICENSE",
"bsconfig.json",
"src/**/*.res",
"src/**/*.resi"
],
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "retest --with-dom test/*.bs.js"
},
"keywords": [
"rescript",
"react"
],
"author": "Ricky Vetter",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rescript-lang/rescript-react.git"
},
"homepage": "https://rescript-lang.org/docs/react/latest/introduction",
"devDependencies": {
"bs-platform": "^8.4.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rescript-test": "^2.0.5"
},
"peerDependencies": {
"bs-platform": ">=8.3.0",
"react": ">=16.8.1",
"react-dom": ">=16.8.1"
}
}