github-manager MCP Server

{ "name": "github-manager", "version": "0.1.0", "description": "GitHub Manager MCP Server", "private": true, "type": "module", "bin": { "github-manager": "./build/index.js" }, "files": [ "build" ], "scripts": { "clean": "rm -rf build", "build": "npm run clean && tsc && node --input-type=module -e \"import { chmodSync } from 'fs'; chmodSync('build/index.js', '755');\"", "prepare": "npm run build", "watch": "tsc --watch", "inspector": "npx @modelcontextprotocol/inspector build/index.js", "test": "vitest run", "test:watch": "vitest watch", "test:coverage": "vitest run --coverage", "test:ui": "vitest --ui" }, "dependencies": { "@modelcontextprotocol/sdk": "0.6.0", "@octokit/rest": "^21.0.2", "node-fetch": "^2.7.0" }, "devDependencies": { "@types/node": "^20.11.24", "@types/node-fetch": "^2.6.12", "@vitest/coverage-v8": "^2.1.8", "typescript": "^5.3.3", "vitest": "^2.1.8" } }