-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
258 lines (258 loc) · 6.72 KB
/
package.json
File metadata and controls
258 lines (258 loc) · 6.72 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
{
"name": "sidetask",
"displayName": "SideTask - All in One TODO extension",
"description": "Find and manage all your TODOs, FIXMEs, and coding tasks in one place.",
"version": "1.1.0",
"publisher": "LautaroRojas",
"repository": {
"type": "git",
"url": "https://github.com/lautaro-rojas/SideTask.git"
},
"icon": "images/SideTask-Logo.png",
"engines": {
"vscode": "^1.105.0"
},
"categories": [
"Notebooks",
"Linters",
"Other"
],
"keywords": [
"todo",
"todos",
"note",
"notes",
"note-taking",
"annotation",
"markdown",
"code highlighting",
"task",
"tasks",
"tasklist",
"list",
"checklist",
"productivity",
"management",
"code snippets",
"snippets",
"fixme",
"developer tools",
"highlight",
"highlighting",
"keyword"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "sidetask.helloWorld",
"title": "Hello World"
},
{
"command": "sidetask.refresh",
"title": "Refresh TODOs",
"icon": "$(refresh)"
},
{
"command": "sidetask.openFile",
"title": "Go to file"
},
{
"command": "sidetask.deleteLine",
"title": "Delete line"
},
{
"command": "sidetask.copyText",
"title": "Copy line"
}
],
"menus": {
"view/title": [
{
"command": "sidetask.refresh",
"when": "view == todo-tracker-view",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "sidetask.openFile",
"when": "view == todo-tracker-view && viewItem == todoItem",
"group": "navigation@1"
},
{
"command": "sidetask.copyText",
"when": "view == todo-tracker-view && viewItem == todoItem",
"group": "copy@1"
},
{
"command": "sidetask.deleteLine",
"when": "view == todo-tracker-view && viewItem == todoItem",
"group": "modification@1"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "todo-tracker-sidebar",
"title": "TODO Tracker",
"icon": "resources/icon.svg"
}
]
},
"views": {
"todo-tracker-sidebar": [
{
"id": "todo-tracker-view",
"name": "Project TODOs"
}
]
},
"configuration": {
"title": "SideTask TODO Tracker",
"properties": {
"sidetask.tree.groupBy": {
"type": "string",
"default": "file",
"enum": [
"file",
"keyword"
],
"enumDescriptions": [
"Gropup TODOs by file",
"Gropup TODOs by keyword (TODO, FIXME, etc.)"
],
"description": "Choose how to group the items in the tree view."
},
"sidetask.tree.showEmojis": {
"type": "boolean",
"default": true,
"description": "Display an emoji next to each item in the tree view."
},
"sidetask.highlight.enabled": {
"type": "boolean",
"default": true,
"description": "Toggle the highlighting of TODO lines in the editor."
},
"sidetask.keywordRules": {
"type": "array",
"description": "List of keywords, styles, and emojis to search.",
"default": [
{
"text": "TODO",
"color": "#00ff15",
"backgroundColor": "#00000000",
"emoji": "🎯"
},
{
"text": "BUG",
"color": "#ff0033",
"backgroundColor": "#00000000",
"emoji": "🐞"
},
{
"text": "IDEA",
"color": "#ADFF2F",
"backgroundColor": "#00000000",
"emoji": "💡"
},
{
"text": "NOTE",
"color": "#ffffff",
"backgroundColor": "#00000000",
"emoji": "🗒️"
},
{
"text": "FIXME",
"color": "#00ffaa",
"backgroundColor": "#00000000",
"emoji": "🔧"
},
{
"text": "REFACTOR",
"color": "#ff00d4",
"backgroundColor": "#00000000",
"emoji": "⚙️"
}
],
"items": {
"type": "object",
"title": "Keyword Style",
"properties": {
"text": {
"type": "string",
"description": "The keyword to search for (TODO, FIXME, etc.)."
},
"color": {
"type": "string",
"format": "color-hex",
"description": "Text color ('#FFFFFF')."
},
"backgroundColor": {
"type": "string",
"format": "color-hex",
"description": "Line background color ('#FF0000')."
},
"emoji": {
"type": "string",
"description": "The emoji to display in the view (🎯). You can use Win + ."
}
},
"required": [
"text",
"color",
"backgroundColor"
]
}
},
"sidetask.exclude": {
"type": "array",
"default": [
"**/node_modules/**",
"**/dist/**",
"**/out/**",
"**/.git/**",
"**/.DS_Store/**",
"**/bin/**",
"**/obj/**"
],
"description": "File and folder paths to ignore (**/folder/** and **/file.cs).",
"items": {
"type": "string"
}
}
}
}
},
"scripts": {
"vscode:prepublish": "npm 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": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/minimatch": "^5.1.2",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.105.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.36.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"minimatch": "^10.1.1"
}
}