-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
40 lines (40 loc) · 814 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
{
"name": "guilite-previewer",
"description": "GuiLitePreviewer - Preview layout for GuiLite Appp code",
"version": "0.0.1",
"publisher": "vscode-samples",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:guiLite.preview",
"onCommand:guiLite.doThing",
"onWebviewPanel:preview"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "guiLite.preview",
"title": "Preview layout",
"category": "GuiLite"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -w -p ./"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^10.5.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"@types/vscode": "^1.32.0"
}
}