-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
172 lines (172 loc) · 4.77 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "somanyconflicts",
"displayName": "So Many Conflicts",
"description": "No more headache on multiple conflicts after merging!",
"version": "0.1.3",
"preview": true,
"icon": "media/logo.png",
"publisher": "Symbolk",
"repository": {
"type": "git",
"url": "https://github.com/Symbolk/somanyconflicts"
},
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"SCM Providers",
"Other"
],
"keywords": [
"git",
"branch",
"merge",
"conflict",
"resolve"
],
"activationEvents": [
"onCommand:somanyconflicts.scan",
"onCommand:somanyconflicts.start",
"onCommand:somanyconflicts.refresh",
"onCommand:somanyconflicts.next",
"onCommand:somanyconflicts.how",
"onView:suggestedConflictTreeView",
"onView:allConflictTreeView"
],
"main": "./out/extension.js",
"contributes": {
"colors": [
{
"id": "somanyconflicts.border_color",
"description": "Background color for suggested resolution",
"defaults": {
"dark": "#FFFF00",
"light": "#FF4500",
"highContrast": "#FF000055"
}
},
{
"id": "somanyconflicts.background_color",
"description": "Background color for suggested resolution",
"defaults": {
"dark": "#006400",
"light": "#90EE90",
"highContrast": "#FF000055"
}
}
],
"viewsContainers": {
"activitybar": [
{
"id": "conflictTreeViewPanel",
"title": "So Many Conflicts",
"icon": "media/merge.png"
}
]
},
"views": {
"conflictTreeViewPanel": [
{
"id": "suggestedConflictTreeView",
"name": "Grouped and Ordered Conflicts",
"contextualTitle": "So Many Conflicts",
"icon": "media/merge.png"
},
{
"id": "allConflictTreeView",
"name": "All Merge Conflicts",
"contextualTitle": "So Many Conflicts",
"icon": "media/merge.png"
}
]
},
"menus": {
"view/title": [
{
"command": "somanyconflicts.refresh",
"when": "view == suggestedConflictTreeView",
"group": "navigation@10"
},
{
"command": "somanyconflicts.refresh",
"when": "view == allConflictTreeView",
"group": "navigation@10"
}
]
},
"viewsWelcome": [
{
"view": "suggestedConflictTreeView",
"contents": "Click this button to group and order related merge conflicts for quicker resolution.\n[Group Related Conflicts](command:somanyconflicts.start)"
},
{
"view": "allConflictTreeView",
"contents": "Click this button to scan all merge conflicts in the opened directory or repository.\n[Scan All Conflicts](command:somanyconflicts.scan)"
}
],
"commands": [
{
"command": "somanyconflicts.scan",
"title": "So Many Conflicts: Scan All Merge Conflicts"
},
{
"command": "somanyconflicts.start",
"title": "So Many Conflicts: Where to Start Resolving?"
},
{
"command": "somanyconflicts.refresh",
"title": "So Many Conflicts: Refresh all Results",
"icon": "$(refresh)"
},
{
"command": "somanyconflicts.next",
"title": "So Many Conflicts: What's Related Conflicts?"
},
{
"command": "somanyconflicts.how",
"title": "So Many Conflicts: How to Resolve this Conflict?"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts --cache",
"test": "node ./out/test/runTest.js",
"postinstall": "node ./scripts/build.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^9.0.0",
"@types/node": "^12.11.7",
"@types/vscode": "^1.45.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"glob": "^7.1.6",
"mocha": "^9.0.3",
"tree-sitter": "^0.19.0",
"tree-sitter-cli": "^0.20.0",
"tree-sitter-java": "^0.19.1",
"tree-sitter-javascript": "^0.19.0",
"tree-sitter-python": "^0.19.0",
"tree-sitter-typescript": "^0.19.0",
"typescript": "^4.3.5",
"vscode-test": "^1.5.0"
},
"dependencies": {
"@dagrejs/graphlib": "^2.1.4",
"jaccard": "^0.4.0",
"queue-typescript": "^1.0.1",
"simple-git": "^2.39.0",
"string-similarity": "^4.0.4",
"web-tree-sitter": "^0.19.4"
}
}