forked from danielroedl/vsc-meld-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.26 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.26 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "meld-diff",
"version": "1.0.10",
"displayName": "Meld Diff",
"description": "Use meld to compare files or folders from visual studio code directly.",
"publisher": "danielroedl",
"author": "danielroedl",
"icon": "images/icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danielroedl/vsc-meld-diff"
},
"keywords": [
"Diff",
"Compare",
"Meld"
],
"bugs": {
"url": "https://github.com/danielroedl/vsc-meld-diff/issues"
},
"homepage": "https://github.com/danielroedl/vsc-meld-diff",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:meld-diff.diffVisible",
"onCommand:meld-diff.diffCurrentToOtherOpen",
"onCommand:meld-diff.diffCurrentToOther",
"onCommand:meld-diff.diffFromFileListSelect",
"onCommand:meld-diff.diffFromFileList"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "meld-diff.diffVisible",
"title": "All visible documents (two or three)",
"category": "Meld Diff"
},
{
"command": "meld-diff.diffCurrentToOtherOpen",
"title": "Current file to one other open file in editor",
"category": "Meld Diff"
},
{
"command": "meld-diff.diffCurrentToOther",
"title": "Current file to one other file (not open in editor)",
"category": "Meld Diff"
},
{
"command": "meld-diff.diffFromFileListSelect",
"title": "Select for meld compare",
"category": "Meld Diff"
},
{
"command": "meld-diff.diffFromFileList",
"title": "Compare with selected for meld compare",
"category": "Meld Diff"
}
],
"menus": {
"explorer/context": [
{
"command": "meld-diff.diffFromFileListSelect",
"group": "Meld Diff@1"
},
{
"command": "meld-diff.diffFromFileList",
"group": "Meld Diff@2"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.17.14",
"@types/vscode": "^1.42.0",
"glob": "^7.1.6",
"mocha": "^6.2.2",
"tslint": "^5.20.1",
"typescript": "^3.7.5",
"vscode-test": "^1.3.0"
}
}