package.json•1.04 kB
{
"name": "github-integration-hub",
"version": "0.1.0",
"description": "Hands-on GitHub OAuth integration hub built with TypeScript",
"main": "dist/src/server.js",
"types": "dist/src/server.d.ts",
"bin": {
"github-integration-hub": "dist/cli/index.js"
},
"scripts": {
"dev": "ts-node-dev --respawn src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/src/server.js",
"start:mcp": "node dist/src/mcp/server.js",
"cli": "node dist/cli/index.js"
},
"keywords": [
"github",
"oauth",
"integrations",
"cli",
"sdk"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"axios": "^1.6.8",
"better-sqlite3": "^9.4.1",
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}