-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 830 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "github-markdown-presenter",
"version": "1.0.0",
"description": "GitHub Pages 기반 마크다운 프레젠테이션 웹 서비스",
"main": "index.html",
"scripts": {
"dev": "python -m http.server 8080 --bind localhost",
"start": "python -m http.server 8080 --bind localhost",
"build": "node scripts/build-manifest.js",
"build:manifest": "node scripts/build-manifest.js",
"deploy": "gh-pages -d ."
},
"repository": {
"type": "git",
"url": "https://github.com/username/github-markdown-presenter"
},
"keywords": [
"markdown",
"presentation",
"github-pages",
"slides",
"marp-alternative"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"gh-pages": "^6.1.0"
},
"dependencies": {},
"engines": {
"node": ">=14.0.0"
}
}