-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
471 lines (471 loc) · 14.3 KB
/
Copy pathpackage.json
File metadata and controls
471 lines (471 loc) · 14.3 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
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
{
"name": "specpressext",
"displayName": "SpecPress Extension for VSC",
"version": "0.7.9",
"publisher": "Ericsson",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ericsson/SpecPressExt.git"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./src/extension.js",
"scripts": {
"test": "node scripts/run-tests.js",
"test:quick": "node scripts/run-tests.js --quick",
"test:integration": "node test/integration/run.js",
"release": "node scripts/release.js"
},
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "specpress-comments",
"title": "SpecPress Comments",
"icon": "images/comment-unresolved.svg"
},
{
"id": "specpress-bandcombinations",
"title": "Band Combinations",
"icon": "$(list-tree)"
}
]
},
"views": {
"specpress-comments": [
{
"id": "specpressCommentFilter",
"name": "Filter",
"type": "webview"
},
{
"id": "specpressComments",
"name": "Comments",
"icon": "images/comment-unresolved.svg",
"contextualTitle": "SpecPress Comments"
},
{
"id": "specpressCommentDetail",
"name": "Details",
"type": "webview"
}
],
"specpress-bandcombinations": [
{
"id": "specpressBcFilter",
"name": "Filter",
"type": "webview"
},
{
"id": "specpressBcValidation",
"name": "Validation",
"type": "webview"
},
{
"id": "specpressBcTree",
"name": "Band Combinations",
"contextualTitle": "Band Combinations"
}
]
},
"customEditors": [
{
"viewType": "specpress.jsonTableEditor",
"displayName": "JsonTable Editor",
"selector": [
{
"filenamePattern": "*.json"
}
],
"priority": "option"
}
],
"commands": [
{
"command": "specpress.previewMultiple",
"title": "SpecPress: Preview Selected"
},
{
"command": "specpress.exportSelectedAsDocx",
"title": "SpecPress: Export Selected to DOCX"
},
{
"command": "specpress.exportSelectedAsHtml",
"title": "SpecPress: Export Selected to HTML"
},
{
"command": "specpress.preview",
"title": "SpecPress: Open Preview"
},
{
"command": "specpress.exportHtml",
"title": "SpecPress: Export to HTML"
},
{
"command": "specpress.restoreMultiPreview",
"title": "SpecPress: Show multi-page preview"
},
{
"command": "specpress.editSection",
"title": "SpecPress: Edit this section"
},
{
"command": "specpress.openJsonTableEditor",
"title": "SpecPress: JsonTable Editor"
},
{
"command": "specpress.openOrCreateJsonTable",
"title": "SpecPress: Open/Create JsonTable"
},
{
"command": "specpress.toggleChangeTracking",
"title": "SpecPress: Enable Change Tracking"
},
{
"command": "specpress.disableChangeTracking",
"title": "SpecPress: Disable Change Tracking"
},
{
"command": "specpress.addComment",
"title": "SpecPress: Add Comment",
"icon": "$(add)"
},
{
"command": "specpress.validateCommentPositions",
"title": "SpecPress: Validate Comment Positions",
"icon": "$(search)"
},
{
"command": "specpress.refreshCommentTree",
"title": "SpecPress: Refresh Comments",
"icon": "$(refresh)"
},
{
"command": "specpress.expandAllComments",
"title": "Expand All",
"icon": "$(expand-all)"
},
{
"command": "specpress.expandCurrentFile",
"title": "Expand Current File",
"icon": "$(file)"
},
{
"command": "specpress.openCommentJson",
"title": "Open Comment JSON"
},
{
"command": "specpress.showCommentFromHover",
"title": "Show Comment"
},
{
"command": "specpress.bcValidate",
"title": "Validate Band Combinations",
"icon": "$(play)"
},
{
"command": "specpress.bcOpenLog",
"title": "Open Validation Log",
"icon": "$(output)"
},
{
"command": "specpress.bcRefresh",
"title": "Refresh Band Combinations",
"icon": "$(refresh)"
},
{
"command": "specpress.openBcPreview",
"title": "Open Band Combination Preview"
},
{
"command": "specpress.configureBcFolder",
"title": "Configure Band Combination Folder"
},
{
"command": "specpress.bcNormalize",
"title": "SpecPress: Normalize Band Combination",
"icon": "$(symbol-namespace)"
},
{
"command": "specpress.bcPreviewFiltered",
"title": "Preview Filtered",
"icon": "$(list-flat)"
},
{
"command": "specpress.bcExportGitDiff",
"title": "Export Git Diff",
"icon": "$(diff)"
},
{
"command": "specpress.bcTogglePreview",
"title": "Toggle Auto Preview",
"icon": "$(eye)"
},
{
"command": "specpress.showDebugLog",
"title": "SpecPress: Show Debug Log"
}
],
"menus": {
"view/title": [
{
"command": "specpress.addComment",
"when": "view == specpressComments",
"group": "navigation@1"
},
{
"command": "specpress.expandCurrentFile",
"when": "view == specpressComments",
"group": "navigation@2"
},
{
"command": "specpress.expandAllComments",
"when": "view == specpressComments",
"group": "navigation@3"
},
{
"command": "specpress.refreshCommentTree",
"when": "view == specpressComments",
"group": "navigation@4"
},
{
"command": "specpress.bcRefresh",
"when": "view == specpressBcTree",
"group": "navigation@1"
},
{
"command": "specpress.bcNormalize",
"when": "view == specpressBcTree",
"group": "navigation@2"
},
{
"command": "specpress.bcPreviewFiltered",
"when": "view == specpressBcTree",
"group": "navigation@3"
},
{
"command": "specpress.bcExportGitDiff",
"when": "view == specpressBcTree",
"group": "navigation@4"
},
{
"command": "specpress.bcTogglePreview",
"when": "view == specpressBcTree && !specpress.bcAutoPreviewEnabled",
"group": "navigation@5"
},
{
"command": "specpress.bcTogglePreview",
"when": "view == specpressBcTree && specpress.bcAutoPreviewEnabled",
"group": "navigation@5",
"icon": "$(eye-closed)"
}
],
"view/item/context": [
{
"command": "specpress.validateCommentPositions",
"when": "view == specpressComments && viewItem == commentFileWithMoved",
"group": "inline"
},
{
"command": "specpress.validateCommentPositions",
"when": "view == specpressComments && viewItem == commentFileWithMoved",
"group": "1_validation"
},
{
"command": "specpress.addComment",
"when": "view == specpressComments && viewItem == commentFile",
"group": "inline"
}
],
"explorer/context": [
{
"command": "specpress.previewMultiple",
"group": "specpress@1"
},
{
"command": "specpress.exportSelectedAsDocx",
"group": "specpress@2"
},
{
"command": "specpress.exportSelectedAsHtml",
"group": "specpress@3"
},
{
"command": "specpress.openJsonTableEditor",
"when": "resourceExtname == '.json'",
"group": "specpress@4"
},
{
"command": "specpress.openBcPreview",
"when": "resourceExtname == '.json' && resourceFilename =~ /^(CA_|DC_).*\\.json$/",
"group": "specpress@5"
},
{
"command": "specpress.bcNormalize",
"when": "resourceExtname == '.json' && resourceFilename =~ /^(CA_|DC_).*\\.json$/",
"group": "specpress@6"
}
],
"webview/context": [
{
"command": "specpress.toggleChangeTracking",
"when": "webviewId == 'specpressPreview' && !specpress.changeTrackingActive",
"group": "specpress@0"
},
{
"command": "specpress.disableChangeTracking",
"when": "webviewId == 'specpressPreview' && specpress.changeTrackingActive",
"group": "specpress@0"
},
{
"command": "specpress.editSection",
"when": "webviewId == 'specpressPreview' && specpress.isMultiFilePreview",
"group": "specpress@1"
},
{
"command": "specpress.restoreMultiPreview",
"when": "webviewId == 'specpressPreview' && !specpress.isMultiFilePreview",
"group": "specpress@2"
}
],
"editor/context": [
{
"command": "specpress.preview",
"group": "specpress@1"
},
{
"command": "specpress.openJsonTableEditor",
"when": "resourceExtname == '.json'",
"group": "specpress@2"
},
{
"command": "specpress.openOrCreateJsonTable",
"when": "resourceLangId == 'markdown'",
"group": "specpress@3"
},
{
"command": "specpress.addComment",
"when": "editorLangId == markdown || resourceExtname == '.asn'",
"group": "specpress@4"
},
{
"command": "specpress.validateCommentPositions",
"when": "editorLangId == markdown || resourceExtname == '.asn'",
"group": "specpress@5"
}
]
},
"configuration": {
"title": "SpecPress",
"properties": {
"specpress.renderers": {
"type": "object",
"default": {},
"description": "Custom HTML renderers for markdown elements"
},
"specpress.cssFile": {
"type": "string",
"default": "",
"description": "Path to CSS file relative to workspace root. If absent the viewer uses its in-built template."
},
"specpress.mermaidConfigFile": {
"type": "string",
"default": "",
"description": "Path to Mermaid config JSON file relative to workspace root. If absent the viewer uses its in-built mermaid configuration"
},
"specpress.multiPagePreviewDefaultPath": {
"type": "string",
"default": "",
"description": "Default file or folder path for multi-page preview (Ctrl+Shift+M). Relative paths are resolved from the workspace root."
},
"specpress.specificationRootPath": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"default": "",
"description": "Root folder(s) of the specification tree. Accepts a single path or an array of paths. SpecPress is active only for files inside these roots. Relative paths are resolved from the workspace root."
},
"specpress.deriveSectionNumbers": {
"type": "boolean",
"default": false,
"description": "If set to true, section numbers are derived from leading numbers in folder- and file names and injected into the heading rows."
},
"specpress.frontPageData": {
"type": "string",
"default": "",
"description": "Path to a JSON file with front page placeholder values relative to workspace root."
},
"specpress.coverPageData": {
"type": "string",
"default": "",
"description": "Deprecated. Use specpress.frontPageData instead.",
"deprecationMessage": "Use specpress.frontPageData instead."
},
"specpress.defaultExportFolder": {
"type": "string",
"default": "",
"description": "Default folder for HTML and DOCX export dialogs. Relative to workspace root or absolute. Overridden by the last chosen folder during the session."
},
"specpress.commentFolder": {
"type": "string",
"default": "",
"description": "Folder for comment files. Required for commenting feature. Relative paths are resolved from spec root parent (e.g., 'comments' creates a sibling folder). Absolute paths are allowed but use with caution. Security note: Comments are stored outside spec root by default."
},
"specpress.userId": {
"type": "string",
"default": "",
"description": "User ID for comments (no spaces, lowercase recommended)."
},
"specpress.userName": {
"type": "string",
"default": "",
"description": "Display name for comments."
},
"specpress.bandCombinationFolder": {
"type": "string",
"default": "",
"description": "Path to the 38.101 data repository root (containing common/, ts-38.101-1/, etc.). When set, the Band Combinations pane becomes available. Relative paths are resolved from the workspace root."
},
"specpress.enableDebugLogging": {
"type": "boolean",
"default": false,
"description": "Enable debug logging to temp file for troubleshooting. Useful when running in Extension Development Host."
}
}
},
"jsonValidation": [
{
"fileMatch": "**/history/CR*.json",
"url": "./node_modules/specpress/lib/templates/crCoverPageSchema.json"
}
],
"keybindings": [
{
"command": "specpress.restoreMultiPreview",
"key": "ctrl+shift+m",
"mac": "cmd+shift+m"
}
]
},
"dependencies": {
"htmldiff-js": "^1.0.5",
"specpress": "^3.4.5"
}
}