package.json•822 B
{
"name": "ares-devops-mcp",
"version": "1.0.2",
"description": "MCP server for Azure DevOps Git operations",
"main": "dist/index.js",
"type": "commonjs",
"bin": {
"ares-devops-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build"
},
"dependencies": {
"fastmcp": "^1.21.0",
"zod": "^3.22.4",
"dotenv": "^16.3.1",
"axios": "^1.6.2"
},
"devDependencies": {
"typescript": "^5.3.3",
"tsx": "^4.7.0",
"@types/node": "^20.10.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.11"
}
}