mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
46 lines
981 B
JSON
46 lines
981 B
JSON
{
|
|
"name": "status-ts",
|
|
"displayName": "Selected Line Numbers",
|
|
"description": "Shows the number of selected lines in the status bar",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode-samples",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples/issues"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.5.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "extension.selectedLines",
|
|
"title": "Show Selected Lines"
|
|
}
|
|
]
|
|
},
|
|
"main": "./out/extension",
|
|
"scripts": {
|
|
"vscode:prepublish": "tsc -p ./",
|
|
"compile": "tsc -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"test": "node ./node_modules/vscode/bin/test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^6.0.40",
|
|
"mocha": "^2.3.3",
|
|
"tslint": "^5.11.0",
|
|
"typescript": "^2.1.4",
|
|
"vscode": "^1.1.17"
|
|
}
|
|
}
|