-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
235 lines (235 loc) · 6.43 KB
/
package.json
File metadata and controls
235 lines (235 loc) · 6.43 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
{
"name": "pullflow",
"publisher": "PullFlow",
"displayName": "PullFlow",
"description": "Code review collaboration across GitHub, Slack, and VS Code.",
"version": "6.0.2",
"preview": true,
"license": "MIT",
"engines": {
"vscode": "^1.70.0"
},
"author": {
"name": "PullFlow"
},
"icon": "assets/pullflow.png",
"categories": [
"Programming Languages",
"Machine Learning",
"Education",
"Snippets",
"Other"
],
"galleryBanner": {
"color": "#F6F4F9",
"theme": "light"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/pullflow/vscode-pullflow"
},
"bugs": {
"url": "https://github.com/pullflow/vscode-pullflow/issues"
},
"activationEvents": [
"onStartupFinished",
"onUri"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "pullflow.active-pull-requests",
"title": "PullFlow: Active Pull Requests"
},
{
"command": "pullflow.signIn",
"title": "PullFlow: Sign in"
},
{
"command": "pullflow.signOut",
"title": "PullFlow: Sign out"
},
{
"command": "pullflow.reconnect",
"title": "PullFlow: Reconnect"
},
{
"command": "pullflow.toggle-flow-state",
"title": "PullFlow: Toggle Flow State"
},
{
"command": "pullflow.welcome-view",
"title": "PullFlow: Welcome"
}
],
"keybindings": [
{
"command": "pullflow.active-pull-requests",
"key": "ctrl+shift+,",
"mac": "cmd+shift+,"
}
],
"icons": {
"pullflow-icon": {
"description": "PullFlow icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e90d"
}
},
"slack-icon": {
"description": "Slack icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e900"
}
},
"github-icon": {
"description": "GitHub icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e90b"
}
},
"approved-icon": {
"description": "Approved icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e905"
}
},
"review-icon": {
"description": "Review Requested icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e90a"
}
},
"checks-running-icon": {
"description": "Checks running icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e903"
}
},
"checks-failed-icon": {
"description": "Checks failed icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e904"
}
},
"checks-skipped-icon": {
"description": "Checks skipped icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e901"
}
},
"checks-passed-icon": {
"description": "Checks passed icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e902"
}
},
"review-comment-icon": {
"description": "Review comment icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e907"
}
},
"pr-open-icon": {
"description": "PR open icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e909"
}
},
"request-changes-icon": {
"description": "Request changes icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e906"
}
},
"draft-pr-icon": {
"description": "Draft PR icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e908"
}
},
"flow-state-icon": {
"description": "Flow-state icon",
"default": {
"fontPath": "./assets/PullFlow.woff",
"fontCharacter": "\\e90c"
}
}
},
"configuration": {
"id": "pullflow",
"title": "PullFlow",
"properties": {
"pullflow.telemetry.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable PullFlow to transmit product usage telemetry. \n\n_**Important:** To activate telemetry transmission, both this setting and the VS Code telemetry option must be enabled. Telemetry will not be sent if either of these settings is disabled._"
},
"pullflow.automaticFlowDetection.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Allow PullFlow to automatically detect flow state based on keyboard activity.\n\n_**Note:** Extension must be reloaded for this to take affect._"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "jest"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.70.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"prettier": "^2.8.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@octokit/rest": "^19.0.3",
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.46.0",
"@opentelemetry/resources": "^1.19.0",
"@opentelemetry/sdk-trace-base": "^1.19.0",
"@opentelemetry/semantic-conventions": "^1.19.0",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"moment": "^2.29.4",
"node-fetch": "^3.3.0",
"ts-jest": "^29.1.0",
"uuidv4": "^6.2.13"
}
}