cli / mcp for bitbucket
at main 22 lines 682 B view raw
1{ 2 "name": "bitbucket-tool-cli", 3 "version": "0.1.0", 4 "description": "CLI for Bitbucket Cloud — pull requests, code review, and more", 5 "license": "MIT", 6 "keywords": ["bitbucket", "cli", "pull-requests", "code-review"], 7 "repository": { 8 "type": "git", 9 "url": "https://github.com/riotbyte-com/bitbucket-tool.git", 10 "directory": "packages/cli" 11 }, 12 "main": "dist/index.js", 13 "bin": { 14 "bitbucket-tool-cli": "./dist/index.js" 15 }, 16 "files": ["dist"], 17 "scripts": { 18 "build": "rm -rf dist && esbuild src/bin/bb.ts --bundle --platform=node --target=node18 --format=cjs --outfile=dist/index.js", 19 "typecheck": "tsc --noEmit" 20 }, 21 "dependencies": {} 22}