-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.06 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.06 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"activationEvents": [],
"categories": [
"Other",
"SCM Providers"
],
"contributes": {
"commands": [
{
"category": "Git",
"command": "git-differ.compareWithBranch",
"title": "Git Differ: Compare with Branch"
},
{
"category": "Git",
"command": "git-differ.compareWithCommit",
"title": "Git Differ: Compare with Commit"
}
],
"configuration": {
"title": "GitDiffer",
"properties": {
"git-differ.localOnly": {
"default": false,
"description": "If turned on, only local branches will be shown in the compare with menu.",
"type": "boolean"
},
"git-differ.commitHistoryLength": {
"default": 1000,
"description": "Determines the length of the git history and the number of commits fetched during the Compare with commit command.",
"type": "number"
}
}
},
"menus": {
"explorer/context": [
{
"command": "git-differ.compareWithBranch",
"group": "Git@15",
"when": "!explorerResourceIsFolder"
},
{
"command": "git-differ.compareWithCommit",
"group": "Git@15",
"when": "!explorerResourceIsFolder"
}
],
"editor/title/context": [
{
"command": "git-differ.compareWithBranch",
"group": "Git@15",
"when": "true"
},
{
"command": "git-differ.compareWithCommit",
"group": "Git@15",
"when": "true"
}
]
}
},
"homepage": "https://github.com/Nico-Mayer",
"readme": "README.md",
"description": "Easily compare project file differences across multiple branches using the context menu.",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.91.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.1",
"eslint": "^8.57.0",
"husky": "^8.0.0",
"typescript": "^5.5.3"
},
"displayName": "Git Differ",
"engines": {
"vscode": "^1.91.0"
},
"extensionDependencies": [
"vscode.git"
],
"icon": "public/logo_small.png",
"keywords": [
"git",
"diff",
"menu",
"branch",
"compare",
"compare with branch",
"compare branch",
"context menu"
],
"license": "MIT",
"main": "./out/extension.js",
"name": "git-differ",
"publisher": "nico-mayer",
"repository": {
"type": "git",
"url": "https://github.com/Nico-Mayer/git-differ"
},
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"vscode:prepublish": "npm run compile",
"release": "vsce publish",
"release:path": "vsce publish path",
"release:minor": "vsce publish minor",
"release:major": "vsce publish major",
"prepare": "husky install"
},
"version": "1.0.0"
}