-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.31 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "gitblame-annotations",
"displayName": "Git Blame Annotations",
"description": "Display git blame in editor gutter like JetBrains IDEs",
"version": "0.2.3",
"publisher": "lkqm",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lkqm/vscode-gitblame-annotations.git"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"SCM Providers"
],
"activationEvents": [
"onStartupFinished"
],
"icon": "logo.png",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "git.blame.toggle",
"title": "Toggle Annotations"
},
{
"command": "git.blame.show",
"title": "Annotate with Git Blame"
},
{
"command": "git.blame.hide",
"title": "Close Annotations"
}
],
"menus": {
"editor/lineNumber/context": [
{
"command": "git.blame.show",
"when": "gitblame.showMenuState"
},
{
"command": "git.blame.hide",
"when": "gitblame.hideMenuState"
}
]
},
"keybindings": [
{
"command": "git.blame.toggle",
"key": "ctrl+alt+b",
"mac": "cmd+alt+b",
"when": "editorTextFocus"
},
{
"command": "git.blame.hide",
"key": "escape",
"when": "editorTextFocus && gitblame.hideMenuState"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.80.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"typescript": "^4.8.4",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2"
}
}