-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 944 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
39
40
41
42
43
{
"name": "vscode-makerjs",
"displayName": "MakerJS Viewer",
"description": "Preview MakerJS Drawings Upon Saving",
"icon": "media/logo.png",
"publisher": "COGSMITH",
"version": "0.0.4-dev",
"repository": "https://github.com/cogsmith/vscode-makerjs",
"engines": {
"vscode": "^1.32.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"menus": {
"editor/title/context": [
{
"when": "resourceLangId == javascript",
"command": "MAKERJS_WATCH",
"group": "navigation"
}
]
},
"commands": [
{
"command": "MAKERJS_WATCH",
"title": "MAKERJS_WATCH"
}
]
},
"scripts": {},
"devDependencies": {
"@types/vscode": "^1.32.0"
},
"dependencies": {
"@cogsmith/xt": "^1.0.164",
"cheerio": "^1.0.0-rc.10",
"makerjs": "^0.17.1"
},
"versiontaglast": "0.0.3"
}