-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 3.91 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 3.91 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
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
{
"name": "git-commit-manager",
"displayName": "%extension.displayName%",
"description": "%extension.description%",
"version": "0.3.3",
"publisher": "git-commit-manager",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"keywords": [
"git",
"commit",
"push",
"gui",
"management"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "git-commit-manager.openCommitEditor",
"title": "%command.openCommitEditor.title%",
"category": "%command.openCommitEditor.category%",
"icon": "$(git-commit)"
},
{
"command": "git-commit-manager.stageFile",
"title": "ファイルをステージ",
"category": "%command.openCommitEditor.category%",
"icon": "$(add)"
},
{
"command": "git-commit-manager.unstageFile",
"title": "ステージを解除",
"category": "%command.openCommitEditor.category%",
"icon": "$(remove)"
},
{
"command": "git-commit-manager.editCommitDate",
"title": "コミット時間を編集",
"category": "%command.openCommitEditor.category%",
"icon": "$(edit)"
},
{
"command": "git-commit-manager.showFileDiff",
"title": "変更点を表示",
"category": "%command.openCommitEditor.category%",
"icon": "$(diff)"
},
{
"command": "git-commit-manager.refresh",
"title": "更新",
"category": "%command.openCommitEditor.category%",
"icon": "$(refresh)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "gitCommitManagerContainer",
"title": "%view.gitCommitManager.title%",
"icon": "$(git-commit)"
}
]
},
"views": {
"gitCommitManagerContainer": [
{
"id": "gitCommitManagerView",
"name": "%view.gitCommitManager.title%",
"when": "workspaceFolderCount > 0"
}
]
},
"viewsWelcome": [
{
"view": "gitCommitManagerView",
"contents": "Git リポジトリを開いてコミット管理を開始しましょう。\n[コミットエディターを開く](command:git-commit-manager.openCommitEditor)"
}
],
"menus": {
"commandPalette": [
{
"command": "git-commit-manager.openCommitEditor",
"when": "workspaceFolderCount > 0"
}
],
"scm/title": [
{
"command": "git-commit-manager.openCommitEditor",
"group": "navigation",
"when": "scmProvider == git"
}
],
"view/title": [
{
"command": "git-commit-manager.refresh",
"when": "view == gitCommitManagerView",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "git-commit-manager.stageFile",
"when": "view == gitCommitManagerView && viewItem == modified-file",
"group": "inline"
},
{
"command": "git-commit-manager.stageFile",
"when": "view == gitCommitManagerView && viewItem == untracked-file",
"group": "inline"
},
{
"command": "git-commit-manager.unstageFile",
"when": "view == gitCommitManagerView && viewItem == staged-file",
"group": "inline"
},
{
"command": "git-commit-manager.editCommitDate",
"when": "view == gitCommitManagerView && viewItem == unpushed-commit",
"group": "inline"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@vscode/vsce": "^3.6.0",
"typescript": "^4.9.4"
},
"dependencies": {
"simple-git": "^3.19.1"
}
}