-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.83 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.83 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
{
"name": "backend-max",
"version": "2.4.0",
"description": "The AI-powered backend diagnostic MCP that understands what you're building and makes sure it actually works.",
"type": "module",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"bin": {
"backend-max": "dist/server.js",
"backend-max-cli": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server.js",
"lint": "biome check src/",
"lint:fix": "biome check --fix src/",
"format": "biome format --write src/",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test:watch": "vitest",
"diagnose": "node dist/cli.js diagnose"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"backend",
"diagnostic",
"api-audit",
"nextjs",
"express",
"fastify",
"hono",
"trpc",
"graphql",
"typescript",
"static-analysis",
"contract-testing",
"api-documentation",
"claude",
"claude-code",
"security-audit",
"rate-limiting"
],
"author": "Rishi Kolisetty",
"license": "MIT",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"server.json",
"smithery.yaml"
],
"repository": {
"type": "git",
"url": "https://github.com/rish-e/backend-max.git"
},
"bugs": {
"url": "https://github.com/rish-e/backend-max/issues"
},
"homepage": "https://github.com/rish-e/backend-max#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"chalk": "^5.4.1",
"glob": "^11.0.0",
"ts-morph": "^27.0.2",
"zod": "^3.24.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}