slides-openpgp-2024/package.json

28 lines
842 B
JSON
Raw Normal View History

2024-11-07 22:11:19 +01:00
{
"name": "slides-openpgp-2024",
"version": "1.0.0",
"scripts": {
"clean": "rimraf dist",
"build": "npm run -s clean && npm run -s build-html && npm run -s build-pdf",
"build-html": "npx marp --theme src/theme.css --no-stdin --html src/slides.md -o dist/html/index.html && ncp src/assets dist/html/assets",
"build-pdf": "npx marp --theme src/theme.css --no-stdin --html --allow-local-files src/slides.md -o dist/pdf/slides.pdf",
"serve": "http-server dist/html"
},
"author": {
"name": "Fabrizio Tarizzo",
"url": "https://www.fabriziotarizzo.org/"
},
"contributors": [
],
"license": "CC-BY-SA-4.0",
"devDependencies": {
"@marp-team/marp-cli": "^4.0.3",
"http-server": "^14.1.1",
"ncp": "^2.0.0",
"rimraf": "^6.0.1"
},
"engines": {
"npm": ">=9.2.0"
}
}