AtlatestRepositorylantern
1;;; lantern-demo - a minimal Lantern app proving the Phase-2 bridge.
2;;;
3;;; Composes (lantern app) with a custom command and an event, then runs it.
4;;; The same web build (web/) runs unmodified in a plain browser, where
5;;; lantern.available is false and the page shows its fallback.
6
7(package
8 name: "lantern-demo"
9 sigil: "^0.17.14"
10 description: "Demo Lantern app: custom command + event + plain-browser fallback"
11 license: "BSD-3-Clause"
12 authors: (list "David Wilson <[email protected]>")
14 entry: '(lantern-demo main)
15 bundle-name: "lantern-demo"
17 dependencies: (list
18 (from-workspace name: "lantern")))