-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.21 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
{
"name": "markdown-paper",
"version": "4.0.1",
"license": "GPL-3.0-only",
"author": {
"name": "LeafYeeXYZ"
},
"bin": {
"mdp": "./dist/bin/mdp.mjs",
"mdp-themes": "./dist/bin/mdp-themes.mjs"
},
"files": [
"dist/"
],
"type": "module",
"main": "./dist/lib/index.mjs",
"scripts": {
"mdp": "node ./bin/mdp.ts",
"try": "node ./bin/mdp.ts ./demo/论文.md --html --docx",
"build": "vp pack lib/index.ts bin/mdp.ts bin/mdp-themes.ts --out-dir dist --format esm && cp lib/themes/*.css dist/",
"release:create": "commit-and-tag-version",
"release:publish": "git push --follow-tags origin main && npm publish",
"prepare": "vp config",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^14.0.0",
"html-docx-js-typescript": "^0.1.5",
"katex": "^0.17.0",
"marked": "^12.0.2",
"marked-katex-extension": "^5.1.4",
"puppeteer-core": "^24.39.1",
"zod": "^3.25.56"
},
"devDependencies": {
"commit-and-tag-version": "^12.5.1",
"vite-plus": "latest"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "pnpm@10.33.4"
}