-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.31 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
{
"name": "@supermodeltools/mcp-server",
"version": "0.11.16",
"description": "MCP server for Supermodel API - code graph generation for AI agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"supermodel-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supermodeltools/mcp.git"
},
"homepage": "https://docs.supermodeltools.com",
"bugs": {
"url": "https://github.com/supermodeltools/mcp/issues"
},
"license": "MIT",
"keywords": [
"mcp",
"model-context-protocol",
"supermodel",
"ai-agent",
"code-analysis",
"cursor",
"claude"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"@supermodeltools/sdk": "0.11.16",
"archiver": "^7.0.1",
"ignore": "^7.0.5",
"jq-web": "^0.6.2",
"undici": "^7.18.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/archiver": "^7.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.3.3"
}
}