2018-10-10 10:32:21 -07:00
|
|
|
{
|
2018-12-12 15:51:03 -08:00
|
|
|
"name": "helloworld-sample",
|
|
|
|
|
"displayName": "helloworld-sample",
|
2018-10-10 10:32:21 -07:00
|
|
|
"description": "HelloWorld example for VS Code",
|
|
|
|
|
"version": "0.0.1",
|
2018-10-15 11:52:55 -07:00
|
|
|
"publisher": "vscode-samples",
|
2018-12-12 15:51:03 -08:00
|
|
|
"repository": "https://github.com/Microsoft/vscode-extension-samples/helloworld-sample",
|
2018-10-10 10:32:21 -07:00
|
|
|
"engines": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode": "^1.32.0"
|
2018-10-10 10:32:21 -07:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
2018-12-12 15:51:03 -08:00
|
|
|
"onCommand:extension.helloWorld"
|
2018-10-10 10:32:21 -07:00
|
|
|
],
|
2018-10-29 12:11:44 -07:00
|
|
|
"main": "./out/extension.js",
|
2018-10-10 10:32:21 -07:00
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
2018-12-12 15:51:03 -08:00
|
|
|
"command": "extension.helloWorld",
|
|
|
|
|
"title": "Hello World"
|
2018-10-10 10:32:21 -07:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
2019-05-10 14:43:54 -07:00
|
|
|
"compile": "tsc -p ./",
|
|
|
|
|
"lint": "tslint -p ./",
|
2019-05-09 14:50:48 -07:00
|
|
|
"watch": "tsc -watch -p ./"
|
2018-10-10 10:32:21 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^8.10.25",
|
2019-05-09 17:04:08 -07:00
|
|
|
"tslint": "^5.16.0",
|
2019-05-09 16:59:56 -07:00
|
|
|
"typescript": "^3.4.5",
|
2019-05-09 14:50:48 -07:00
|
|
|
"@types/vscode": "^1.32.0"
|
2018-10-10 10:32:21 -07:00
|
|
|
}
|
|
|
|
|
}
|