-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "output-channel-example",
"version": "0.0.1-alpha.1",
"publisher": "kittaakos",
"description": "https://github.com/eclipse-theia/theia/discussions/8085",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:hello-world-example-generated",
"onCommand:start-debugging"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "hello-world-example-generated",
"title": "Hello World"
},
{
"command": "start-debugging",
"title": "Hello World: Start Debugging"
}
]
},
"scripts": {
"prepare": "npm run package",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "npm run compile && vsce package"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"vsce": "1.77.0",
"typescript": "^3.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kittaakos/output-channel-example.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kittaakos/output-channel-example/issues"
},
"homepage": "https://github.com/kittaakos/output-channel-example#readme"
}