package.json•1.31 kB
{
"name": "@kunihiros/claude-code-mcp",
"version": "0.1.6",
"description": "MCP server for Claude Code",
"main": "claude-code-server/build/index.js",
"type": "module",
"bin": {
"claude-code-mcp": "./claude-code-server/build/index.js"
},
"files": [
"claude-code-server/build/**/*",
"README.md",
"LICENSE",
"claude-code-server/.env.example"
],
"scripts": {
"build": "cd claude-code-server && npx tsc && chmod +x build/index.js",
"start": "node claude-code-server/build/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.4.5",
"winston": "^3.13.0"
},
"devDependencies": {
"@anthropic-ai/claude-code": ">=1.0.105",
"@types/dotenv": "^8.2.0",
"@types/node": "^20.17.43",
"typescript": "^4.9.5"
},
"keywords": [
"claude",
"claude-code",
"mcp",
"anthropic",
"ai",
"model-context-protocol"
],
"author": "KunihiroS",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KunihiroS/claude-code-mcp.git"
},
"bugs": {
"url": "https://github.com/KunihiroS/claude-code-mcp/issues"
},
"homepage": "https://github.com/KunihiroS/claude-code-mcp#readme",
"engines": {
"node": ">=18"
}
}