-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.94 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "djockey",
"version": "0.2.6",
"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 && npm run copy-files",
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 3 src/plugins/static/* dist/plugins/static/",
"build": "npx tsc",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:windows": "set NODE_OPTIONS=\"--experimental-vm-modules\" && jest",
"djockey": "npx tsc && node --trace-deprecation 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",
"mdast": "^3.0.0",
"mermaid": "^11.1.1",
"micromatch": "^4.0.8",
"myst-parser": "^1.5.6",
"myst-to-html": "^1.5.6",
"nunjucks": "^3.2.4",
"parse5": "^7.1.2",
"shiki": "^1.14.1"
},
"devDependencies": {
"@djockey/linkmapper-typedoc": "^0.0.7",
"@fontsource/ibm-plex-mono": "^5.0.14",
"@fontsource/ibm-plex-sans": "^5.0.21",
"@fontsource/saira-condensed": "^5.0.14",
"@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",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"lunr": "^2.3.9",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
}
}