forked from atsushieno/vscode-language-review
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.78 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
{
"name": "language-review",
"displayName": "Re:VIEW",
"description": "Re:VIEW language Support for Visual Studio Code.",
"version": "0.7.5",
"author": "Atsushi Eno, vscode-language-review contributors",
"license": "Apache License Version 2.0",
"publisher": "atsushieno",
"engines": {
"vscode": "^1.75.0"
},
"repository": {
"type": "git",
"url": "https://github.com/atsushieno/vscode-language-review.git"
},
"bugs": {
"url": "https://github.com/atsushieno/vscode-language-review/issues"
},
"categories": [
"Language Packs",
"Linters"
],
"homepage": "https://github.com/atsushieno/vscode-language-review/blob/master/README.md",
"main": "./out/src/extension",
"contributes": {
"languages": [
{
"id": "review",
"aliases": [
"Re:VIEW",
"review"
],
"extensions": [
".re"
],
"configuration": "./review.configuration.json"
}
],
"grammars": [
{
"language": "review",
"scopeName": "text.review",
"path": "./syntaxes/review.tmLanguage"
}
],
"commands": [
{
"command": "review.showPreview",
"title": "Show preview",
"category": "review"
},
{
"command": "review.checkSyntax",
"title": "Check syntax",
"category": "review"
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == review",
"command": "review.showPreview",
"group": "navigation"
}
],
"explorer/context": [
{
"when": "resourceLangId == review",
"command": "review.showPreview",
"group": "navigation"
}
]
},
"configuration": [
{
"title": "Re:VIEW",
"properties": {
"languageReview.preview.draftMode": {
"markdownDescription": "Enable 'draft' mode which shows contents of inline comment (`@<comment>{...}`) and block comment (`//comment{...//}`).",
"type": "boolean",
"default": false
},
"languageReview.experimentalFeatures.preview.stylesheet": {
"description": "[Advanced option]\nFile name or path of css file to be applied to preview window.\nNote that this is 'alpha' feature, so subject to change in future release.",
"type": "string",
"default": "stylesheet.css"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./"
},
"devDependencies": {
"mocha": "^10.2.0",
"@types/node": "^22.7.6",
"@types/mocha": "^10.0.9",
"@types/vscode": "^1.75.0"
},
"dependencies": {
"rx-lite": "4.0.8",
"review.js-vscode": "0.20.0",
"js-yaml": "^4.1.0"
}
}