-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 1.96 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
{
"name": "view-in-browser",
"displayName": "View In Browser",
"description": "view a html file in system's default browser",
"icon": "images/icon.png",
"version": "0.0.5",
"publisher": "qinjia",
"engines": {
"vscode": "^0.10.6"
},
"categories": [
"Other"
],
"license": "MIT",
"keywords": [
"view in browser"
],
"repository": {
"type": "git",
"url": "https://github.com/hellopao/view-in-browser.git"
},
"homepage": "https://github.com/hellopao/view-in-browser",
"bugs": {
"url": "https://github.com/hellopao/view-in-browser/issues"
},
"activationEvents": [
"onCommand:extension.viewInBrowser"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.viewInBrowser",
"title": "View In Browser"
}
],
"configuration": {
"type": "object",
"title": "View in Browser configuration",
"properties": {
"view-in-browser.customBrowser": {
"type": "string",
"description": "Changes systems default explorer to a specific one. Based on https://github.com/pwnall/node-open",
"enum": [
"iexplore",
"mozilla",
"chrome",
"safari"
]
}
}
},
"keybindings": [
{
"command": "extension.viewInBrowser",
"key": "ctrl+f1",
"mac": "cmd+f1",
"when": "editorTextFocus"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.viewInBrowser",
"group": "navigation@1"
}
]
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.7.5",
"vscode": "^0.11.0"
},
"dependencies": {
"mac-open": "^0.1.3",
"open": "0.0.5"
}
}