-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.56 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
{
"name": "git-last-commit-message",
"displayName": "Git Last Commit Message (GLCM)",
"description": "Pre fills with last commit message",
"version": "1.9.0",
"publisher": "JanBn",
"repository": {
"type": "git",
"url": "https://github.com/JanBN/vscode-git-last-commit-message"
},
"engines": {
"vscode": "^1.1.30"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/extension",
"contributes": {
"menus": {
"scm/title": [
{
"command": "glcm.loadLastCommitMessage",
"when": "scmProvider == git",
"group": "navigation",
"title": "Load last message"
},
{
"command": "glcm.loadLastCommitMessage",
"when": "scmProvider == git",
"group": "inline",
"title": "Load last message"
},
{
"command": "glcm.chooseLastCommitMessage",
"when": "scmProvider == git",
"group": "inline",
"title": "Choose from last messages"
}
]
},
"commands": [
{
"command": "glcm.loadLastCommitMessage",
"title": "(GLCM) Load last commit message",
"icon": {
"light": "assets/cmd-icon-light.svg",
"dark": "assets/cmd-icon-dark.svg"
}
},
{
"command": "glcm.chooseLastCommitMessage",
"title": "(GLCM) Choose commit message from last messages"
}
],
"keybindings": [
{
"command": "glcm.loadLastCommitMessage",
"key": "ctrl+i ctrl+i",
"mac": "cmd+k cmd+l"
},
{
"command": "glcm.chooseLastCommitMessage",
"key": "ctrl+i ctrl+l ",
"mac": "cmd+i cmd+l"
}
],
"configuration": {
"type": "object",
"title": "Git Last Commit Message",
"properties": {
"glcm.countOfCommitMessagesToChooseFrom": {
"type": "number",
"default": 10,
"description": "Specifies the maximum count of last commit messages to choose from"
},
"glcm.rewriteAlreadyTypedGitMessage": {
"type": "boolean",
"default": true,
"description": "Rewrite git message in textbox if there is any"
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"icon": "assets/icon.png",
"extensionDependencies": [
"vscode.git"
],
"devDependencies": {
"@types/node": "^8.10.25",
"ts-loader": "^4.4.2",
"tslint": "^5.8.0",
"typescript": "^3.3.3333",
"vscode": "^1.1.30",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"@types/vscode": "^1.40.0",
"vsce": "^1.58.0"
}
}