-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
170 lines (170 loc) · 5.02 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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "git-send-email",
"displayName": "Git send-email",
"description": "Git send-email integration",
"publisher": "florent-revest",
"license": "MIT",
"icon": "icon.png",
"version": "1.4.1",
"repository": {
"type": "git",
"url": "https://github.com/FlorentRevest/vscode-git-send-email.git"
},
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:git-send-email.series"
],
"main": "./out/src/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "git-send-email",
"title": "Git send-email",
"icon": "$(mail)"
}
]
},
"views": {
"git-send-email": [
{
"id": "git-send-email.series",
"name": "",
"type": "webview",
"when": "git.state == initialized"
}
]
},
"viewsWelcome": [
{
"view": "git-send-email.series",
"contents": "Loading..."
}
],
"configuration": {
"title": "Git send-email",
"properties": {
"git-send-email.defaultSubjectPrefix": {
"type": "string",
"default": "PATCH",
"description": "Default subject prefix."
},
"git-send-email.defaultTos": {
"type": "array",
"default": [],
"description": "Default list of emails to pre-fill the To section."
},
"git-send-email.defaultCcs": {
"type": "array",
"default": [],
"description": "Default list of emails to pre-fill the Cc section."
},
"git-send-email.gitPath": {
"type": "string",
"default": "git",
"description": "Command to invoke git."
},
"git-send-email.checkpatchPath": {
"type": "string",
"default": "./scripts/checkpatch.pl",
"description": "Command to invoke checkpatch."
},
"git-send-email.getMaintainerPath": {
"type": "string",
"default": "./scripts/get_maintainer.pl",
"description": "Command to invoke get_maintainer."
},
"git-send-email.maintainersPath": {
"type": "string",
"default": "MAINTAINERS",
"description": "Relative path to the MAINTAINERS file."
},
"git-send-email.archiveUrlPrefixToMessageId": {
"type": "string",
"default": "https://lore.kernel.org/r/",
"description": "Url prefix that gets prepended to email message IDs to infer an archive address."
},
"git-send-email.openEmailsWithPatchwork": {
"type": "boolean",
"default": true,
"description": "If the florent-revest.patchwork extension is installed, have it open sent emails."
},
"git-send-email.postFormatPatchCommand": {
"type": "array",
"default": [
"sed",
"-i",
"/^Change-Id: /d"
],
"description": "Command executed after patches are generated. It will be followed by all patch paths as arguments. e.g: cmd /tmp/cover-letter.patch /tmp/1.patch"
},
"git-send-email.formatPatchArgs": {
"type": "array",
"default": [
"--signoff"
],
"description": "Extra arguments to git format-patch."
},
"git-send-email.getMaintainerToArgs": {
"type": "array",
"default": [
"--no-m",
"--no-r",
"--no-git-fallback"
],
"description": "Arguments to get_maintainer to filter only To addresses."
},
"git-send-email.getMaintainerCcArgs": {
"type": "array",
"default": [
"--no-l"
],
"description": "Arguments to get_maintainer to filter only Cc addresses."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm-run-all compile:*",
"compile:extension": "tsc -p ./",
"compile:view": "webpack --mode development",
"watch": "npm-run-all -p watch:*",
"watch:extension": "tsc -watch -p ./",
"watch:view": "webpack --watch --mode development",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/node": "^12.11.7",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/uuid": "^8.3.1",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.6",
"npm-run-all": "^4.1.5",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.15",
"typescript": "^4.8.2",
"vscode-test": "^1.5.0",
"webpack": "^5.21.1",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"@vscode/codicons": "^0.0.32",
"@vscode/webview-ui-toolkit": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}