-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.87 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
80
{
"name": "select-compare-tabs",
"displayName": "Select Compare Tabs",
"description": "Adds select compare options to tabs in the editor for quicker access to diff functionality as well as ability to swap files in diff editor.",
"version": "1.0.3",
"publisher": "outofsync42",
"license": "MIT",
"icon": "img/icon.png",
"repository": {
"type": "GitHub",
"url": "https://github.com/outofsync42/select-compare-tabs"
},
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "select-compare-tabs.selectForCompare",
"title": "Select for compare",
"category": "File"
},
{
"command": "select-compare-tabs.compareWithSelected",
"title": "Compare With Selected",
"category": "File"
},
{
"title": "Swap sides",
"category": "Diff Merge",
"command": "select-compare-tabs.swapFiles",
"icon": "$(arrow-both)"
}
],
"menus": {
"editor/title/context": [
{
"command": "select-compare-tabs.selectForCompare",
"group": "1_diff@1",
"when": "editorIsOpen && !editorHasMultipleSelections"
},
{
"command": "select-compare-tabs.compareWithSelected",
"group": "1_diff@2",
"when": "editorIsOpen && !editorHasMultipleSelections && select-compare-tabs.compareEnabled"
}
],
"editor/title": [
{
"command": "select-compare-tabs.swapFiles",
"group": "navigation@-101",
"when": "inDiffEditor"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.77.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "14.x",
"eslint": "^8.14.0",
"glob": "^8.0.1",
"mocha": "^9.2.2",
"typescript": "^4.6.4",
"@vscode/test-electron": "^2.1.3"
}
}