-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.5 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
{
"name": "vscode-git-tags",
"displayName": "Git Tags",
"description": "quick manage tags for a git repo",
"version": "1.4.4",
"publisher": "howardzuo",
"engines": {
"vscode": "^1.45.1"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"categories": [
"Debuggers"
],
"icon": "images/git-logo.png",
"bugs": {
"url": "https://github.com/leftstick/vscode-git-tags/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/leftstick/vscode-git-tags/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/leftstick/vscode-git-tags.git"
},
"activationEvents": [
"*"
],
"license": "GPL-3.0",
"main": "./out/",
"contributes": {
"menus": {
"scm/title": [
{
"command": "extension.gitcreatetag",
"group": "tags",
"when": "config.git.enabled"
},
{
"command": "extension.gittags",
"group": "tags",
"when": "config.git.enabled"
}
]
},
"commands": [
{
"command": "extension.gitcreatetag",
"title": "Create Tag"
},
{
"command": "extension.gittags",
"title": "Listing Tags"
}
]
},
"devDependencies": {
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.24",
"@types/vscode": "^1.47.0",
"typescript": "^3.9.7"
},
"dependencies": {
"lodash": "^4.17.19"
}
}