-
-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 740 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "marp-cli-example",
"version": "0.0.0",
"author": "Yuki Hattori <yukihattori1116@gmail.com>",
"license": "WTFPL",
"private": true,
"scripts": {
"build": "rimraf public && npm run -s og-image && npm run -s deck",
"deck": "marp --no-stdin PITCHME.md -o public/index.html && ncp assets public/assets",
"og-image": "marp --no-stdin PITCHME.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"
},
"devDependencies": {
"@marp-team/marp-cli": "^4.2.3",
"ncp": "^2.0.0",
"rimraf": "^6.1.3"
}
}