package.json•1.45 kB
{
"name": "@codebase-mcp/server",
"version": "1.0.0",
"description": "MCP server for analyzing any application codebase with real-time file watching",
"type": "module",
"main": "dist/server.js",
"bin": {
"codebase-mcp": "./bin/codebase-mcp"
},
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "bun run server.ts",
"dev": "bun --watch server.ts",
"build": "bun build server.ts --outdir dist --target node --format esm",
"prepublishOnly": "bun run build",
"install-global": "bun run build && npm install -g ."
},
"keywords": [
"mcp",
"model-context-protocol",
"codebase-analysis",
"file-watching",
"development-tools",
"claude-code",
"static-analysis"
],
"author": "Christopher Narozny",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-username/codebase-mcp-server.git"
},
"homepage": "https://github.com/your-username/codebase-mcp-server#readme",
"bugs": {
"url": "https://github.com/your-username/codebase-mcp-server/issues"
},
"dependencies": {
"@babel/parser": "^7.28.0",
"@babel/traverse": "^7.28.0",
"@babel/types": "^7.28.2",
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"preferGlobal": true
}