package.json 682 B

12345678910111213141516171819202122232425262728293031323334
  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": "tsc",
  12. "watch": "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. "axios": "^1.7.9",
  27. "zod": "^3.24.1"
  28. },
  29. "devDependencies": {
  30. "@types/node": "^22.10.5",
  31. "tsx": "^4.19.2",
  32. "typescript": "^5.7.2"
  33. }
  34. }