2018-10-12 09:23:13 -07:00
|
|
|
{
|
|
|
|
|
"name": "hellocode-minimal-sample",
|
|
|
|
|
"description": "Minimal HelloWorld example for VS Code",
|
|
|
|
|
"version": "0.0.1",
|
2018-10-15 11:53:50 -07:00
|
|
|
"publisher": "vscode-samples",
|
2018-10-12 09:23:13 -07:00
|
|
|
"engines": {
|
|
|
|
|
"vscode": "^1.28.0"
|
|
|
|
|
},
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"onCommand:extension.sayHello"
|
|
|
|
|
],
|
2018-10-29 12:11:44 -07:00
|
|
|
"main": "./extension.js",
|
2018-10-12 09:23:13 -07:00
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "extension.sayHello",
|
|
|
|
|
"title": "Hello World"
|
|
|
|
|
}
|
|
|
|
|
]
|
2018-11-05 23:31:13 -08:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"vscode": "^1.1.17"
|
2018-10-12 09:23:13 -07:00
|
|
|
}
|
|
|
|
|
}
|