25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 

100 satır
2.8 KiB

{
"name": "gitlens",
"version": "0.0.5",
"author": "Eric Amodio",
"publisher": "eamodio",
"engines": {
"vscode": "^1.3.0"
},
"license": "SEE LICENSE IN LICENSE",
"displayName": "GitLens",
"description": "Provides Git information in CodeLens",
"categories": [
"Other"
],
"keywords": [
"git", "blame", "history", "log", "codelens"
],
"galleryBanner": {
"color": "#0000FF",
"theme": "dark"
},
"preview": true,
"bugs": {
"url": "https://github.com/eamodio/vscode-gitlens/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eamodio/vscode-gitlens.git"
},
"main": "./out/src/extension",
"contributes": {
"commands": [{
"command": "gitlens.diffWithPrevious",
"title": "Git: Open Diff with Previous Commit",
"category": "GitLens"
},
{
"command": "gitlens.diffWithWorking",
"title": "Git: Open Diff with Working Tree",
"category": "GitLens"
},
{
"command": "gitlens.showBlame",
"title": "Git: Show Blame",
"category": "GitLens"
},
{
"command": "gitlens.toggleBlame",
"title": "Git: Toggle Blame",
"category": "GitLens"
}],
"menus": {
"editor/title": [{
"when": "editorTextFocus",
"command": "gitlens.toggleBlame",
"group": "gitlens"
}],
"editor/context": [
{
"when": "editorTextFocus",
"command": "gitlens.diffWithWorking",
"group": "gitlens@1.0"
},
{
"when": "editorTextFocus",
"command": "gitlens.diffWithPrevious",
"group": "gitlens@1.1"
},
{
"when": "editorTextFocus",
"command": "gitlens.toggleBlame",
"group": "gitlens-blame@1.2"
}]
},
"keybindings": [{
"command": "gitlens.toggleBlame",
"key": "alt+b",
"mac": "alt+b",
"when": "editorTextFocus"
}]
},
"activationEvents": [
"*"
],
"dependencies": {
"lodash": "^4.15.0",
"moment": "^2.14.1",
"spawn-rx": "^2.0.1",
"tmp": "^0.0.28"
},
"devDependencies": {
"typescript": "^2.0.0",
"vscode": "^0.11.17"
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile && tsc",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
}
}