@pilatos/bitbucket-cli 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +398 -0
- package/dist/index.js +35680 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pilatos/bitbucket-cli",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "A command-line interface for Bitbucket Cloud",
|
|
5
|
+
"author": "",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/0pilatos0/bitbucket-cli.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/0pilatos0/bitbucket-cli/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/0pilatos0/bitbucket-cli#readme",
|
|
16
|
+
"bin": {
|
|
17
|
+
"bb": "./dist/index.js"
|
|
18
|
+
},
|
|
19
|
+
"main": "./dist/index.js",
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"README.md",
|
|
23
|
+
"LICENSE"
|
|
24
|
+
],
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=20"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"dev": "bun run src/index.ts",
|
|
30
|
+
"build": "bun build src/index.ts --outdir dist --target node",
|
|
31
|
+
"test": "bun test",
|
|
32
|
+
"lint": "tsc --noEmit",
|
|
33
|
+
"generate:api": "openapi-generator-cli generate",
|
|
34
|
+
"docs:dev": "cd docs && bun run dev",
|
|
35
|
+
"docs:build": "cd docs && bun run build",
|
|
36
|
+
"changeset": "changeset",
|
|
37
|
+
"version": "changeset version",
|
|
38
|
+
"release": "bun run build && changeset publish",
|
|
39
|
+
"prepublishOnly": "bun run build"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"chalk": "^5.3.0",
|
|
43
|
+
"commander": "^12.1.0",
|
|
44
|
+
"tabtab": "^3.0.2"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@changesets/changelog-github": "^0.5.0",
|
|
48
|
+
"@changesets/cli": "^2.27.0",
|
|
49
|
+
"@openapitools/openapi-generator-cli": "^2.15.3",
|
|
50
|
+
"@types/bun": "latest",
|
|
51
|
+
"@types/node": "^22.10.2",
|
|
52
|
+
"typescript": "^5.7.2"
|
|
53
|
+
}
|
|
54
|
+
}
|