package.json•1.71 kB
{
"name": "azure-devops-wiki-mcp",
"version": "1.0.2",
"description": "MCP server for Azure DevOps Wiki API integration",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-server-azure-devops-wiki": "dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"watch": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"release": "npm run build && npm run test && npm run lint"
},
"keywords": [
"mcp",
"azure-devops",
"wiki",
"model-context-protocol",
"ai",
"devops"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uright/azure-devops-wiki-mcp.git"
},
"bugs": {
"url": "https://github.com/uright/azure-devops-wiki-mcp/issues"
},
"homepage": "https://github.com/uright/azure-devops-wiki-mcp#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"@azure/identity": "^4.0.1",
"azure-devops-node-api": "^12.5.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.8",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}