Add code
This commit is contained in:
41
package.json
Normal file
41
package.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "@bitbucket/mcp-server",
|
||||
"version": "1.0.0",
|
||||
"description": "MCP Server for Bitbucket Pull Requests - AI agent integration with Bitbucket Cloud REST API",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"bin": {
|
||||
"@bitbucket/mcp-server": "./dist/index.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc && node -e \"const fs=require('fs'); const pkg=JSON.parse(fs.readFileSync('package.json')); pkg.main='dist/index.js'; fs.writeFileSync('package.json',JSON.stringify(pkg,null,2));\"",
|
||||
"start": "tsx src/index.ts",
|
||||
"dev": "tsx watch src/index.ts",
|
||||
"test": "vitest run",
|
||||
"test:watch": "vitest",
|
||||
"test:coverage": "vitest run --coverage",
|
||||
"test:integration": "vitest run tests/integration",
|
||||
"test:integration:watch": "vitest tests/integration"
|
||||
},
|
||||
"keywords": [
|
||||
"mcp",
|
||||
"bitbucket",
|
||||
"pull-request",
|
||||
"ai-agent",
|
||||
"atlassian"
|
||||
],
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@modelcontextprotocol/sdk": "^1.29.0",
|
||||
"axios": "^1.6.2",
|
||||
"dotenv": "^16.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.19.39",
|
||||
"@vitest/spy": "^1.6.0",
|
||||
"tsx": "^4.7.0",
|
||||
"typescript": "^5.3.0",
|
||||
"vitest": "^4.1.6"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user