-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
109 lines (109 loc) · 2.86 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
{
"name": "quick-html-previewer",
"displayName": "Quick HTML Previewer",
"description": "Edit and preview HTML documents in VS Code",
"version": "1.0.0",
"publisher": "daiyy",
"author": "Daiyy",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Other"
],
"keywords": [
"html",
"css",
"js",
"preview",
"vscode"
],
"galleryBanner": {
"color": "#2E0854",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/daiyy2009/quick-preview.git"
},
"bugs": {
"url": "https://github.com/daiyy2009/quick-preview/issues"
},
"license": "MIT",
"icon": "resources/images/icon.png",
"activationEvents": [
"onLanguage:html",
"onLanguage:javascript",
"onLanguage:css"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "extension.sidePreview",
"title": "Side preview"
},
{
"command": "extension.fullPreview",
"title": "Full preview"
},
{
"command": "extension.inBrowser",
"title": "Open in browser"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceLangId == html",
"command": "extension.inBrowser",
"group": "navigation"
}
],
"editor/context": [
{
"when": "resourceLangId == html",
"command": "extension.inBrowser",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "extension.sidePreview",
"key": "ctrl+q s",
"mac": "ctrl+q s",
"when": "editorTextFocus"
},
{
"command": "extension.fullPreview",
"key": "ctrl+q f",
"mac": "ctrl+q f",
"when": "editorTextFocus"
},
{
"command": "extension.inBrowser",
"key": "ctrl+q w",
"mac": "ctrl+q w",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^8.10.25",
"tslint": "^5.11.0",
"typescript": "^2.6.1",
"vscode": "^1.1.22"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"opn": "^4.0.2",
"path": "^0.12.7"
}
}