package.json•773 B
{
"name": "@smithery/mcp-github",
"version": "1.0.0",
"description": "MCP server for interacting with Github",
"license": "MIT",
"author": "Smithery",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"postbuild": "shx test -e dist/*.js && shx chmod +x dist/*.js || true",
"prepare": "npm run build",
"dev": "tsx watch src/index.ts",
"watch": "tsc --watch",
"start": "node dist/index.js",
"check": "npx @biomejs/biome check --write --unsafe"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"@smithery/sdk": "^1.3.2",
"express": "^5.1.0",
"octokit": "^4.1.3"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^22",
"shx": "^0.3.4",
"tsx": "^4.19.4",
"typescript": "^5.6.2"
}
}