-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
{
"name": "codexmaker",
"version": "1.0.0",
"description": "CodexMaker automates the documentation process for your applications, generating a documentation website based on your codebase.",
"main": "index.js",
"bin": {
"generate-docs": "dist/index.js",
"update-docs": "dist/bin/update-docs.js"
},
"scripts": {
"build": "tsc",
"test": "npx generate-docs && cd docs && cd codexMaker && npm run dev",
"prepare": "npm run build",
"destroy": "rm -rf docs",
"build-docs": "cd docs/codexMaker && next build && next export"
},
"keywords": [
"documentation",
"markdown",
"generator"
],
"author": "Victor Doyle",
"dependencies": {
"@babel/parser": "^7.26.2",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.24.0",
"fs-extra": "^11.2.0",
"globby": "^14.0.2",
"inquirer": "^12.1.0",
"minimist": "^1.2.8",
"nextra": "^3.2.0",
"nextra-theme-docs": "^3.2.0",
"tree-sitter": "^0.20.6",
"tree-sitter-cpp": "^0.20.3",
"tree-sitter-java": "^0.20.2",
"tree-sitter-php": "^0.19.0",
"tree-sitter-python": "^0.20.4"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.6",
"@types/fs-extra": "^11.0.4",
"@types/globby": "^8.0.0",
"@types/minimist": "^1.2.5",
"@types/node": "^22.9.0",
"next": "^15.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"simple-git": "^3.27.0",
"typescript": "^5.6.3"
},
"files": [
"dist/**/*",
"docs/**/*"
]
}