AtlatestRepositorysigil-web

sigil-web / treepackage.sgl

1;;; sigil-web - Web application framework for Sigil
2;;;
3;;; Provides high-level web application building blocks:
4;;; - Path-based routing with pattern matching
5;;; - Static file serving with MIME type detection
6;;; - Composable middleware
7;;; - Cookie parsing and setting
8;;; - Org Mode content handling
9
10(package
11 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: (list
20 (config
21 name: 'dev
22 output-dir: "build/dev"
23 debug?: #t
24 optimize: 0)
25 (config
26 name: 'release
27 output-dir: "build/release"
28 debug?: #f
29 optimize: 2))
31 dependencies: (list
32 (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: (list
37 (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: (list
41 mcp-tools: '(sigil web mcp tools)))