mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "references-plusplus",
|
|
"displayName": "References++",
|
|
"description": "Show the results of 'Find References' as formatted text in an editor",
|
|
"version": "0.0.1",
|
|
"publisher": "jrieken",
|
|
"engines": {
|
|
"vscode": "^1.0.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:editor.printReferences"
|
|
],
|
|
"main": "./out/extension",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "editor.printReferences",
|
|
"title": "Show All References"
|
|
}
|
|
],
|
|
"languages": [
|
|
{
|
|
"id": "locations",
|
|
"aliases": [
|
|
"Locations"
|
|
],
|
|
"extensions": [
|
|
".locations"
|
|
]
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "locations",
|
|
"path": "./locations-syntax.json",
|
|
"scopeName": "source.locations"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
|
|
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
},
|
|
"devDependencies": {
|
|
"tslint": "^3.8.1",
|
|
"typescript": "^1.8.5",
|
|
"vscode": "^0.11.0"
|
|
}
|
|
} |