-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "@grain/libbinaryen",
"version": "115.0.0",
"description": "Libbinaryen packaged for OCaml.",
"author": "Blaine Bublitz <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"ocaml": ">= 4.12.0 < 5.0.0",
"@opam/conf-cmake": "grain-lang/cmake:esy.json#91a2c3677bef84a6eb20318284dff9f3bf32719d",
"@opam/dune": ">= 3.0.0",
"@opam/dune-configurator": ">= 3.0.0"
},
"devDependencies": {
"@opam/js_of_ocaml-compiler": ">= 4.1.0 < 6.0.0",
"@opam/ocamlformat": "0.26.1",
"@opam/ocaml-lsp-server": "> 1.9.1 < 2.0.0"
},
"resolutions": {
"@opam/ocp-indent": "1.7.0"
},
"esy": {
"build": [
"dune build -p libbinaryen -j 4"
],
"buildEnv": {
"PATH": "#{os == 'windows' ? '/usr/x86_64-w64-mingw32/sys-root/mingw/bin' : '' : $PATH }",
"CC": "#{os == 'windows' ? 'x86_64-w64-mingw32-gcc' : ''}",
"CXX": "#{os == 'windows' ? 'x86_64-w64-mingw32-g++' : ''}"
},
"exportedEnv": {
"PATH": {
"val": "#{os == 'windows' ? '/usr/x86_64-w64-mingw32/sys-root/mingw/bin' : '' : $PATH }",
"scope": "global"
}
}
},
"scripts": {
"test": "esy b dune runtest --display=short",
"format": "dune build @fmt --auto-promote"
},
"installConfig": {
"pnp": false
},
"publishConfig": {
"access": "public"
},
"keywords": [
"binaryen",
"ocaml"
]
}