-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.78 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "my-gitlab-dashboard",
"title": "My GitLab Dashboard",
"description": "Get all MRs and pipelines of your projects together in a single view",
"icon": "gitlab.png",
"author": "mikybars",
"license": "MIT",
"categories": [
"Developer Tools",
"Productivity"
],
"commands": [
{
"name": "dashboardCommand",
"title": "Dashboard",
"description": "All MRs and pipelines of your projects at a glance",
"mode": "view"
},
{
"name": "selectProjectsCommand",
"title": "Select My Projects",
"description": "Choose which projects to include in the dashboard",
"mode": "view"
}
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@raycast/api": "^1.65.0",
"@raycast/utils": "^1.10.1",
"@urql/core": "^4.3.0",
"dayjs": "^1.11.10",
"gql.tada": "^1.4.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.7.1",
"@raycast/eslint-config": "^1.0.6",
"@types/node": "20.8.10",
"@types/react": "18.2.27",
"eslint": "^8.51.0",
"prettier": "^3.0.3",
"react-devtools": "^4.28.4",
"typescript": "^5.2.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
},
"preferences": [
{
"name": "gitlabInstance",
"type": "textfield",
"required": true,
"title": "GitLab URL",
"description": "URL of your GitLab instance",
"placeholder": "URL of your GitLab instance e.g. https://gitlab.com"
},
{
"name": "gitlabToken",
"type": "password",
"required": true,
"title": "API Token",
"description": "Your GitLab API token. `api` scope for read and write operations, `read_api` when you just want to read only commands.",
"link": "https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html",
"placeholder": "Enter your GitLab API token."
},
{
"name": "jiraInstance",
"type": "textfield",
"required": false,
"title": "Jira URL",
"description": "URL of your Jira instance",
"placeholder": "URL of your Jira instance e.g. https://jira.com"
},
{
"name": "softWarningDateThreshold",
"type": "textfield",
"required": false,
"title": "Soft warning threshold for dates",
"description": "Creation and modification times that are past this value will be displayed in a different colour",
"placeholder": "1d"
},
{
"name": "hardWarningDateThreshold",
"type": "textfield",
"required": false,
"title": "Hard warning threshold for dates",
"description": "Creation and modification times that are past this value will be displayed in a different colour and show an alert icon",
"placeholder": "2d"
},
{
"name": "colorizedDatesForPipelines",
"type": "checkbox",
"required": false,
"default": false,
"title": "Dates",
"label": "Colorized dates for pipelines",
"description": "Show colorized dates for pipelines last runs depending on the thresholds defined above"
},
{
"name": "colorizedDatesForMergeRequests",
"type": "checkbox",
"required": false,
"default": true,
"label": "Colorized dates for MRs",
"description": "Show colorized dates for MRs creation dates depending on the thresholds defined above"
},
{
"name": "colorizedDatesForComments",
"type": "checkbox",
"required": false,
"default": false,
"label": "Colorized dates for comments",
"description": "Show colorized dates for MRs unresolved comments depending on the thresholds defined above"
}
]
}