-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1006 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1006 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
38
39
40
{
"name": "@evolvedbinary/lwdita-ast",
"version": "3.3.2",
"description": "An Abstract Syntax Tree Model of the LwDITA elements",
"main": "./dist/index.js",
"engines": {
"node": ">=22.16.0 <23",
"yarn": ">=4.2.2"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"prepack": "yarn run build",
"docs": "typedoc --options typedoc.config.mjs --entryPoints src/index.ts --out dist/doc",
"lint": "eslint"
},
"keywords": [
"LwDITA",
"DITA",
"XML",
"JSON"
],
"author": "Evolved Binary",
"license": "AGPL-3.0",
"homepage": "https://github.com/evolvedbinary/lwdita#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/evolvedbinary/lwdita.git"
},
"bugs": {
"url": "https://github.com/evolvedbinary/lwdita/issues"
},
"devDependencies": {
"eslint": "^9.38.0",
"rimraf": "^6.1.3",
"typedoc": "^0.28.14",
"typescript": "6.0.2"
},
"packageManager": "yarn@4.2.2"
}