mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 13:03:46 +00:00
22 lines
642 B
JSON
22 lines
642 B
JSON
{
|
|
"name": "@sandbox-agent/example-mcp-custom-tool",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build:mcp": "esbuild src/mcp-server.ts --bundle --format=cjs --platform=node --target=node18 --minify --outfile=dist/mcp-server.cjs",
|
|
"start": "pnpm build:mcp && tsx src/index.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "latest",
|
|
"@sandbox-agent/example-shared": "workspace:*",
|
|
"sandbox-agent": "workspace:*",
|
|
"zod": "latest"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "latest",
|
|
"esbuild": "latest",
|
|
"tsx": "latest",
|
|
"typescript": "latest"
|
|
}
|
|
}
|