-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
234 lines (234 loc) · 6.44 KB
/
package.json
File metadata and controls
234 lines (234 loc) · 6.44 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
{
"name": "brainfile",
"displayName": "Brainfile",
"description": "Protocol-first task management for AI-assisted development. Visual kanban board for brainfile.md files.",
"version": "0.10.2",
"publisher": "brainfile",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/brainfile/vscode"
},
"homepage": "https://brainfile.md",
"bugs": {
"url": "https://github.com/brainfile/vscode/issues"
},
"keywords": [
"task management",
"kanban",
"todo",
"brainfile",
"ai",
"productivity",
"project management",
"markdown",
"yaml"
],
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:**/brainfile.md",
"workspaceContains:**/.brainfile.md",
"workspaceContains:**/brainfile.*.md",
"workspaceContains:**/.bb.md",
"onWebviewPanel:brainfile.editorPanel"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "brainfile.refresh",
"title": "Brainfile: Refresh",
"icon": "$(refresh)"
},
{
"command": "brainfile.createBoard",
"title": "Brainfile: Create Board",
"icon": "$(add)"
},
{
"command": "brainfile.addTask",
"title": "Brainfile: Add Task",
"icon": "$(add)"
},
{
"command": "brainfile.openInEditor",
"title": "Brainfile: Open Board in Editor Tab",
"icon": "$(open-editors-view-icon)"
},
{
"command": "brainfile.codelens.openBoard",
"title": "Brainfile: Open Board View"
},
{
"command": "brainfile.codelens.validate",
"title": "Brainfile: Validate Schema"
},
{
"command": "brainfile.codelens.addTaskToColumn",
"title": "Brainfile: Add Task to Column"
},
{
"command": "brainfile.codelens.archiveTask",
"title": "Brainfile: Archive Task"
},
{
"command": "brainfile.codelens.deleteTask",
"title": "Brainfile: Delete Task"
},
{
"command": "brainfile.codelens.moveTask",
"title": "Brainfile: Move Task"
},
{
"command": "brainfile.codelens.changePriority",
"title": "Brainfile: Change Priority"
},
{
"command": "brainfile.codelens.lintAndSort",
"title": "Brainfile: Lint & Sort"
},
{
"command": "brainfile.quickSwitch",
"title": "Brainfile: Quick Switch",
"icon": "$(list-selection)"
}
],
"keybindings": [
{
"command": "brainfile.addTask",
"key": "ctrl+shift+t",
"mac": "cmd+shift+t",
"when": "brainfile.boardActive"
},
{
"command": "brainfile.quickSwitch",
"key": "ctrl+shift+b",
"mac": "cmd+shift+b"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "brainfile-sidebar",
"title": "Brainfile",
"icon": "$(checklist)"
}
]
},
"views": {
"brainfile-sidebar": [
{
"type": "webview",
"id": "brainfile.tasksView",
"name": "Tasks",
"contextualTitle": "Brainfile Tasks"
}
]
},
"grammars": [
{
"scopeName": "text.html.markdown.brainfile",
"path": "./syntaxes/brainfile.tmLanguage.json",
"injectTo": [
"text.html.markdown"
]
}
],
"configuration": {
"title": "Brainfile",
"properties": {
"brainfile.enableCodeLens": {
"type": "boolean",
"default": true,
"description": "Show CodeLens inline actions above tasks in brainfile.md files"
},
"brainfile.lintOnSave": {
"type": "boolean",
"default": false,
"description": "Run linter and show diagnostics when saving brainfile.md files"
},
"brainfile.autoFixOnSave": {
"type": "boolean",
"default": false,
"description": "Automatically fix lint issues when saving brainfile.md files (requires lintOnSave)"
},
"brainfile.priorities.criticalColor": {
"type": "string",
"default": "#d64933",
"format": "color",
"description": "Color for CRITICAL priority tasks"
},
"brainfile.priorities.highColor": {
"type": "string",
"default": "#867530",
"format": "color",
"description": "Color for HIGH priority tasks"
},
"brainfile.priorities.mediumColor": {
"type": "string",
"default": "#37505C",
"format": "color",
"description": "Color for MEDIUM priority tasks"
},
"brainfile.priorities.lowColor": {
"type": "string",
"default": "#bac1b8",
"format": "color",
"description": "Color for LOW priority tasks"
},
"brainfile.priorities.custom": {
"type": "object",
"default": {},
"description": "Custom priority colors. Add your own priorities like 'giga': '#ff00ff'",
"additionalProperties": {
"type": "string"
}
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run webview:build && npm run check-types && 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 webview:build && npm run check-types && node esbuild.js --production",
"check-types": "tsc --noEmit",
"lint": "biome lint src",
"format": "biome format --write src",
"check": "biome check src",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"webview:build": "npm --prefix webview-ui run build",
"webview:dev": "npm --prefix webview-ui run dev -- --host --port 4173"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.x",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.7.0",
"esbuild": "^0.27.0",
"jest": "^30.2.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.4.5",
"typescript": "^5.3.0"
},
"dependencies": {
"@brainfile/core": "^0.7.0",
"js-yaml": "^4.1.0"
}
}