-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathbonsai.opam
37 lines (37 loc) · 1004 Bytes
/
bonsai.opam
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
opam-version: "2.0"
maintainer: "Jane Street developers"
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/janestreet/bonsai"
bug-reports: "https://github.com/janestreet/bonsai/issues"
dev-repo: "git+https://github.com/janestreet/bonsai.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/bonsai/index.html"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "5.1.0"}
"abstract_algebra"
"async_rpc_kernel"
"bonsai_concrete"
"core"
"core_kernel"
"incr_map"
"incremental"
"ocaml-embed-file"
"ppx_here"
"ppx_jane"
"ppx_let"
"ppx_pattern_bind"
"ppxlib_jane"
"uopt"
"virtual_dom"
"dune" {>= "3.11.0"}
"ppxlib" {>= "0.33.0"}
]
available: arch != "arm32" & arch != "x86_32"
synopsis: "A library for building dynamic webapps, using Js_of_ocaml"
description: "
Bonsai is a library for building reusable UI components inside an
Incremental-style UI framework such as Incr_dom or React.
"