-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 964 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
{
"name": "reoff-unified-latex",
"version": "0.1.1",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/TrialAndErrorOrg/reoff-unified-latex",
"homepage": "https://github.com/TrialAndErrorOrg/parsers",
"author": "Thomas F. K. Jorna <[email protected]>",
"type": "module",
"description": "Plugin for `reoff` that takes an `ooxast` tree and turns it into a `unified-latex` tree, allowing for .docx to .tex conversion",
"keywords": [
"unified",
"reoff",
"ooxast",
"latex",
"docx",
"converter",
"unified-latex",
"ast"
],
"typedoc": {
"entryPoint": "./src/index.ts",
"readmeFile": "./README.md",
"displayName": "reoff-unified-latex",
"tsconfig": "./tsconfig.lib.json"
},
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.d.ts",
"index.js",
"./lib"
]
}