-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "@seewo-doc/docx-math-converter",
"version": "1.1.2",
"description": "Converting LaTeX, MathML, or OMML strings to math objects using docx.js",
"main": "./dist/docx-math-converter.cjs.js",
"module": "./dist/docx-math-converter.esm.js",
"types": "./dist/docx-math-converter.d.ts",
"engines": {
"node": ">=16.17.0"
},
"scripts": {
"dev": "vite build -w",
"build": "tsc && vite build",
"test": "vitest"
},
"keywords": [
"docx",
"Latex",
"MathML",
"OMML"
],
"author": "kailunyao",
"license": "ISC",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/seewo-doc/docx-math-converter"
},
"peerDependencies": {
"@seewo-doc/docx": "^8.4.0"
},
"dependencies": {
"jsdom": "^23.2.0",
"mathjax": "^3.2.2",
"@seewo-doc/mathml2omml": "^0.4.4"
},
"devDependencies": {
"@seewo-doc/docx": "^8.5.0-beta.1",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.7",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.0",
"vite-plugin-externalize-deps": "^0.8.0",
"vitest": "^1.1.3"
},
"browser": {
"jsdom": false,
"mathjax": "mathjax/es5/tex-mml-chtml.js"
}
}