Files
vscode-extension-samples/contentprovider-sample/package.json

69 lines
1.6 KiB
JSON
Raw Normal View History

{
2016-05-20 16:22:55 +02:00
"name": "references-plusplus",
"displayName": "References++",
"description": "Show the results of 'Find References' as formatted text in an editor",
2016-08-12 15:44:22 +02:00
"version": "0.0.5",
"publisher": "jrieken",
2016-05-23 08:06:41 +02:00
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-extension-samples/issues"
},
"engines": {
"vscode": "^1.4.0"
},
"categories": [
"Other"
],
"activationEvents": [
2016-05-20 12:16:02 +02:00
"onCommand:editor.printReferences"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
2016-05-20 12:16:02 +02:00
"command": "editor.printReferences",
2016-05-20 16:22:55 +02:00
"title": "Show All References"
}
],
2016-07-29 11:26:42 +02:00
"menus": {
"editor/context": [
{
"command": "editor.printReferences",
"when": "editorHasReferenceProvider",
"group": "navigation@1.31"
}
]
},
"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"
}
}