-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 938 Bytes
/
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
{
"name": "gutenburg-comment-highlight",
"displayName": "Gutenberg Comment Highlight",
"description": "Syntax highlighting for Gutenberg HTML comments",
"icon": "assets/package-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/chrisrhymes/gutenburg-comment-highlight"
},
"bugs": {
"url": "https://github.com/chrisrhymes/gutenburg-comment-highlight/issues"
},
"publisher": "chrisrhymes",
"version": "0.0.4",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"scopeName": "gutenberg-comment.injection",
"path": "./syntaxes/injection.json",
"injectTo": [
"text.html.derivative",
"text.html.php"
],
"embeddedLanguages": {
"meta.embedded.block.json": "json",
"meta.embedded.block.php": "php"
}
}
]
}
}