@radholm/azure-devops-mcp 1.0.0-beta.3-nightly.20260607 → 1.0.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/version.js +1 -1
  2. package/package.json +14 -12
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const packageVersion = "1.0.0-beta.3-nightly.20260607";
1
+ export const packageVersion = "1.0.0-beta.4";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@radholm/azure-devops-mcp",
3
- "version": "1.0.0-beta.3-nightly.20260607",
3
+ "version": "1.0.0-beta.4",
4
4
  "description": "MCP server for interacting with Azure DevOps",
5
5
  "license": "MIT",
6
6
  "author": "Fredrik Radholm",
@@ -21,20 +21,21 @@
21
21
  "access": "public"
22
22
  },
23
23
  "scripts": {
24
- "preinstall": "npm config set registry https://registry.npmjs.org/",
25
24
  "prebuild": "node -p \"'export const packageVersion = ' + JSON.stringify(require('./package.json').version) + ';\\n'\" > src/version.ts && prettier --write src/version.ts",
26
25
  "validate-tools": "tsc --noEmit && node scripts/build-validate-tools.js",
27
26
  "build": "tsc && shx chmod +x dist/*.js",
28
- "prepare": "npm run build && husky",
27
+ "prepare": "bun run build && husky",
29
28
  "watch": "tsc --watch",
30
- "inspect": "ALLOWED_ORIGINS=http://127.0.0.1:6274 npx @modelcontextprotocol/inspector@0.21.0 node dist/index.js",
29
+ "inspect": "ALLOWED_ORIGINS=http://127.0.0.1:6274 bunx @modelcontextprotocol/inspector@0.21.0 node dist/index.js",
31
30
  "start": "node -r tsconfig-paths/register dist/index.js",
32
31
  "eslint": "eslint",
33
32
  "eslint-fix": "eslint --fix",
34
33
  "format": "prettier --write .",
35
34
  "format-check": "prettier --check .",
36
35
  "clean": "shx rm -rf dist",
37
- "test": "jest"
36
+ "test": "vitest run",
37
+ "test:watch": "vitest",
38
+ "test:coverage": "vitest run --coverage"
38
39
  },
39
40
  "dependencies": {
40
41
  "@azure/identity": "^4.10.0",
@@ -45,25 +46,26 @@
45
46
  "azure-devops-node-api": "^15.1.2",
46
47
  "winston": "^3.18.3",
47
48
  "yargs": "^18.0.0",
48
- "zod": "^3.25.63",
49
- "zod-to-json-schema": "^3.24.5"
49
+ "zod": "^4.4.3"
50
50
  },
51
51
  "devDependencies": {
52
- "@types/jest": "^30.0.0",
53
52
  "@types/node": "^25.9.1",
53
+ "@types/yargs": "^17.0.35",
54
+ "@vitest/coverage-v8": "^3.1.0",
54
55
  "eslint-config-prettier": "10.1.8",
55
56
  "eslint-plugin-header": "^3.1.1",
56
57
  "glob": "^13.0.0",
57
58
  "husky": "^9.1.7",
58
- "jest": "^30.0.2",
59
- "jest-extended": "^7.0.0",
60
59
  "lint-staged": "^17.0.0",
61
60
  "prettier": "3.8.3",
62
61
  "shx": "^0.4.0",
63
- "ts-jest": "^29.4.6",
64
62
  "tsconfig-paths": "^4.2.0",
65
63
  "typescript": "^5.9.3",
66
- "typescript-eslint": "^8.54.0"
64
+ "typescript-eslint": "^8.54.0",
65
+ "vitest": "^3.1.0"
66
+ },
67
+ "overrides": {
68
+ "zod": "^4.4.3"
67
69
  },
68
70
  "lint-staged": {
69
71
  "**/*.(js|ts|jsx|tsx|json|css|md)": [