package.json 853 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "gogs-mcp-server",
  3. "version": "1.0.0",
  4. "description": "MCP server for Gogs git provider",
  5. "type": "module",
  6. "main": "dist/index.js",
  7. "bin": {
  8. "gogs-mcp-server": "dist/index.js"
  9. },
  10. "scripts": {
  11. "build": "node_modules/.bin/tsc",
  12. "watch": "node_modules/.bin/tsc --watch",
  13. "dev": "tsx src/index.ts",
  14. "start": "node dist/index.js"
  15. },
  16. "keywords": [
  17. "mcp",
  18. "gogs",
  19. "git",
  20. "model-context-protocol"
  21. ],
  22. "author": "",
  23. "license": "MIT",
  24. "dependencies": {
  25. "@modelcontextprotocol/sdk": "^1.0.4",
  26. "@types/cors": "^2.8.19",
  27. "@types/express": "^5.0.5",
  28. "axios": "^1.7.9",
  29. "cors": "^2.8.5",
  30. "dotenv": "^16.4.7",
  31. "express": "^5.1.0",
  32. "zod": "^3.24.1"
  33. },
  34. "devDependencies": {
  35. "@types/node": "^22.18.12",
  36. "tsx": "^4.20.6",
  37. "typescript": "^5.9.3"
  38. }
  39. }