-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.16 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.16 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "bitbucket-mcp",
"version": "5.0.6",
"description": "Model Context Protocol (MCP) server for Bitbucket Cloud and Server API integration",
"mcpName": "io.github.MatanYemini/bitbucket-mcp",
"type": "module",
"main": "dist/index.js",
"bin": {
"bitbucket-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"prepublishOnly": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"release": "npm run publish:patch",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"lint": "eslint src/**/*.ts",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js",
"registry:manifest": "node scripts/generate-registry-manifest.cjs",
"registry:validate": "node scripts/validate-server-json.mjs"
},
"keywords": [
"bitbucket",
"bitbucket-cloud",
"bitbucket-server",
"mcp",
"model-context-protocol",
"ai",
"llm"
],
"author": "Bitbucket MCP Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MatanYemini/bitbucket-mcp"
},
"homepage": "https://github.com/MatanYemini/bitbucket-mcp#readme",
"bugs": {
"url": "https://github.com/MatanYemini/bitbucket-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.1.1",
"axios": "^1.6.5",
"winston": "^3.11.0"
},
"devDependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}