-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.6 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
{
"name": "bitbucket-server",
"version": "1.0.0",
"description": "MCP Server for Bitbucket Server PR management",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"bitbucket-server-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && node -e \"if (process.platform !== 'win32') require('child_process').execSync('chmod +x build/index.js')\"",
"postinstall": "node -e \"const fs=require('fs'); if (process.platform !== 'win32' && fs.existsSync('build/index.js')) require('child_process').execSync('chmod +x build/index.js')\"",
"start": "node build/index.js",
"dev": "tsc -w",
"dev:server": "npm run build && npx @modelcontextprotocol/inspector -e DEBUG=true node build/index.js",
"test": "vitest",
"lint": "eslint src",
"format": "prettier --write 'src/**/*.ts'",
"update:check": "npx npm-check-updates",
"update:deps": "npx npm-check-updates -u && npm install --legacy-peer-deps",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"axios": "^1.13.6",
"winston": "^3.19.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.5",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"npm-check-updates": "^19.6.3",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
}
}