package.json 614 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "agent-manager-client",
  3. "version": "1.0.0",
  4. "description": "TypeScript Claude Agent SDK client for issue automation",
  5. "main": "dist/index.js",
  6. "type": "module",
  7. "scripts": {
  8. "build": "tsc",
  9. "watch": "tsc --watch",
  10. "clean": "rm -rf dist"
  11. },
  12. "keywords": ["claude", "agent", "gogs", "automation"],
  13. "author": "",
  14. "license": "ISC",
  15. "engines": {
  16. "node": ">=18.0.0"
  17. },
  18. "dependencies": {
  19. "@anthropic-ai/claude-agent-sdk": "^0.1.28",
  20. "@modelcontextprotocol/sdk": "^1.0.4"
  21. },
  22. "devDependencies": {
  23. "@types/node": "^20.0.0",
  24. "typescript": "^5.3.0"
  25. }
  26. }