- simplify development: single marp server on port 3000 instead of 3 processes - rename klausur to klausurfolien for better naming - update extract script to use 00-intro.md as template when no 01-*.md exists - update makefile and package.json for new workflow - add comprehensive AGENTS.md guidelines
24 lines
662 B
JSON
24 lines
662 B
JSON
{
|
|
"name": "hdm-slides",
|
|
"version": "1.0.0",
|
|
"description": "HdM Stuttgart - Lecture Slides (Marp)",
|
|
"scripts": {
|
|
"dev": "PORT=3000 marp --server --allow-local-files slides/",
|
|
"build": "make build",
|
|
"build:b": "make build-b",
|
|
"build:c": "make build-c",
|
|
"pdf": "make pdf",
|
|
"html": "make html",
|
|
"klausur": "make klausur",
|
|
"deploy": "make deploy",
|
|
"test": "echo \"No tests specified\" && exit 0"
|
|
},
|
|
"keywords": ["marp", "slides", "hdm", "lectures"],
|
|
"author": "Michael Czechowski <mail@librete.ch>",
|
|
"license": "CC-BY-SA-4.0",
|
|
"type": "commonjs",
|
|
"devDependencies": {
|
|
"@marp-team/marp-cli": "^4.2.3"
|
|
}
|
|
}
|