-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.65 KB
/
package.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "bitbucket-pr-pipeline",
"title": "Bitbucket Branch & PullRequest & Pipeline",
"description": "Bitbucket create Pr from branch,\nmerge Pr, create release & Hotfix Pr.\n\nList Pipeline and view logs.",
"icon": "bitbucket-logo.png",
"owner": "kang",
"author": "yufeikang",
"categories": [
"Developer Tools"
],
"license": "MIT",
"commands": [
{
"name": "repoList",
"title": "List Bitbucket Repos",
"description": "List Bitbucket Repositories, And Option branch, pr, release, hotfix, pipeline.",
"icon": "bitbucket.svg",
"mode": "view"
},
{
"name": "myPullRequestList",
"title": "List My Open PullRequest",
"description": "List Bitbucket My Open PullRequest.",
"icon": "bitbucket.svg",
"mode": "view"
},
{
"name": "myPullRequestListMenu",
"title": "Refresh My Open PullRequest",
"description": "List Bitbucket My Open PullRequest.",
"icon": "bitbucket.svg",
"mode": "menu-bar",
"interval": "10m"
}
],
"preferences": [
{
"name": "workspace",
"title": "Bitbucket Workspace",
"description": "Bitbucket Workspace",
"type": "textfield",
"required": true,
"placeholder": "workspace"
},
{
"name": "username",
"title": "Bitbucket Username",
"description": "Bitbucket Username",
"type": "textfield",
"required": true
},
{
"name": "password",
"title": "Bitbucket App Password",
"description": "Bitbucket App Password",
"type": "password",
"required": true
},
{
"name": "releasePrPrefix",
"title": "Release Pr Prefix",
"description": "Release PullRequest Prefix, example: Release",
"type": "textfield",
"default": "Release",
"required": false
},
{
"name": "hotfixPrPrefix",
"title": "Hotfix Pr Prefix",
"description": "hotFix PullRequest Prefix, example: Hotfix",
"type": "textfield",
"default": "Hotfix",
"required": false
}
],
"dependencies": {
"@raycast/api": "^1.60.0",
"@raycast/utils": "^1.4.11",
"axios": "^0.27.1",
"moment": "^2.29.3",
"winston": "^3.7.2"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.6",
"@types/node": "^18.8.4",
"@types/react": "^18.2.27",
"axios-debug-log": "^0.8.4",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"react": "^18.2.0",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint"
}
}