-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "@scr2em/bitbucket-cli",
"version": "1.3.1",
"description": "A CLI tool for interacting with Bitbucket repositories",
"main": "dist/index.js",
"bin": {
"bb": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"generate:api": "swagger-typescript-api generate -p ./bitbucket-openapi.json -o ./src/api/generated -n bitbucket-api.ts --axios",
"prepare": "pnpm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build && changeset publish"
},
"keywords": [
"bitbucket",
"cli",
"git",
"repositories",
"workspace",
"pull-requests",
"branches"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.26.2",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/scr2em/bitbucket-cli.git"
},
"homepage": "https://github.com/scr2em/bitbucket-cli#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"axios": "^1.6.2",
"commander": "^11.1.0",
"consola": "^3.2.3",
"git-split-diffs": "^2.2.0",
"inquirer": "^9.2.12",
"open": "^10.0.2"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.0",
"swagger-typescript-api": "^13.12.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}