-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 786 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 786 Bytes
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
{
"name": "reoff-clean",
"version": "0.1.1",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/TrialAndErrorOrg/parsers",
"author": "Thomas F. K. Jorna <hello@tefkah.com>",
"type": "module",
"description": "Plugin for [reoff][reoff] to clean the ooxast tree.",
"keywords": [
"unified",
"ooxast",
"docx",
"word",
"reoff",
"ast"
],
"typedoc": {
"entryPoint": "./src/index.ts",
"readmeFile": "./README.md",
"displayName": "reoff-clean",
"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"
]
}