package.json•842 B
{
"name": "claude-code-mcp",
"version": "1.0.0",
"description": "Claude Code implementation as an MCP server",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts"
},
"keywords": [
"claude",
"claude-code",
"mcp",
"modelcontextprotocol",
"ai",
"llm"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/claude-code-mcp.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"@types/node": "^22.13.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"zod": "^3.24.2"
}
}