-
Notifications
You must be signed in to change notification settings - Fork 449
/
dune-project
64 lines (54 loc) · 981 Bytes
/
dune-project
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
(lang dune 2.3)
(name rescript)
(generate_opam_files true)
(license LGPL-3.0-or-later)
(authors "Hongbo Zhang <[email protected]>")
(maintainers "Hongbo Zhang <[email protected]>" "Cristiano Calcagno")
(homepage "https://github.com/rescript-lang/rescript-compiler")
(bug_reports "https://github.com/rescript-lang/rescript-compiler/issues")
(package
(name rescript)
(synopsis "ReScript compiler")
(depends
(ocaml
(>= 4.10))
(ocamlformat
(and
:with-test
(= 0.26.2)))
(yojson
(and
:with-test
(= 2.2.2)))
(ocaml-lsp-server
(and
:with-dev-setup
(= 1.19.0)))
(cppo
(= 1.6.9))
(js_of_ocaml
(= 5.8.1))
(ounit2
(= 2.2.7))
(reanalyze
(= 2.25.1))
dune))
(package
(name analysis)
(synopsis "ReScript Analysis")
(depends
(ocaml
(>= 4.10))
(cppo
(= 1.6.9))
dune))
(package
(name tools)
(synopsis "ReScript Tools")
(depends
(ocaml
(>= 4.10))
(cppo
(= 1.6.9))
analysis
dune))