-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "helloworld-sample",
"displayName": "helloworld-sample",
"description": "HelloWorld example for VS Code",
"version": "0.0.1",
"publisher": "vscode-samples",
"repository": "https://github.com/Microsoft/vscode-extension-samples/helloworld-sample",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.helloWorld",
"onCommand:extension.helloWebView",
"onCommand:extension.helloWebViewLocalSCat",
"onCommand:extension.webViewWithMessage"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.helloWorld",
"title": "Hello World"
},
{
"command": "extension.helloWebView",
"title": "Hello web view"
},
{
"command": "extension.helloWebViewLocalSCat",
"title": "Hello web view with local pic"
},
{
"command": "extension.webViewWithMessage",
"title": "Hello web view with message"
},
{
"command": "extension.webViewSwitchPic",
"title": "Hello web view switch Pic"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^10.14.17",
"@types/vscode": "^1.37.0",
"tslint": "^5.16.0",
"typescript": "^3.5.1"
}
}