-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
167 lines (167 loc) · 5.11 KB
/
package.json
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
{
"name": "vscode-markdown-todo",
"displayName": "MarkDown To-Do",
"description": "Collects to-do items in MarkDown files to an Explorer tree view with contextual menues for toggling and removing to-do items and keeps the tree view up-to-date as to-do items are inserted, updated and deleted in any MarkDown file in the workspace.",
"version": "12.0.1",
"license": "MIT",
"categories": [
"Programming Languages"
],
"keywords": [
"markdown",
"todo",
"todo-list"
],
"icon": "icon.png",
"publisher": "TomasHubelbauer",
"repository": {
"type": "git",
"url": "https://github.com/TomasHubelbauer/vscode-markdown-todo.git"
},
"engines": {
"vscode": "^1.22.0"
},
"activationEvents": [
"workspaceContains:**/*.md",
"onLanguage:markdown"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "markdown-todo.focus",
"title": "Focus"
},
{
"command": "markdown-todo.remove",
"title": "Remove",
"icon": "icon/remove.svg"
},
{
"command": "markdown-todo.tick",
"title": "Tick",
"icon": "icon/tick.svg"
},
{
"command": "markdown-todo.untick",
"title": "Untick",
"icon": "icon/untick.svg"
},
{
"command": "markdown-todo.detick",
"title": "Detick",
"icon": "icon/detick.svg"
},
{
"command": "markdown-todo.refresh",
"title": "Refresh",
"icon": "icon/refresh.svg"
},
{
"command": "markdown-todo.toggleTicked",
"title": "Toggle ✓ display",
"icon": "icon/toggleTicked.svg"
},
{
"command": "markdown-todo.toggleOrder",
"title": "Toggle sort order (alphanumeric versus by unticked to-do item count)",
"icon": "icon/toggleOrder.svg"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "markdown-todo",
"title": "MarkDown To-Do",
"icon": "icon.svg"
}
]
},
"views": {
"explorer": [
{
"id": "to-do-explorer",
"name": "MarkDown To-Do"
}
],
"markdown-todo": [
{
"id": "to-do-view-container",
"name": "MarkDown To-Do"
}
]
},
"menus": {
"view/title": [
{
"group": "navigation",
"command": "markdown-todo.toggleTicked"
},
{
"group": "navigation",
"command": "markdown-todo.toggleOrder"
},
{
"group": "navigation",
"command": "markdown-todo.refresh"
}
],
"view/item/context": [
{
"group": "inline",
"command": "markdown-todo.remove",
"when": "viewItem =~ /todo-(un)?ticked/"
},
{
"group": "inline",
"command": "markdown-todo.detick",
"when": "viewItem =~ /todo-(un)?ticked/"
},
{
"group": "inline",
"command": "markdown-todo.tick",
"when": "viewItem == todo-unticked"
},
{
"group": "inline",
"command": "markdown-todo.untick",
"when": "viewItem == todo-ticked"
}
]
},
"configuration": [
{
"title": "markdown-todo",
"properties": {
"markdown-todo.sortByCount": {
"type": "boolean",
"default": true
},
"markdown-todo.enableCodeLens": {
"type": "boolean",
"default": true
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"tslint": "^5.8.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"markdown-dom": "0.0.9",
"npm": "^6.14.6",
"time-ago": "^0.2.1"
}
}