-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.76 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
{
"name": "codebase-intelligence",
"version": "2.0.1",
"description": "Codebase analysis engine with MCP integration for LLM-assisted code understanding",
"type": "module",
"main": "dist/cli.js",
"bin": {
"codebase-intelligence": "dist/cli.js"
},
"packageManager": "pnpm@10.28.2",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"publish:npm": "pnpm lint && pnpm typecheck && pnpm build && pnpm test && npm publish --access public --registry https://registry.npmjs.org"
},
"keywords": [
"codebase",
"code-analysis",
"dependency-graph",
"mcp",
"typescript",
"architecture",
"metrics",
"static-analysis"
],
"author": "bntvllnt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bntvllnt/codebase-intelligence.git"
},
"bugs": {
"url": "https://github.com/bntvllnt/codebase-intelligence/issues"
},
"homepage": "https://github.com/bntvllnt/codebase-intelligence#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"commander": "^12.0.0",
"graphology": "^0.25.4",
"graphology-communities-louvain": "^2.0.2",
"graphology-metrics": "^2.3.0",
"graphology-shortest-path": "^2.1.0",
"typescript": "^5.7.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.0.0",
"tsx": "^4.21.0",
"typescript-eslint": "^8.56.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
]
}