-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.8 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
{
"name": "codebase-intelligence",
"version": "1.0.0",
"description": "Intelligent codebase analysis, pattern recognition, and security scanning MCP server",
"main": "dist/index.js",
"bin": {
"codebase-intelligence": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec 'ts-node' src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist"
},
"keywords": ["mcp", "codebase-analysis", "security-scanning", "pattern-recognition", "claude-code"],
"author": "Jason Kline <jason.kline@narwol.ai>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jasonkline/codebase-intelligence.git"
},
"bugs": {
"url": "https://github.com/jasonkline/codebase-intelligence/issues"
},
"homepage": "https://github.com/jasonkline/codebase-intelligence#readme",
"type": "commonjs",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.1.0",
"@typescript-eslint/parser": "^8.38.0",
"@typescript-eslint/typescript-estree": "^8.38.0",
"better-sqlite3": "^12.2.0",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"fast-glob": "^3.3.3",
"glob": "^10.3.0",
"micromatch": "^4.0.8",
"node-fetch": "^3.3.2",
"typescript": "^5.8.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/micromatch": "^4.0.9",
"@types/glob": "^8.1.0",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"eslint": "^9.32.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"pkg": "^5.8.1"
}
}