-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 896 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
{
"name": "unified-latex-stringify",
"version": "0.1.1",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/TrialAndErrorOrg/unified-latex-stringify",
"homepage": "https://github.com/TrialAndErrorOrg/parsers",
"author": "Thomas F. K. Jorna <[email protected]>",
"type": "module",
"description": "Plugin for `unified-latex` that takes an `unified-latex` tree and turns it into LaTeX",
"keywords": [
"unified",
"unified-latex",
"stringify",
"latex",
"ast"
],
"typedoc": {
"entryPoint": "./src/index.ts",
"readmeFile": "./README.md",
"displayName": "unified-latex-stringify",
"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"
]
}