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
|
name = "lustre"
version = "4.2.5"
gleam = ">= 1.0.0"
description = "An Elm-inspired framework for building HTML templates, single page applications, and server-rendered components in Gleam!"
repository = { type = "github", user = "lustre-labs", repo = "lustre" }
licences = ["MIT"]
links = [
{ title = "Sponsor", href = "https://github.com/sponsors/hayleigh-dot-dev" },
]
internal_modules = ["lustre/internals", "lustre/internals/*"]
[documentation]
pages = [
{ title = "Examples directory", path = "reference/examples.html", source = "./pages/reference/examples.md" },
{ title = " ", path = "#", source = "" },
{ title = "Quickstart guide", path = "guide/01-quickstart.html", source = "./pages/guide/01-quickstart.md" },
{ title = "Managing state", path = "guide/02-state-management.html", source = "./pages/guide/02-state-management.md" },
{ title = "Side effects", path = "guide/03-side-effects.html", source = "./pages/guide/03-side-effects.md" },
{ title = "Server-side rendering", path = "guide/04-server-side-rendering.html", source = "./pages/guide/04-server-side-rendering.md" },
# { title = "Full-stack apps", path = "guide/05-full-stack-apps.html", source = "./pages/guide/05-full-stack-apps.md" },
# { title = "Components", path = "#", source = "" },
# { title = "Server components", path = "#", source = "" },
# { title = " ", path = "#", source = "" },
# { title = "Using with Wisp", path = "#", source = "" },
# { title = "Using with Glen", path = "#", source = "" },
# { title = "Using with Mist", path = "#", source = "" },
# { title = " ", path = "#", source = "" },
# { title = "For Elm developers", path = "#", source = "" },
# { title = "For React developers", path = "#", source = "" },
# { title = "For LiveView developers", path = "#", source = "" },
]
[dependencies]
gleam_erlang = "~> 0.24"
gleam_json = "~> 1.0 or ~> 2.0"
gleam_otp = "~> 0.9"
gleam_stdlib = "~> 0.36"
[dev-dependencies]
birdie = "~> 1.0"
gleeunit = "~> 1.0"
shellout = "~> 1.6"
simplifile = "~> 1.4"
|