Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/smoke/extensions/vscode-smoketest-ext-host/package.json
5334 views
1
{
2
"name": "vscode-smoketest-ext-host",
3
"displayName": "Smoke Test Extension Host",
4
"description": "Extension for smoke testing extension host lifecycle",
5
"version": "0.0.1",
6
"publisher": "vscode",
7
"license": "MIT",
8
"private": true,
9
"engines": {
10
"vscode": "^1.55.0"
11
},
12
"activationEvents": [
13
"onStartupFinished"
14
],
15
"main": "./extension.js",
16
"extensionKind": ["ui"],
17
"contributes": {
18
"commands": [
19
{
20
"command": "smoketest.getExtensionHostPidAndBlock",
21
"title": "Smoke Test: Get Extension Host PID and Block"
22
},
23
{
24
"command": "smoketest.setupGracefulDeactivation",
25
"title": "Smoke Test: Setup Graceful Deactivation"
26
}
27
]
28
}
29
}
30
31