mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
43 lines
891 B
JSON
43 lines
891 B
JSON
{
|
|
"name": "text-search-sample",
|
|
"displayName": "Text Search API Sample",
|
|
"version": "0.0.1",
|
|
"publisher": "roblourens",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples/issues"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.25.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:textsearch.doSearch"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "textsearch.doSearch",
|
|
"title": "Text Search"
|
|
}
|
|
]
|
|
},
|
|
"main": "./out/extension",
|
|
"scripts": {
|
|
"vscode:prepublish": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"tslint": "tslint -c tslint.json src/extension.ts"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^2.1.4",
|
|
"vscode": "^1.1.17",
|
|
"@types/node": "^6.0.40"
|
|
}
|
|
}
|