-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 789 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"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 deck",
"deck": "marp --no-stdin -I ./shows -o public && ncp ./shows public && cpx \"./themes/!(*.keep|*.css)\" public/themes",
"start": "marp -s --html .",
"pdf": "marp --pdf --browser-path chromium ./index.md --allow-local-files --theme ../../themes/don.css"
},
"devDependencies": {
"@marp-team/marp-cli": "^4.2.3",
"cpx": "^1.5.0",
"ncp": "^2.0.0",
"rimraf": "^6.1.3"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}