pixi.toml (739B)
1 [project] 2 name = "kit-slides-typst" 3 version = "0.3.0" 4 description = "A Karlsruhe Institute of Technology Slides Theme for Typst." 5 authors = ["Adrian Freund <adrian@freund.io>"] 6 channels = ["conda-forge"] 7 platforms = ["linux-64", "linux-aarch64", "win-64", "osx-64", "osx-arm64"] 8 9 [tasks] 10 compile = {cmd = "typst compile presentation.typ", env = { TYPST_FONT_PATHS = "fonts" } } 11 watch = {cmd = "typst watch presentation.typ", env = { TYPST_FONT_PATHS = "fonts" } } 12 13 [dependencies] 14 typst = ">=0.11.1,<0.12" 15 16 [feature.lint.dependencies] 17 typstyle = ">=0.11.26,<0.12" 18 typos = ">=1.22.7,<1.23" 19 20 [feature.lint.tasks] 21 typstyle = "typstyle format-all" 22 typos = "typos" 23 lint = { depends-on = [ "typstyle", "typos" ] } 24 25 [environments] 26 lint = ["lint"]