package.json•1.94 kB
{
"name": "gh-cli-mcp",
"version": "1.1.1",
"description": "GitHub CLI MCP server for AI assistants - access GitHub via Model Context Protocol",
"main": "dist/index.js",
"type": "module",
"bin": {
"gh-cli-mcp": "dist/gh-mcp.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc -w & nodemon dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest test/unit",
"test:integration": "NODE_OPTIONS=--experimental-vm-modules jest test/integration",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test"
},
"keywords": [
"mcp",
"github",
"cli",
"model",
"context",
"protocol",
"stdio"
],
"author": "CodingButterBot",
"repository": {
"type": "git",
"url": "git+https://github.com/CodingButterBot/gh_cli_mcp.git"
},
"bugs": {
"url": "https://github.com/CodingButterBot/gh_cli_mcp/issues"
},
"homepage": "https://codingbutterbot.github.io/gh_cli_mcp/",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"gh-cli-mcp.config.example.json"
],
"types": "dist/index.d.ts"
}