-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·122 lines (122 loc) · 2.73 KB
/
package.json
File metadata and controls
executable file
·122 lines (122 loc) · 2.73 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
{
"name": "tasks-and-contexts",
"displayName": "Tasks And Contexts",
"description": "A task-focused interface to help you concentrate on the code that is relevant.",
"version": "0.6.0",
"publisher": "choppedcode",
"enableProposedApi": false,
"repository": {
"type": "git",
"url": "https://github.com/choppedcode/vscode-tasks-and-contexts.git"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:tasksAndContextsManager",
"*"
],
"main": "./out/extension.js",
"icon": "images/tasks-and-contexts.png",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "tasks-and-contexts-manager",
"title": "Task Manager",
"icon": "images/tasks-and-contexts.svg"
}
]
},
"views": {
"tasks-and-contexts-manager": [
{
"id": "tasksAndContextsManager",
"name": "Tasks"
}
]
},
"commands": [
{
"command": "tasksAndContextsManager.refreshTasks",
"title": "Refresh",
"icon": {
"light": "images/light/refresh.svg",
"dark": "images/dark/refresh.svg"
}
},
{
"command": "tasksAndContextsManager.addTask",
"title": "Add"
},
{
"command": "tasksAndContextsManager.addFromTrello",
"title": "Add From Trello"
},
{
"command": "tasksAndContextsManager.editTask",
"title": "Edit",
"icon": {
"light": "images/light/edit.svg",
"dark": "images/dark/edit.svg"
}
},
{
"command": "tasksAndContextsManager.deleteTask",
"title": "Delete",
"icon": {
"light": "images/light/delete.svg",
"dark": "images/dark/delete.svg"
}
}
],
"menus": {
"view/title": [
{
"command": "tasksAndContextsManager.refreshTasks",
"when": "view == tasksAndContextsManager",
"group": "navigation"
},
{
"command": "tasksAndContextsManager.addTask",
"when": "view == tasksAndContextsManager"
},
{
"command": "tasksAndContextsManager.addFromTrello",
"when": "view == tasksAndContextsManager"
}
],
"view/item/context": [
{
"command": "tasksAndContextsManager.editTask",
"when": "view == tasksAndContextsManager && viewItem == task_default",
"group": "inline"
},
{
"command": "tasksAndContextsManager.deleteTask",
"when": "view == tasksAndContextsManager && viewItem == task_default",
"group": "inline"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "*",
"tslint": "^5.11.0",
"typescript": "^2.1.4",
"vscode": "^1.1.22"
},
"dependencies": {
"jsonc-parser": "^0.4.2",
"sha1": "^1.1.1"
}
}