generated from GUIAINTERNATIONAL/XREPOSITORY
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.97 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@azure-devops/mcp",
"version": "1.1.0",
"description": "MCP server for interacting with Azure DevOps",
"license": "MIT",
"author": "Microsoft Corporation",
"homepage": "https://github.com/microsoft/azure-devops-mcp",
"bugs": "https://github.com/microsoft/azure-devops-mcp/issues",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/azure-devops-mcp.git"
},
"type": "module",
"bin": {
"mcp-server-azuredevops": "dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"preinstall": "npm config set registry https://registry.npmjs.org/",
"prebuild": "node -p \"'export const packageVersion = ' + JSON.stringify(require('./package.json').version) + ';\\n'\" > src/version.ts && prettier --write src/version.ts",
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"start": "node -r tsconfig-paths/register dist/index.js",
"eslint": "eslint",
"eslint-fix": "eslint --fix",
"format": "prettier --write .",
"format-check": "prettier --check .",
"clean": "shx rm -rf dist",
"test": "jest"
},
"dependencies": {
"@azure/identity": "^4.10.0",
"@modelcontextprotocol/sdk": "1.15.1",
"azure-devops-extension-api": "^4.252.0",
"azure-devops-extension-sdk": "^4.0.2",
"azure-devops-node-api": "^15.1.0",
"yargs": "^17.7.2",
"zod": "^3.25.63",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.16.1",
"@types/jest": "^30.0.0",
"@types/node": "^24",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-header": "^3.1.1",
"jest": "^30.0.2",
"jest-extended": "^6.0.0",
"prettier": "3.6.2",
"shx": "^0.4.0",
"ts-jest": "^29.4.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
}
}