-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.84 KB
/
package.json
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
{
"name": "git-diff-and-merge-tool",
"displayName": "Git Diff and Merge Tool",
"description": "Launch git difftool and mergetool from VSCode.",
"version": "1.0.5",
"author": {
"name": "David Rickard",
"email": "[email protected]"
},
"publisher": "david-rickard",
"repository": "https://github.com/RandomEngy/VSCodeGitDiffAndMergeTool",
"bugs": {
"url": "https://github.com/RandomEngy/VSCodeGitDiffAndMergeTool/issues"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"license": "MIT",
"activationEvents": [
"onCommand:gitdiffandmergetool.merge",
"onCommand:gitdiffandmergetool.diff"
],
"main": "./out/extension.js",
"icon": "images/icon-128x128.png",
"contributes": {
"commands": [
{
"command": "gitdiffandmergetool.merge",
"title": "Launch merge tool"
},
{
"command": "gitdiffandmergetool.diff",
"title": "Launch diff tool"
}
],
"menus": {
"scm/resourceState/context": [
{
"command": "gitdiffandmergetool.merge",
"when": "scmProvider == git && scmResourceGroup == merge"
},
{
"command": "gitdiffandmergetool.diff",
"when": "scmProvider == git"
}
]
},
"configuration": {
"title": "Git Diff and Merge Tool",
"properties": {
"git-diff-and-merge-tool.showNotificationOnOpen": {
"type": "boolean",
"default": "true",
"description": "Show a notification when opening the diff or merge tool."
}
}
}
},
"dependencies": {
"simple-git": "^3.16.0"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src/**",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^13.13.0",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"typescript": "^3.8.3"
}
}