-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.71 KB
/
package.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "pfwr",
"version": "0.8.0",
"description": "The last markdown to HTML slide show generator you need",
"module": "dist/index.js",
"bin": "./bin/cli.js",
"type": "module",
"scripts": {
"all": "npm run bundle && npm run test",
"bundle": "rollup -c",
"dev": "chokidar --initial \"browser/*.*\" \"dist/*.*\" \"example/*.md\" --command \"npm start\"",
"start": "node bin/cli.js example/presentation.md example/presentation.html",
"version": "./tasks/bump-examples",
"test": "node bin/cli.js example/presentation.md example/presentation.html",
"prepare": "npm run bundle"
},
"author": "Nico Rehwaldt<https://github.com/nikku>",
"license": "MIT",
"keywords": [
"markdown-to-html",
"markdown",
"presentation",
"cli"
],
"files": [
"dist",
"bin"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-json": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"chokidar-cli": "^3.0.0",
"js-yaml": "^4.1.0",
"mdast-comment-marker": "^2.0.0",
"rehype-document": "^6.0.0",
"rehype-format": "^4.0.0",
"rehype-meta": "^3.1.0",
"rehype-stringify": "^9.0.2",
"rehype-wrap": "^1.0.10",
"remark-breaks": "^3.0.1",
"remark-emoji": "^3.0.1",
"remark-external-links": "^9.0.1",
"remark-frontmatter": "^4.0.0",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.0",
"remark-rehype": "^10.1.0",
"rollup": "^2.79.1",
"rollup-plugin-string": "^3.0.0",
"twemoji": "^14.0.2",
"unified": "^10.1.0",
"unist-util-visit-parents": "^5.0.0",
"vfile": "^5.1.0"
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"mri": "^1.1.6",
"opener": "^1.5.2"
}
}