-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.46 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.46 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
{
"name": "@r-mcp/static-analysis",
"version": "1.0.5",
"description": "MCP server for TypeScript code analysis using ts-morph",
"main": "dist/index.js",
"type": "module",
"bin": {
"static-analysis": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"start": "node dist/index.js",
"install-server": "tsc && chmod 755 dist/index.js && node scripts/update-config.js",
"install-cursor": "tsc && chmod 755 dist/index.js && node scripts/update-config.js cursor",
"install-desktop": "tsc && chmod 755 dist/index.js && node scripts/update-config.js desktop",
"install-code": "tsc && chmod 755 dist/index.js && node scripts/update-config.js code",
"install-mcp": "tsc && chmod 755 dist/index.js && node scripts/update-config.js mcp",
"install-code-library": "tsc && chmod 755 dist/index.js && node scripts/update-config.js code-library",
"release": "chmod 755 scripts/build-and-publish.js && node scripts/build-and-publish.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.2.0",
"@types/node-persist": "^3.1.8",
"crypto": "^1.0.1",
"glob": "^10.3.10",
"lru-cache": "^10.1.0",
"minimatch": "^9.0.3",
"node-persist": "^3.1.3",
"p-limit": "^5.0.0",
"ts-morph": "^23.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.10.0",
"typescript": "^5.3.2"
},
"files": [
"dist"
]
}