-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 KB
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
41
42
43
44
45
46
47
48
49
50
{
"name": "@evolvedbinary/lwdita-xdita",
"version": "3.3.2",
"description": "An LwDITA XDITA parser and serializer",
"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",
"example": "ts-node ./example.ts",
"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"
},
"dependencies": {
"@evolvedbinary/lwdita-ast": "workspace:^",
"@rubensworks/saxes": "6.0.1"
},
"dependenciesComments": [
"(AR) Previously we were using `\"saxes\": \"^6.0.0\"`, see: https://github.com/lddubeau/saxes/pull/120"
],
"devDependencies": {
"@types/node": "^25.0.0",
"eslint": "^9.38.0",
"rimraf": "^6.1.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.14",
"typescript": "5.9.3"
},
"packageManager": "yarn@4.2.2"
}