2018-10-12 09:23:13 -07:00
|
|
|
{
|
2018-12-12 15:51:03 -08:00
|
|
|
"name": "helloworld-minimal-sample",
|
2018-10-12 09:23:13 -07:00
|
|
|
"description": "Minimal HelloWorld example for VS Code",
|
|
|
|
|
"version": "0.0.1",
|
2018-10-15 11:53:50 -07:00
|
|
|
"publisher": "vscode-samples",
|
2018-12-12 15:51:03 -08:00
|
|
|
"repository": "https://github.com/Microsoft/vscode-extension-samples/helloworld-minimal-sample",
|
2018-10-12 09:23:13 -07:00
|
|
|
"engines": {
|
2019-05-10 15:23:49 -07:00
|
|
|
"vscode": "^1.32.0"
|
2018-10-12 09:23:13 -07:00
|
|
|
},
|
|
|
|
|
"activationEvents": [
|
2018-12-12 15:51:03 -08:00
|
|
|
"onCommand:extension.helloWorld"
|
2018-10-12 09:23:13 -07:00
|
|
|
],
|
2018-10-29 12:11:44 -07:00
|
|
|
"main": "./extension.js",
|
2018-10-12 09:23:13 -07:00
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
2018-12-12 15:51:03 -08:00
|
|
|
"command": "extension.helloWorld",
|
2018-10-12 09:23:13 -07:00
|
|
|
"title": "Hello World"
|
|
|
|
|
}
|
|
|
|
|
]
|
2018-11-05 23:31:13 -08:00
|
|
|
},
|
2019-05-10 15:23:49 -07:00
|
|
|
"scripts": {},
|
2018-11-05 23:31:13 -08:00
|
|
|
"devDependencies": {
|
2019-05-10 15:23:49 -07:00
|
|
|
"@types/vscode": "^1.32.0"
|
2018-10-12 09:23:13 -07:00
|
|
|
}
|
|
|
|
|
}
|