-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.12 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
{
"name": "wepub",
"version": "0.1.0",
"description": "Local Web workspace for publishing Markdown and Jupyter Notebooks to WeChat Official Account drafts.",
"homepage": "https://github.com/yauld/wepub#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yauld/wepub.git"
},
"bugs": {
"url": "https://github.com/yauld/wepub/issues"
},
"files": [
"bin/",
"src/",
"web/"
],
"type": "module",
"bin": {
"wepub": "./bin/wepub.mjs",
"wepub-web": "./bin/wepub-web.mjs"
},
"scripts": {
"start": "node ./bin/wepub.mjs",
"dev": "sh ./scripts/dev.sh",
"web": "node ./bin/wepub-web.mjs",
"demo": "node ./bin/wepub.mjs ./examples/demo.md --out ./dist/demo",
"test": "node --test"
},
"keywords": [
"wechat",
"markdown",
"jupyter",
"notebook",
"publisher",
"mp",
"wechat-official-account",
"wechat-draft",
"official-account",
"rich-text",
"markdown-to-html",
"local-first"
],
"license": "MIT",
"dependencies": {
"marked": "^13.0.3",
"mermaid": "^10.9.6"
},
"engines": {
"node": ">=18"
}
}