-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
94 lines (94 loc) · 2.59 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
{
"name": "vscode-devdocs",
"displayName": "vscode-devdocs",
"description": "Search docs on devdocs.io",
"version": "1.0.2",
"publisher": "akfish",
"icon": "icon-128.png",
"repository": {
"type": "git",
"url": "https://github.com/akfish/vscode-devdocs"
},
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:devdocs.home",
"onCommand:devdocs.settings",
"onCommand:devdocs.offline",
"onCommand:devdocs.quickSearch",
"onCommand:devdocs.search"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "devdocs.home",
"title": "DevDocs: Home"
},
{
"command": "devdocs.settings",
"title": "DevDocs: Settings"
},
{
"command": "devdocs.offline",
"title": "DevDocs: Offline Data"
},
{
"command": "devdocs.quickSearch",
"title": "DevDocs: Quick Search"
},
{
"command": "devdocs.search",
"title": "DevDocs: Search"
}
],
"menus": {
"editor/context": [
{
"command": "devdocs.quickSearch",
"when": "editorTextFocus"
}
]
},
"configuration": {
"title": "DevDocs: Configuration",
"properties": {
"devdocs.column": {
"type": "number",
"minimum": 1,
"maximum": 3,
"default": 2,
"description": "A number which indicates which column (1, 2, or 3) to display DevDocs in"
}
}
},
"keybindings": [
{
"key": "alt+shift+d",
"command": "devdocs.quickSearch",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vscode": "^1.0.0"
},
"dependencies": {
"@types/lodash": "^4.14.58",
"lodash": "^4.17.4"
}
}