-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 996 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 996 Bytes
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
{
"name": "imagepreview",
"displayName": "Image Preview",
"description": "Preview of a Image Url",
"version": "0.5.1",
"icon": "logo.png",
"publisher": "buzzfrog",
"engines": {
"vscode": "^0.10.7"
},
"bugs": {
"url": "https://github.com/buzzfrog/vscode-imagepreview/issues",
"email": "dagk@microsoft.com"
},
"repository": {
"type": "git",
"url": "https://github.com/buzzfrog/vscode-imagepreview"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.previewImageUrl"
],
"main": "./out/src/extension",
"contributes": {
"commands": [{
"command": "extension.previewImageUrl",
"title": "Preview Image Url"
}]
},
"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"
}
}