-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.64 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
{
"name": "code-analysis-context-mcp",
"version": "0.1.0",
"description": "MCP server for deep codebase analysis, pattern detection, and AI-optimized context generation for React, React Native, Vue 3, and Nuxt 3 projects",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"code-analysis-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "npm run test -- --watch",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"mcp",
"code-analysis",
"context-engineering",
"architecture",
"react",
"react-native",
"vue",
"nuxt",
"ast",
"dependency-graph",
"pattern-detection",
"ai-context"
],
"author": "Claude (Anthropic)",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.23.9",
"@modelcontextprotocol/sdk": "^0.4.0",
"@typescript-eslint/parser": "^6.21.0",
"@vue/compiler-sfc": "^3.4.15",
"acorn": "^8.11.3",
"dependency-cruiser": "^16.2.0",
"fast-glob": "^3.3.2",
"graphlib": "^2.1.8",
"jscodeshift": "^0.15.1",
"madge": "^6.1.0",
"ts-morph": "^21.0.1",
"vue-eslint-parser": "^9.4.2"
},
"devDependencies": {
"@types/graphlib": "^2.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}