-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 888 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 888 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
{
"name": "@techlibs/codesandbox-mcp",
"version": "0.1.1",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/cli.js",
"check": "tsc -p tsconfig.json --noEmit"
},
"keywords": [
"mcp",
"codesandbox"
],
"author": "Bruno Amorim",
"license": "MIT",
"description": "MCP server for CodeSandbox SDK",
"type": "module",
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"bin": {
"mcp-server-codesandbox": "dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^24.3.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@codesandbox/sdk": "^2.2.0",
"@modelcontextprotocol/sdk": "^1.17.5",
"zod": "^3.25.7"
},
"packageManager": "pnpm@10.15.0",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
}