| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "name": "gogs-mcp-server",
- "version": "1.0.0",
- "description": "MCP server for Gogs git provider",
- "type": "module",
- "main": "dist/index.js",
- "bin": {
- "gogs-mcp-server": "dist/index.js"
- },
- "scripts": {
- "build": "node_modules/.bin/tsc",
- "watch": "node_modules/.bin/tsc --watch",
- "dev": "tsx src/index.ts",
- "start": "node dist/index.js"
- },
- "keywords": [
- "mcp",
- "gogs",
- "git",
- "model-context-protocol"
- ],
- "author": "",
- "license": "MIT",
- "dependencies": {
- "@modelcontextprotocol/sdk": "^1.0.4",
- "@types/cors": "^2.8.19",
- "@types/express": "^5.0.5",
- "axios": "^1.7.9",
- "cors": "^2.8.5",
- "dotenv": "^16.4.7",
- "express": "^5.1.0",
- "zod": "^3.24.1"
- },
- "devDependencies": {
- "@types/node": "^22.18.12",
- "tsx": "^4.20.6",
- "typescript": "^5.9.3"
- }
- }
|