package.json•1.44 kB
{
"name": "@steipete/claude-code-mcp",
"version": "1.10.12",
"description": "Simple MCP server for Claude Code one-shot execution",
"author": "Peter Steinberger",
"license": "MIT",
"main": "dist/server.js",
"bin": {
"claude-code-mcp": "dist/server.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx src/server.ts",
"test": "npm run build && vitest",
"test:unit": "vitest run --config vitest.config.unit.ts",
"test:e2e": "npm run build && vitest run --config vitest.config.e2e.ts",
"test:e2e:local": "npm run build && vitest run --config vitest.config.e2e.ts",
"test:coverage": "npm run build && vitest --coverage --config vitest.config.unit.ts",
"test:watch": "vitest --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.2",
"zod": "^3.24.4"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/node": "^22.15.17",
"@vitest/coverage-v8": "^2.1.8",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steipete/claude-code-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"ai",
"llm",
"tools"
],
"bugs": {
"url": "https://github.com/steipete/claude-code-mcp/issues"
},
"homepage": "https://github.com/steipete/claude-code-mcp#readme"
}