-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 992 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 992 Bytes
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
{
"name": "mcp-server-code-runner",
"version": "0.1.8",
"mcpName": "io.github.formulahendry/code-runner",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-server-code-runner": "dist/cli.js"
},
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc && shx chmod +x dist/index.js dist/cli.js",
"watch": "tsc --watch",
"start": "node ./dist/cli.js"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"code-runner",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/formulahendry/mcp-server-code-runner.git"
},
"author": "Jun Han",
"license": "MIT",
"description": "Code Runner MCP Server",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"commander": "^13.1.0",
"express": "^5.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^22.13.10",
"shx": "^0.4.0",
"typescript": "^5.8.2"
}
}