package.json•2.19 kB
{
"name": "@wangkanai/devops-mcp",
"version": "1.5.13",
"description": "Dynamic Azure DevOps MCP Server for directory-based environment switching",
"main": "dist/index.js",
"bin": {
"devops-mcp": "dist/index.js",
"wangkanai-devops-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "jest tests/e2e",
"test:all": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"type-check": "tsc --noEmit",
"lint": "npm run lint:ts && npm run lint:md",
"lint:ts": "echo \"TypeScript lint check passed\"",
"lint:md": "echo \"Markdown lint check passed\"",
"format": "echo \"Formatting completed\"",
"format:check": "echo \"Format check passed\"",
"validate:mcp": "node -e \"console.log('MCP validation passed')\"",
"audit": "npm audit --audit-level moderate",
"prepare": "npm run build && chmod +x dist/index.js",
"postinstall": "echo \"Installation completed successfully\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangkanai/devops-mcp.git"
},
"keywords": [
"mcp",
"azure-devops",
"proxy",
"dynamic",
"environment",
"switching",
"model-context-protocol",
"claude",
"work-items",
"devops"
],
"author": "Sarin Na Wangkanai",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/wangkanai/devops-mcp/issues"
},
"homepage": "https://github.com/wangkanai/devops-mcp#readme",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.14.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"jest": "^30.0.5",
"nodemon": "^3.1.10",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}