-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "kanban-notes",
"displayName": "Kanban Notes",
"description": "A draggable to-do board inside VS Code with Future, In Progress, and Completed columns.",
"version": "0.0.1",
"icon": "logo.png",
"publisher": "ForkAndFlow",
"engines": {
"vscode": "^1.80.0"
},
"categories": ["Other"],
"activationEvents": ["onCommand:kanbanNotes.openBoard"],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "kanbanNotes.openBoard",
"title": "Open Kanban Board"
}
],
"menus": {
"editor/context": [
{
"command": "kanbanNotes.openBoard",
"when": "editorTextFocus",
"group": "navigation"
}
],
"commandPalette": [
{
"command": "kanbanNotes.openBoard"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.80.0",
"typescript": "^5.0.4",
"vscode": "^1.1.37"
}
}