-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 878 Bytes
/
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
{
"name": "ooxast-util-to-unified-latex",
"version": "0.2.0",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/TrialAndErrorOrg/parsers",
"author": "Thomas F. K. Jorna <[email protected]>",
"type": "module",
"description": "Convert `ooxast` syntax tree to `unified-latex` syntax tree.",
"keywords": [
"unified",
"word",
"docx",
"office",
"jats",
"reoff",
"rejour",
"latex",
"unified-latex"
],
"typedoc": {
"entryPoint": "./src/index.ts",
"readmeFile": "./README.md",
"displayName": "ooxast-util-to-unified-latex",
"tsconfig": "./tsconfig.lib.json"
},
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"main": "./index.js",
"module": "./index.js",
"types": "./index.d.ts",
"files": [
"index.d.ts",
"index.js",
"/lib"
]
}