-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.14 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.14 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
{
"name": "markdown-paper",
"version": "3.2.0",
"author": {
"name": "LeafYeeXYZ",
"email": "xiaoyezi@leafyee.xyz"
},
"dependencies": {
"commander": "^14.0.0",
"html-docx-js-typescript": "^0.1.5",
"marked": "^12.0.2",
"marked-katex-extension": "^5.1.4",
"puppeteer-core": "^24.39.1",
"zod": "^3.25.56"
},
"peerDependencies": {
"typescript": "^5.4.5"
},
"bin": {
"mdp": "bun ./bin/mdp.ts",
"mdp-themes": "bun ./bin/mdp-themes.ts"
},
"license": "GPL-3.0-only",
"scripts": {
"mdp": "bun ./bin/mdp.ts",
"try": "bun mdp ./demo/论文.md --html --docx",
"release:create": "commit-and-tag-version",
"release:publish": "git push --follow-tags origin main && npm publish",
"check": "biome check --write ."
},
"type": "module",
"main": "./lib/index.ts",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"commit-and-tag-version": "^12.5.1"
},
"commit-and-tag-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Refactoring"
},
{
"type": "perf",
"section": "Improvements"
}
]
}
}