-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
38 lines (38 loc) · 945 Bytes
/
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
{
"name": "wordcount",
"displayName": "Word Count",
"version": "0.1.0",
"publisher": "ms-vscode",
"description": "Markdown Word Count Example - a status bar contribution that reports out the number of words in a Markdown document as you interact with it.",
"author": {
"name": "seanmcbreen"
},
"categories": [
"Other"
],
"license": "SEE LICENSE IN LICENSE.txt",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"activationEvents": [
"onLanguage:markdown"
],
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-wordcount.git"
},
"engines": {
"vscode": "0.10.x"
},
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"vscode": "0.10.x",
"typescript": "^1.6.2"
}
}