-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.9 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.9 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "remark-docx",
"version": "0.3.26",
"description": "remark plugin to compile markdown to docx (Microsoft Word, Office Open XML).",
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"default": "./lib/index.js"
},
"./plugins/*": {
"types": "./lib/plugins/*/index.d.ts",
"require": "./lib/plugins/*/index.cjs",
"default": "./lib/plugins/*/index.js"
}
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"test": "vitest run",
"tsc": "tsc -p . --noEmit",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"typedoc": "typedoc",
"prepublishOnly": "npm run typedoc && rimraf lib && npm run build"
},
"dependencies": {
"@mathjax/src": "^4.0.0",
"deepmerge": "^4.3.1",
"docx": "9.5.1",
"fast-xml-parser": "^5.3.2",
"hast-util-from-html": "^2.0.3",
"hast-util-to-mdast": "^10.1.2",
"image-size": "^2.0.2",
"mathml2omml": "^0.5.0",
"mdast-util-definitions": "^6.0.0",
"mermaid": "^11.12.2",
"shiki": "^3.19.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@prettier/plugin-xml": "^3.4.2",
"@rollup/plugin-typescript": "^12.0.0",
"@storybook/react-vite": "^10.2.10",
"@types/adm-zip": "^0.5.0",
"@types/deepmerge": "^2.1.0",
"@types/file-saver": "^2.0.7",
"@types/lodash.debounce": "^4.0.9",
"@types/mdast": "^4.0.3",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/unist": "^3.0.0",
"adm-zip": "^0.5.9",
"docx-preview": "^0.3.7",
"file-saver": "^2.0.5",
"lodash.debounce": "^4.0.8",
"prettier": "^3.7.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-is": "^19.2.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"rimraf": "^6.1.2",
"rollup": "^4.53.3",
"storybook": "^10.2.10",
"tslib": "^2.8.1",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"unified": "^11.0.4",
"vite": "^7.2.6",
"vitest": "^4.0.15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/remark-docx.git"
},
"keywords": [
"unist",
"remark",
"mdast",
"markdown",
"docx",
"word",
"office",
"openxml",
"pandoc",
"highlight",
"latex",
"math",
"mermaid"
],
"author": "inokawa <stratoooo-taster@yahoo.co.jp> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/remark-docx/issues"
},
"homepage": "https://github.com/inokawa/remark-docx#readme"
}