-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "codemax-mcp",
"version": "1.2.0",
"description": "The full-stack MCP that bridges frontend and backend analysis — sees what single-side tools miss.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": {
"import": "./dist/types.js",
"types": "./dist/types.d.ts"
}
},
"bin": {
"codemax-mcp": "dist/index.js"
},
"mcpName": "io.github.rish-e/codemax",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"server.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit"
},
"keywords": [
"mcp",
"model-context-protocol",
"full-stack",
"code-analysis",
"api-contracts",
"frontend",
"backend",
"typescript",
"nextjs",
"express",
"react",
"static-analysis",
"developer-tools",
"uimax",
"backend-max"
],
"author": "Rishi Kolisetty",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rish-e/codemax.git"
},
"homepage": "https://github.com/rish-e/codemax",
"bugs": {
"url": "https://github.com/rish-e/codemax/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"ts-morph": "^27.0.2",
"glob": "^11.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"@vitest/coverage-v8": "^3.0.0"
},
"peerDependencies": {
"uimax-mcp": ">=0.7.0",
"backend-max": ">=2.1.0"
},
"peerDependenciesMeta": {
"uimax-mcp": {
"optional": true
},
"backend-max": {
"optional": true
}
}
}