generated from yhatt/marp-cli-example
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (20 loc) · 832 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "defi-kurs",
"version": "1.0.0",
"author": "Nils Bundi <[email protected]>",
"license": "WTFPL",
"private": true,
"scripts": {
"build": "rimraf public && npm run -s og-image && npm run -s deck",
"deck": "marp --no-stdin index.md -o public/index.html && ncp assets public/assets",
"og-image": "marp --no-stdin index.md -o public/og-image.jpg",
"start": "marp -ps .",
"vercel-build": "yum install nss mesa-libgbm -y && MARP_USER=root CHROME_PATH=$(npx -y @puppeteer/browsers@latest install chrome@stable --path $(realpath ./tmp) | awk '{print $2}') npm run build",
"deck-einf": "marp --no-stdin defi-einfuehrung.md -o public/index.html && ncp assets public/assets"
},
"devDependencies": {
"@marp-team/marp-cli": "^3.4.0",
"ncp": "^2.0.0",
"rimraf": "^5.0.7"
}
}