|
1 | 1 | {
|
2 |
| - "name": "azure-devops-mcp", |
| 2 | + "name": "@tiberriver256/mcp-server-azure-devops", |
3 | 3 | "version": "0.1.0",
|
4 | 4 | "description": "Azure DevOps reference server for the Model Context Protocol (MCP)",
|
5 | 5 | "main": "dist/index.js",
|
6 | 6 | "types": "dist/index.d.ts",
|
| 7 | + "config": { |
| 8 | + "commitizen": { |
| 9 | + "path": "./node_modules/cz-conventional-changelog" |
| 10 | + } |
| 11 | + }, |
7 | 12 | "scripts": {
|
8 | 13 | "build": "tsc",
|
9 | 14 | "dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
|
16 | 21 | "test:watch": "jest --watch",
|
17 | 22 | "lint": "eslint . --ext .ts",
|
18 | 23 | "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
|
19 |
| - "prepare": "husky install" |
| 24 | + "prepare": "husky install", |
| 25 | + "commit": "cz", |
| 26 | + "release": "standard-version", |
| 27 | + "release:minor": "standard-version --release-as minor", |
| 28 | + "release:patch": "standard-version --release-as patch", |
| 29 | + "release:major": "standard-version --release-as major", |
| 30 | + "release:dryrun": "standard-version --dry-run" |
20 | 31 | },
|
21 | 32 | "keywords": [
|
22 | 33 | "azure-devops",
|
|
35 | 46 | "zod": "^3.24.2"
|
36 | 47 | },
|
37 | 48 | "devDependencies": {
|
| 49 | + "@commitlint/cli": "^19.8.0", |
| 50 | + "@commitlint/config-conventional": "^19.8.0", |
38 | 51 | "@types/jest": "^29.5.0",
|
39 | 52 | "@types/node": "^20.0.0",
|
40 | 53 | "@typescript-eslint/eslint-plugin": "^8.27.0",
|
41 | 54 | "@typescript-eslint/parser": "^8.27.0",
|
| 55 | + "commitizen": "^4.3.1", |
| 56 | + "cz-conventional-changelog": "^3.3.0", |
42 | 57 | "eslint": "^8.0.0",
|
43 | 58 | "eslint-config-prettier": "^9.0.0",
|
44 | 59 | "eslint-plugin-prettier": "^5.0.0",
|
45 |
| - "husky": "^8.0.0", |
| 60 | + "husky": "^8.0.3", |
46 | 61 | "jest": "^29.0.0",
|
47 | 62 | "prettier": "^3.0.0",
|
| 63 | + "standard-version": "^9.5.0", |
48 | 64 | "ts-jest": "^29.0.0",
|
49 | 65 | "ts-node-dev": "^2.0.0",
|
50 | 66 | "typescript": "^5.8.2"
|
|
0 commit comments