-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
330 lines (319 loc) · 9.25 KB
/
Copy pathpackage.json
File metadata and controls
330 lines (319 loc) · 9.25 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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
{
"name": "taskio",
"displayName": "Taskio - TODO List",
"description": "A lightweight task board for TODO, FIXME and BUG comments with Trello integration.",
"version": "0.1.7",
"engines": {
"vscode": "^1.70.0"
},
"publisher": "taskio",
"icon": "assets/taskio-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/criszst/taskio.git"
},
"categories": [
"Visualization",
"Other"
],
"keywords": [
"todo",
"todo comments",
"todo tree",
"todo list",
"todo manager",
"todo tracker",
"task",
"tasks",
"task list",
"task manager",
"tasks manager",
"task tracker",
"comments",
"code comments",
"productivity",
"developer productivity",
"vscode todo",
"vscode tasks",
"taskio",
"taskio vscode",
"taskio vscode extension",
"taskio todo",
"taskio todo list"
],
"activationEvents": [
"onStartupFinished",
"onUri"
],
"main": "./dist/extension.js",
"contributes": {
"menus": {
"view/item/context": [
{
"command": "taskio.CopyComment",
"when": "view == taskioView && viewItem == taskioComment || view == taskioView && viewItem == taskioCommentSynced",
"group": "inline@1"
},
{
"command": "taskio.RemoveTask",
"when": "view == taskioView && viewItem == taskioComment || view == taskioView && viewItem == taskioCommentSynced",
"group": "inline@2"
},
{
"command": "taskio.trello.SendTask",
"when": "view == taskioView && viewItem == taskioComment || view == taskioView && viewItem == taskioCommentSynced",
"group": "edit@1"
},
{
"command": "taskio.trello.OpenCard",
"when": "view == taskioView && viewItem == taskioCommentSynced",
"group": "edit@2"
}
],
"view/title": [
{
"command": "taskio.SearchTasks",
"when": "view == taskioView",
"group": "navigation@1"
},
{
"command": "taskio.Refresh",
"when": "view == taskioView",
"group": "navigation@2"
},
{
"command": "taskio.Organize",
"when": "view == taskioView",
"group": "navigation@3"
},
{
"command": "taskio.ExportTasks",
"when": "view == taskioView",
"group": "navigation@4"
},
{
"command": "taskio.trello.ManageIntegration",
"when": "view == taskioView",
"group": "navigation@4"
}
],
"explorer/context": [
{
"command": "taskio.SearchTasks",
"when": "explorerResourceIsFolder == false",
"group": "navigation@1"
},
{
"command": "taskio.Refresh",
"when": "explorerResourceIsFolder == false",
"group": "navigation@2"
},
{
"command": "taskio.Organize",
"when": "explorerResourceIsFolder == false",
"group": "navigation@3"
},
{
"command": "taskio.ExportTasks",
"when": "explorerResourceIsFolder == false",
"group": "navigation@4"
},
{
"command": "taskio.trello.ManageIntegration",
"when": "explorerResourceIsFolder == false",
"group": "navigation@5"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "taskio-tree",
"title": "Taskio",
"icon": "assets/taskio.svg"
}
]
},
"views": {
"taskio-tree": [
{
"id": "taskioView",
"name": "Tree View",
"icon": "assets/taskio.svg"
}
]
},
"configuration": {
"type": "object",
"title": "Taskio Configuration",
"properties": {
"taskio.keywords": {
"description": "Keywords recognized by Taskio inside comments",
"items": {
"type": "string"
},
"type": "array",
"default": [
"TODO",
"FIXME",
"BUG"
]
},
"taskio.color": {
"description": "Highlight color for Taskio tasks (in hex format).",
"type": "string",
"default": "#6042f5"
},
"taskio.enhanceAllText": {
"description": "Enhance all text comment after TODO (or other keywords).",
"type": "boolean",
"default": false
},
"taskio.priorityMarkers": {
"description": "Priority markers based on repeated characters after the keyword",
"type": "object",
"default": {
"high": "!!!",
"medium": "!!",
"low": "!"
}
},
"taskio.trello.timerToSync": {
"description": "Automatically sync saved tasks with Trello after X minutes",
"type": [
"number",
"boolean"
],
"minimum": 1,
"default": false
},
"taskio.trello.syncOnStartup": {
"description": "Automatically sync tasks with Trello when VSCode starts",
"type": "boolean",
"default": false
},
"taskio.trello.authReturnUrl": {
"description": "Return URL used by Trello to redirect back with the token (callback_method=fragment). This URL must match the Trello API key 'Allowed Origins' and must host a static page that reads location.hash and redirects to vscode://taskio.taskio/trello-auth with token and state. Avoid query params in this URL to keep static hosts happy.",
"type": "string",
"default": "https://taskio.com/auth/trello"
},
"taskio.trello.boardName": {
"description": "Name of the board setup on Trello Integration",
"type": "string",
"readOnly": true,
"markdownDescription": "**AUTO-MANAGED**: Do not edit this manually. Use the `Configure Trello Connection` command to update this value.",
"scope": "resource"
},
"taskio.trello.listName": {
"description": "Name of the list setup on Trello Integration",
"type": "string",
"readOnly": true,
"markdownDescription": "**AUTO-MANAGED**: Do not edit this manually. Use the `Configure Trello Connection` command to update this value.",
"scope": "resource"
}
}
},
"commands": [
{
"command": "taskio.RevealComment",
"title": "Reveal Comment",
"category": "Taskio"
},
{
"command": "taskio.CopyComment",
"title": "Copy Comment",
"category": "Taskio",
"icon": "$(copy)"
},
{
"command": "taskio.Refresh",
"title": "Refresh",
"category": "Taskio",
"icon": "$(refresh)"
},
{
"command": "taskio.RemoveTask",
"title": "Remove Task",
"category": "Taskio",
"icon": "$(trash)"
},
{
"command": "taskio.SearchTasks",
"title": "Search Tasks...",
"category": "Taskio",
"icon": "$(search)"
},
{
"command": "taskio.ExportTasks",
"title": "Export Tasks",
"category": "Taskio",
"icon": "$(export)"
},
{
"command": "taskio.Organize",
"title": "Change Grouping Mode",
"category": "Taskio",
"icon": "$(list-unordered)"
},
{
"command": "taskio.trello.SetupIntegration",
"title": "Configure Trello Connection",
"category": "Taskio.Trello"
},
{
"command": "taskio.trello.ManageIntegration",
"title": "Manage Trello Integration",
"category": "Taskio.Trello",
"icon": "$(gear)"
},
{
"command": "taskio.trello.OpenCard",
"title": "Open in Trello",
"category": "Taskio.Trello",
"icon": "$(browser)"
},
{
"command": "taskio.trello.Disconnect",
"title": "Disconnect Trello Account",
"category": "Taskio.Trello"
},
{
"command": "taskio.trello.SendTask",
"title": "Send to Trello",
"category": "Taskio.Trello",
"icon": "$(cloud-upload)"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.11",
"@types/vscode": "^1.70.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"mocha": "^11.7.5",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
},
"dependencies": {
"axios": "^1.13.5"
}
}