AtlatestRepositorysigil-web
1
;;; sigil-web - Web application framework for Sigil2
;;;3
;;; Provides high-level web application building blocks:4
;;; - Path-based routing with pattern matching5
;;; - Static file serving with MIME type detection6
;;; - Composable middleware7
;;; - Cookie parsing and setting8
;;; - Org Mode content handling10
(package11
name: "sigil-web"12
version: "0.16.1"13
sigil: "^0.17"14
description: "Web application framework for Sigil"15
url: "https://codeberg.org/sigil/sigil-web"16
license: "BSD-3-Clause"17
authors: (list "David Wilson <[email protected]>")19
configs: (list20
(config21
name: 'dev22
output-dir: "build/dev"23
debug?: #t24
optimize: 0)25
(config26
name: 'release27
output-dir: "build/release"28
debug?: #f29
optimize: 2))31
dependencies: (list32
(from-git url: "codeberg:sigil/sigil-http" version: "^0.18.0")33
(from-git url: "codeberg:sigil/sigil-sxml" version: "^0.15")34
(from-git url: "codeberg:sigil/sigil-nrepl" version: "^0.16"))36
dev-dependencies: (list37
(from-git url: "codeberg:sigil/sigil" package: "sigil-test" version: "^0.17")38
(from-git url: "codeberg:sigil/sigil" package: "sigil-test-runner" version: "^0.17"))40
provides: (list41
mcp-tools: '(sigil web mcp tools)))