-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.46 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "djockey",
"version": "0.2.3",
"packageManager": "[email protected]",
"engines": {
"node": ">=17.0.0"
},
"license": "MIT",
"repository": "https://github.com/irskep/djockey",
"homepage": "https://steveasleep.com/djockey/",
"keywords": [
"documentation",
"generator",
"djot",
"markdown",
"pandoc"
],
"bin": "./dist/cli.js",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"prepublish": "tsc",
"scripts": {
"build": "npx tsc",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"djockey": "npx tsc && node dist/cli.js"
},
"dependencies": {
"@djot/djot": "^0.3.1",
"argparse": "^2.0.1",
"fast-glob": "^3.3.2",
"gluegun": "^5.2.0",
"js-yaml": "^4.1.0",
"lunr": "^2.3.9",
"mermaid": "^10.9.1",
"micromatch": "^4.0.8",
"nunjucks": "^3.2.4",
"parse5": "^7.1.2",
"shiki": "^1.14.1"
},
"devDependencies": {
"@djockey/linkmapper-typedoc": "^0.0.7",
"@jest/globals": "^29.7.0",
"@types/argparse": "^2.0.16",
"@types/d3": "^7.4.3",
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/log-update": "^3.1.0",
"@types/lunr": "^2.3.7",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.4.0",
"@types/nunjucks": "^3.2.6",
"@types/parse5": "^7.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
}
}