-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (68 loc) · 1.63 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
{
"name": "che-theia-plugin-git-ui-tools",
"description": "Brings git desktop tools into your Che workspace",
"publisher": "mm4eche",
"keywords": [
"che",
"che-theia",
"git",
"git-tools",
"desktop",
"git gui",
"meld",
"gitk",
"gitg",
"git-cola",
"kdiff3",
"diffuse"
],
"version": "1.0.0",
"license": "EPL-2.0",
"files": [
"src"
],
"devDependencies": {
"@theia/plugin": "next",
"@eclipse-che/plugin": "latest",
"@theia/plugin-packager": "latest",
"rimraf": "2.6.2",
"typescript-formatter": "7.2.2",
"typescript": "2.9.2"
},
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib",
"format-code": "tsfmt -r",
"watch": "tsc -watch",
"compile": "tsc",
"build": "yarn run format-code && yarn run compile && theia-plugin pack"
},
"engines": {
"theiaPlugin": "next"
},
"theiaPlugin": {
"backend": "lib/che-theia-git-ui-tools.js"
},
"contributes": {
"viewsContainers": {
"left": [
{
"id": "git-ui-tools-panel",
"title": "Git UI Tools",
"icon": "resources/git-icon-black.svg"
}
]
},
"views": {
"git-ui-tools-panel": [
{
"id": "git-ui-tools",
"name": "Git Tools"
}
]
}
},
"activationEvents": [
"*"
]
}