package.json•761 B
{
"name": "github-mcp",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server implementation for GitHub integration",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "node build/index.js",
"dev": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"github",
"api",
"typescript"
],
"author": "Oghenetejiri Orukpe",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"axios": "^1.6.7"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0"
}
}