-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
96 lines (96 loc) · 2.22 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
{
"name": "vscode-ungit",
"displayName": "Ungit",
"description": "Ungit in Visual Studio Code.",
"icon": "images/logo.png",
"version": "2.5.2",
"publisher": "Hirse",
"galleryBanner": {
"color": "#252833",
"theme": "dark"
},
"license": "MIT",
"bugs": "https://github.com/hirse/vscode-ungit/issues",
"homepage": "https://github.com/hirse/vscode-ungit",
"repository": {
"type": "git",
"url": "https://github.com/hirse/vscode-ungit.git"
},
"categories": [
"Other"
],
"keywords": [
"ungit",
"git",
"multi-root ready"
],
"engines": {
"vscode": "^1.75.0"
},
"main": "./out/src/extension",
"contributes": {
"configuration": {
"title": "Ungit",
"properties": {
"ungit.showButton": {
"type": "boolean",
"default": false,
"description": "Show a button in the editor title bar to open Ungit",
"scope": "resource"
},
"ungit.showInActiveColumn": {
"type": "boolean",
"default": false,
"description": "Open the Ungit view in the active editor column instead of on the side",
"scope": "resource"
}
}
},
"commands": [
{
"command": "extension.ungit",
"title": "Open Ungit",
"icon": {
"dark": "./images/icon-dark.svg",
"light": "./images/icon-light.svg"
}
}
],
"menus": {
"editor/title": [
{
"when": "config.ungit.showButton",
"command": "extension.ungit",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "extension.ungit",
"key": "shift+alt+u",
"mac": "shift+alt+u"
}
]
},
"scripts": {
"build": "tsc",
"compile": "tsc -watch",
"package": "vsce package",
"publish": "vsce publish",
"test": "eslint src/*"
},
"dependencies": {
"ungit": "1.5.24",
"vscode-extension-telemetry": "0.4.5"
},
"devDependencies": {
"@types/node": "16.x.x",
"@types/vscode": "1.75.x",
"@typescript-eslint/eslint-plugin": "6.x.x",
"@typescript-eslint/parser": "6.x.x",
"@vscode/vsce": "^2.20.x",
"eslint": "8.x.x",
"typescript": "5.1.x"
}
}