forked from inokawa/remark-docx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.62 KB
/
package.json
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
{
"name": "remark-docx",
"version": "0.1.6",
"description": "remark plugin to compile markdown to docx (Microsoft Word, Office Open XML).",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"test": "jest",
"tsc": "tsc -p . --noEmit",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:test": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run storybook -- --no-open\" \"wait-on tcp:6006 && test-storybook\"",
"typedoc": "typedoc",
"prepublishOnly": "npm run typedoc && rimraf lib && npm run build"
},
"dependencies": {
"@unified-latex/unified-latex-util-parse": "1.8.1",
"docx": "^8.2.0",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-storysource": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@storybook/source-loader": "^8.0.9",
"@storybook/test-runner": "^0.19.0",
"@types/adm-zip": "^0.5.0",
"@types/mdast": "^3.0.10",
"@types/unist": "^2.0.6",
"adm-zip": "^0.5.9",
"babel-jest": "^29.0.2",
"concurrently": "^8.2.2",
"docx-preview": "^0.3.0",
"file-saver": "^2.0.5",
"jest": "^29.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"remark-footnotes": "^4.0.1",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-parse": "^10.0.1",
"rimraf": "^5.0.0",
"rollup": "^4.17.2",
"storybook": "^8.0.9",
"tslib": "^2.4.1",
"typedoc": "^0.26.0",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.0.4",
"unified": "^10.1.2",
"vite": "^5.2.11",
"wait-on": "^7.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/remark-docx.git"
},
"keywords": [
"unist",
"remark",
"mdast",
"markdown",
"docx",
"word",
"office",
"openxml",
"latex",
"math"
],
"author": "inokawa <[email protected]> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/remark-docx/issues"
},
"homepage": "https://github.com/inokawa/remark-docx#readme"
}