-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.07 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pfwr",
"version": "0.17.2",
"description": "The last markdown to HTML slide show generator you need",
"main": "./dist/index.js",
"bin": {
"pfwr": "bin/cli.js"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"all": "run-s lint bundle test",
"bundle": "rollup -c",
"bundle:watch": "rollup -cw",
"dev": "run-p *:watch",
"start": "node bin/cli.js example/presentation.md",
"version": "./tasks/bump-examples",
"lint": "eslint .",
"test": "run-s start",
"test:watch": "chokidar --initial \"browser/*.*\" \"dist/*.*\" \"bin/*.*\" \"example/*.md\" --command \"run-s test\"",
"prepare": "npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikku/pfwr.git"
},
"author": "Nico Rehwaldt<https://github.com/nikku>",
"license": "MIT",
"keywords": [
"markdown-to-html",
"markdown",
"presentation",
"cli"
],
"files": [
"dist",
"bin"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/node": "^24.13.3",
"chokidar-cli": "^3.0.0",
"eslint": "^9.39.5",
"eslint-plugin-bpmn-io": "^2.3.1",
"js-yaml": "^5.3.0",
"mdast-comment-marker": "^3.0.0",
"npm-run-all2": "^9.0.3",
"rehype-document": "^7.0.3",
"rehype-format": "^5.0.1",
"rehype-meta": "^4.0.1",
"rehype-stringify": "^10.0.1",
"rehype-wrap": "^1.0.10",
"remark-breaks": "^4.0.0",
"remark-emoji": "^5.0.2",
"remark-external-links": "^9.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"rollup": "^4.62.4",
"rollup-plugin-string": "^3.0.0",
"twemoji": "^14.0.2",
"unified": "^11.0.5",
"unist-util-visit-parents": "^6.0.2",
"vfile": "^6.0.3"
},
"engines": {
"node": ">= 20.12"
},
"dependencies": {
"min-dash": "^5.1.0",
"mri": "^1.1.6",
"opener": "^1.5.2"
}
}