package.json•1.57 kB
{
"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": "jest",
"lint": "eslint src/**/*.ts",
"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.1.1",
"axios": "^1.6.5",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"prettier": "^3.0.0",
"npm-check-updates": "^16.0.0"
},
"engines": {
"node": ">=18"
}
}