package.jsonβ’1.65 kB
{
"name": "code-executor-mcp",
"version": "1.2.0",
"description": "Universal MCP server for executing TypeScript/Python with progressive disclosure (98% token savings)",
"type": "module",
"main": "dist/index.js",
"bin": {
"code-executor-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"server": "npm run build && node dist/index.js",
"generate-wrappers": "npm run build && node dist/wrapper-generator.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE",
"SECURITY.md"
],
"keywords": [
"mcp",
"model-context-protocol",
"code-execution",
"sandbox",
"typescript",
"python",
"deno",
"progressive-disclosure",
"claude-code"
],
"author": "Alexandru Eremia <aberemia@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aberemia24/code-executor-MCP.git"
},
"bugs": {
"url": "https://github.com/aberemia24/code-executor-MCP/issues"
},
"homepage": "https://github.com/aberemia24/code-executor-MCP#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.5.13",
"@vitest/coverage-v8": "^4.0.8",
"typescript": "^5.6.3",
"vitest": "^4.0.8"
},
"engines": {
"node": ">=22.0.0"
}
}