agent-ecosystem/mcp-server/package.json
iliya f7130c3437 chore: update package scripts and improve CI workflow
- Enhanced package.json scripts by adding a new linting command for the MCP workspace and updating the check script to include MCP linting.
- Modified CI workflow to replace individual typecheck and lint steps with a consolidated validation step for improved efficiency.
- Introduced a new TypeScript configuration for testing in the MCP server, enhancing type checking capabilities.
- Reorganized imports in several components for better clarity and maintainability.
2026-03-07 19:37:59 +02:00

52 lines
1.1 KiB
JSON

{
"name": "agent-teams-mcp",
"version": "1.0.0",
"description": "MCP server for managing Claude Agent Teams through the agent-teams-controller API",
"type": "module",
"main": "dist/index.js",
"bin": {
"agent-teams-mcp": "dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"mcp-server",
"claude",
"agent-teams",
"kanban",
"task-management",
"model-context-protocol"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nickchernyy/agent-teams-mcp"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"lint": "eslint \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"typecheck:test": "tsc --noEmit -p tsconfig.test.json",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"agent-teams-controller": "workspace:*",
"fastmcp": "^3.34.0",
"zod": "^4.3.6"
},
"devDependencies": {
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.8.2",
"vitest": "^3.1.4",
"@types/node": "^22.15.18"
},
"engines": {
"node": ">=20"
}
}