-
Notifications
You must be signed in to change notification settings - Fork 485
Expand file tree
/
Copy pathdune-project
More file actions
72 lines (62 loc) · 1.19 KB
/
Copy pathdune-project
File metadata and controls
72 lines (62 loc) · 1.19 KB
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
69
70
71
72
(lang dune 3.17)
(name rescript)
(generate_opam_files true)
(license LGPL-3.0-or-later)
(authors "Hongbo Zhang <bobzhang1988@gmail.com>")
(maintainers "Hongbo Zhang <bobzhang1988@gmail.com>" "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
(>= 5.0.0))
dune
(ppxlib
(>= 0.38.0))
(ppx_deriving :build)
(ppx_gen_rec :build)
wtf8
(ocamlformat
(and :with-test (= 0.29.0)))
(yojson
(= 3.0.0))
(ounit2
(and :with-test (= 2.2.7)))
(odoc :with-doc)
(ocaml-lsp-server
(and :with-dev-setup (>= 1.23.0)))
(js_of_ocaml
(and
(<> :os "win32")
:with-test
(= 6.4.1)))
(wasm_of_ocaml-compiler
(and
(<> :os "win32")
:with-test
(= 6.4.1)))))
(package
(name analysis)
(synopsis "ReScript Analysis")
(depends
(ocaml
(>= 5.0.0))
(odoc :with-doc)
(lsp
(>= 1.23.0))
(yojson
(= 3.0.0))))
(package
(name tools)
(synopsis "ReScript Tools")
(depends
(ocaml
(>= 5.0.0))
(cmarkit
(>= 0.3.0))
analysis
(yojson
(= 3.0.0))
(odoc :with-doc)))