-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 951 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 951 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
38
39
40
41
42
43
44
{
"name": "docs-wiki",
"version": "0.1.0",
"description": "Generate markdown wiki docs from the current project using Tree-sitter.",
"type": "commonjs",
"bin": {
"docs-wiki": "./bin/docs-wiki.js"
},
"files": [
"bin",
"src",
"docs",
"README.md"
],
"scripts": {
"start": "node ./bin/docs-wiki.js",
"test": "node --test",
"hotfix-site": "node ./bin/docs-wiki.js hotfix-site"
},
"keywords": [
"docs",
"wiki",
"tree-sitter",
"markdown",
"cli"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"chokidar": "^4.0.3",
"fast-glob": "^3.3.3",
"mermaid": "^11.14.0",
"openai": "^6.33.0",
"tree-sitter": "^0.21.1",
"tree-sitter-go": "^0.21.2",
"tree-sitter-javascript": "^0.21.4",
"tree-sitter-python": "^0.21.0",
"tree-sitter-rust": "^0.21.0",
"tree-sitter-typescript": "^0.21.2",
"vitepress": "^1.6.4",
"zod": "^4.3.6"
}
}