-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "wiki10",
"version": "0.1.0-alpha.8",
"description": "Static wiki generation",
"keywords": [
"wiki"
],
"author": "Simon \"Tenry\" Burchert",
"main": "dist/main.js",
"license": "MIT",
"scripts": {
"start": "npx ts-node src/main.ts",
"build": "tsc --build src/tsconfig.json",
"docs": "npx typedoc --out ./docs --tsconfig src/tsconfig.json src/*.ts src/**/*.ts",
"prepack": "npm run build"
},
"bin": "./bin/wiki10",
"dependencies": {
"ejs": "^3.1.9",
"fast-xml-parser": "^4.3.6",
"highlight.js": "^11.9.0",
"js-yaml": "^4.1.0",
"markdown-it": "^14.1.0",
"markdown-it-attrs": "^4.1.6",
"markdown-it-deflist": "^3.0.0",
"markdown-it-replace-link": "^1.2.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"mustache": "^4.2.0",
"winston": "^3.12.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^13.0.7",
"@types/markdown-it-attrs": "^4.1.3",
"@types/mustache": "^4.2.5",
"@types/node": "^20.11.30",
"@types/yargs": "^17.0.32",
"ts-node": "^10.9.2",
"tsc": "^2.0.4",
"tslib": "^2.6.2",
"typedoc": "^0.25.12",
"typescript": "^5.4.2"
},
"files": [
"bin",
"dist",
"template"
]
}