-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
109 lines (109 loc) · 2.58 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": "sample-ext",
"displayName": "Sample Extension",
"description": "UI-Samples and Code for Extension Developers.",
"version": "0.0.2",
"publisher": "RolandGreim",
"author": {
"name": "Roland Greim - http://www.rolandgreim.de/"
},
"repository": {
"type": "git",
"url": "https://github.com/tigerxy/VSCode-Sample"
},
"bugs": {
"url": "https://github.com/tigerxy/VSCode-Sample/issues"
},
"engines": {
"vscode": "^0.10.10"
},
"license": "GPL-3.0",
"categories": [
"Other"
],
"keywords": [
"Sample",
"Demo",
"Showcase",
"Extension",
"Development",
"UI",
"vscode"
],
"icon": "logo.svg",
"galleryBanner": {
"color": "#A8B7A4",
"theme": "light"
},
"activationEvents": [
"onCommand:sample.sayHello",
"onCommand:sample.showInformationMessage",
"onCommand:sample.showErrorMessage",
"onCommand:sample.showWarningMessage",
"onCommand:sample.setStatusBarMessage",
"onCommand:sample.createStatusBarItem",
"onCommand:sample.showOutputChannel",
"onCommand:sample.showInputBox",
"onCommand:sample.showPasswordBox",
"onCommand:sample.showQuickPick",
"onCommand:sample.getExtension"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "sample.sayHello",
"title": "Sample: Hello World"
},
{
"command": "sample.showInformationMessage",
"title": "Sample: Show Information Message"
},
{
"command": "sample.showErrorMessage",
"title": "Sample: Show Error Message"
},
{
"command": "sample.showWarningMessage",
"title": "Sample: Show Warning Message"
},
{
"command": "sample.setStatusBarMessage",
"title": "Sample: Set Status Bar Message"
},
{
"command": "sample.createStatusBarItem",
"title": "Sample: Create Status Bar Item"
},
{
"command": "sample.showOutputChannel",
"title": "Sample: Show Output Channel"
},
{
"command": "sample.showInputBox",
"title": "Sample: Show Input Box"
},
{
"command": "sample.showPasswordBox",
"title": "Sample: Show Password Box"
},
{
"command": "sample.showQuickPick",
"title": "Sample: Show Quick Pick"
},
{
"command": "sample.getExtension",
"title": "Sample: About"
}
]
},
"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.8.5",
"vscode": "^0.11.0"
}
}