-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 948 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 948 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
{
"name": "quickwiki-ai",
"version": "0.1.1",
"description": "Quick and local documentation generator for codebases",
"main": "dist/index.js",
"bin": {
"quickwiki-ai": "dist/index.js"
},
"files": ["README.md", "dist", "package.json"],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"wiki": "npm run build && npm start ."
},
"keywords": ["deepwiki", "documentation", "generator", "llm", "gemini", "codebase"],
"author": "Teo Si-Yan (https://github.com/siyant)",
"repository": "https://github.com/CartographAI/quickwiki",
"license": "MIT",
"dependencies": {
"@google/genai": "^0.12.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}