forked from revery-ui/revery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.23 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
{
"name": "revery",
"version": "0.17.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": "esy b dune runtest",
"format": "esy dune build @fmt --auto-promote",
"format:windows": "esy b .ci/format.sh",
"doc": "refmterr esy dune build @doc --root .",
"create-release": "sh ./scripts/release.sh"
},
"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_Draw.install",
"esy-installer Revery_Native.install",
"esy-installer Revery_Shaders.install",
"esy-installer Revery_UI.install",
"esy-installer Revery_UI_Components.install",
"esy-installer Revery_Native.install"
]
},
"dependencies": {
"@esy-ocaml/reason": "3.4.0",
"reason-glfw": "^3.2.1024",
"reason-fontkit": "^2.4.1",
"reason-gl-matrix": "^0.9.9304",
"rebez": "*",
"@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",
"reperf": "^1.4.0",
"@reason-native/console": "^0.0.3"
},
"resolutions": {
"rebez": "github:jchavarri/rebez#46cbc183",
"@opam/cmdliner": "1.0.2",
"@opam/dune": "1.7.3",
"@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#daa00be"
},
"peerDependencies": {
"ocaml": "^4.7.0"
},
"devDependencies": {
"ocaml": "^4.7.0",
"@opam/merlin": "*",
"@opam/dune": "^1.5.0",
"@opam/odoc": "*"
}
}