-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
208 lines (208 loc) · 5.58 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
{
"name": "codedox",
"displayname": "Codedox for Haxe",
"description": "JSDoc-style comments for Haxe. @param and @return tags, plus customizable file header license and copyright comments.",
"version": "1.3.3",
"publisher": "wiggin77",
"license": "(MIT) View license in LICENSE.md",
"engines": {
"vscode": "^1.4.0"
},
"icon": "images/codedox-logo.png",
"galleryBanner": {
"color": "#A84B38",
"theme": "dark"
},
"categories": [
"Other"
],
"keywords": [
"Haxe",
"comments",
"JSDoc",
"license",
"copyright"
],
"bugs": "https://github.com/vshaxe/codedox/issues",
"homepage": "https://github.com/vshaxe/codedox/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/vshaxe/codedox"
},
"activationEvents": [
"onLanguage:haxe",
"onCommand:codedox.setup",
"onCommand:codedox.fileheader.insert",
"onCommand:codedox.comment.insert"
],
"main": "./out/codedox",
"scripts": {
"vscode:prepublish": "haxe build-release.hxml"
},
"dependencies": {
"lix": "^15.12.0"
},
"contributes": {
"commands": [
{
"command": "codedox.setup",
"title": "Codedox: Setup minimal config"
},
{
"command": "codedox.fileheader.insert",
"title": "Codedox: Insert file header"
},
{
"command": "codedox.comment.insert",
"title": "Codedox: Insert comment at cursor"
}
],
"configuration": {
"type": "object",
"title": "Codedox",
"properties": {
"codedox": {
"description": "Codedox settings.",
"type": "object",
"additionalProperties": false,
"properties": {
"autoInsert": {
"description": "If true then function comment insertion is triggered by typing the value of `commentbegin`",
"type": "boolean",
"default": true
},
"autoInsertHeader": {
"description": "If true then file header insertion is triggered by typing the value of `headerbegin`",
"type": "boolean",
"default": true
},
"autoPrefixOnEnter": {
"description": "If true then onEnterRules are added",
"type": "boolean",
"default": true
},
"neverAskTemplate": {
"description": "If true then never asks to select default template via setup wizard",
"type": "boolean",
"default": false
},
"paramFormat": {
"description": "Format of the @param tag, using ${name} and ${type} fields",
"type": "string",
"default": "@param ${name} "
},
"returnFormat": {
"description": "Format of the @return tag, using ${type} field",
"type": "string",
"default": "@return ${type}"
},
"allowOptionalArgs": {
"description": "If true, allows the '?' prefix for optional function args in @param tag",
"type": "boolean",
"default": false
},
"commentprefix": {
"description": "Per-line comment prefix",
"type": "string",
"default": " * "
},
"commentbegin": {
"description": "Start of function comment",
"type": "string",
"default": "/**"
},
"commentend": {
"description": "End of function comment",
"type": "string",
"default": " */"
},
"commentdescription": {
"description": "Initial text added to comment description",
"type": "string",
"default": "[Description]"
},
"alwaysMultiline": {
"description": "If true then all comments are multiline, else non-functions are single line",
"type": "boolean",
"default": true
},
"headerprefix": {
"description": "Per-line header prefix",
"type": "string",
"default": "*"
},
"headerbegin": {
"description": "Start of file header comment",
"type": "string",
"default": "/*"
},
"headerend": {
"description": "End of file header comment",
"type": "string",
"default": " */"
},
"fileheader": {
"description": "Settings for insertFileHeader command",
"type": "object",
"properties": {
"params": {
"description": "Parameters used to populate '${}' fields in a template. Contains groups of params keyed by language id",
"type": "object",
"properties": {
"*": {
"description": "Default params used regardless of which language id is used by the current editor",
"type": "object",
"additionalProperties": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
},
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"templates": {
"description": "Templates keyed by language id - each template is an array of strings containing text and optional '${}' fields",
"type": "object",
"properties": {
"*": {
"description": "Default template used when no language id specified",
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}
}
},
"__metadata": {
"id": "31559b1f-ac25-4830-bfbc-eccf24c75452",
"publisherDisplayName": "wiggin77",
"publisherId": "577d2b04-bb43-4547-901e-a50f7565b354"
}
}