-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.88 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.88 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "semanticwiki",
"version": "1.2.1",
"description": "Generate comprehensive architectural documentation wikis for code repositories with source traceability.",
"main": "dist/cli.js",
"bin": {
"semanticwiki": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test",
"release": "./scripts/release.sh",
"publish-npm": "npm publish"
},
"keywords": [
"ai-agent",
"cli",
"claude",
"documentation",
"architecture",
"wiki",
"code-analysis",
"mcp"
],
"author": "Dakota Kim",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.53",
"@anthropic-ai/sdk": "^0.71.2",
"@huggingface/transformers": "^3.8.1",
"@lepion/mcp-server-mermaid": "^1.0.8",
"@modelcontextprotocol/server-filesystem": "^2025.12.18",
"axios": "^1.6.0",
"better-sqlite3": "^9.0.0",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^12.0.0",
"dotenv": "^16.3.1",
"faiss-node": "^0.5.1",
"glob": "^10.3.10",
"gray-matter": "^4.0.3",
"inquirer": "^9.2.12",
"inquirer-autocomplete-prompt": "^3.0.1",
"marked": "^12.0.0",
"node-llama-cpp": "^3.0.0",
"ollama": "^0.5.0",
"ora": "^8.0.1",
"simple-git": "^3.30.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.19.28",
"@types/pdf-parse": "^1.1.4",
"@vitest/coverage-v8": "^4.0.16",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}