-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.82 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.82 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
81
82
83
{
"name": "markdown-docx",
"version": "1.6.0",
"description": "Convert Markdown file to DOCX format",
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "pnpm run build",
"release-it": "release-it",
"ts-check": "tsc --noEmit"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"browser": "dist/index.mjs",
"homepage": "https://github.com/vace/markdown-docx",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"node": "./dist/index.node.mjs",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"node": "./dist/index.node.cjs",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"bin": {
"markdown-docx": "bin/markdown-docx.mjs"
},
"sideEffects": false,
"files": [
"dist",
"bin"
],
"keywords": [
"markdown",
"docx",
"converter",
"markdown-to-docx",
"markdown-docx",
"markdown-to-word",
"markdown-to-doc",
"markdown-to-word-doc"
],
"author": {
"name": "Vace",
"email": "ocdo@qq.com",
"url": "https://github.com/vace"
},
"repository": {
"type": "git",
"url": "https://github.com/vace/markdown-docx.git"
},
"license": "MIT",
"packageManager": "pnpm@10.6.5",
"devDependencies": {
"@types/node": "^22.14.0",
"tsdown": "^0.15.1",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"dependencies": {
"commander": "^13.1.0",
"docx": "^9.5.1",
"fast-xml-parser": "^5.3.0",
"image-size": "^2.0.2",
"katex": "^0.16.23",
"marked": "^15.0.8"
},
"release-it": {
"npm": {
"publish": false
}
}
}