-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 848 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 848 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
{
"name": "wiki-cli",
"version": "1.0.0",
"description": "CLI tool to auto-generate structured Wiki documentation for local code repositories",
"main": "dist/cli.js",
"bin": {
"wiki-cli": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^12.1.0",
"diff": "^9.0.0",
"highlight.js": "^11.11.0",
"inquirer": "^12.3.0",
"marked": "^15.0.4",
"marked-highlight": "^2.2.4",
"mermaid": "^11.14.0",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/diff": "^7.0.2",
"@types/node": "^22.10.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"type": "module",
"engines": {
"node": ">=18"
}
}