forked from revery-ui/revery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
{
"name": "revery",
"version": "0.4.0",
"description": "App toolkit built with Reason",
"license": "MIT",
"bugs": { "url": "https://github.com/bryphe/revery/issues" },
"scripts": {
"build": "esy b",
"build:release": "esy b dune build --profile=release --root . -j4",
"build:js": "esy b dune build examples/Examples.bc.js",
"build:js:release": "esy b dune build examples/Examples.bc.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "esy b .ci/format.sh",
"doc": "refmterr esy dune build @doc --root ."
},
"homepage": "https://github.com/bryphe/revery#readme",
"esy": {
"build": [ "dune build --root . -j4" ],
"install": [
"esy-installer Revery.install", "esy-installer Revery_Core.install",
"esy-installer Revery_Geometry.install",
"esy-installer Revery_Math.install",
"esy-installer Revery_Shaders.install",
"esy-installer Revery_UI.install",
"esy-installer Revery_UI_Components.install"
]
},
"dependencies": {
"@esy-ocaml/reason": "3.4.0",
"reason-glfw": "^3.2.1010",
"reason-fontkit": "^2.0.6",
"reason-gl-matrix": "^0.9.9302",
"@opam/color": "^0.2.0",
"@opam/js_of_ocaml": "*",
"@opam/js_of_ocaml-compiler": "*",
"@opam/js_of_ocaml-lwt": "*",
"@opam/lwt": "^4.0.0",
"@opam/lwt_ppx": "^1.1.0",
"@brisk/brisk-reconciler": "*",
"flex": "^1.2.2"
},
"resolutions": {
"@opam/cmdliner": "1.0.2",
"@opam/js_of_ocaml": "github:ocsigen/js_of_ocaml:js_of_ocaml.opam#db257ce",
"@opam/js_of_ocaml-compiler": "github:ocsigen/js_of_ocaml:js_of_ocaml-compiler.opam#db257ce",
"@brisk/brisk-reconciler": "github:briskml/brisk-reconciler#7901934"
},
"peerDependencies": {
"ocaml": "^4.7.0"
},
"devDependencies": {
"ocaml": "^4.7.0",
"@opam/merlin": "*",
"@opam/dune": "^1.5.0",
"@opam/odoc": "*"
}
}