forked from 0x00000001A/es6-string-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (53 loc) · 1.16 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
{
"name": "es6-string-jsx",
"displayName": "es6-string-jsx",
"description": "Syntax highlighting for jsx in es6 multiline strings",
"version": "1.0.0",
"publisher": "Razio",
"icon": "docs/logo.png",
"engines": {
"vscode": "^1.19.0"
},
"galleryBanner": {
"color": "#dedede",
"theme": "light"
},
"repository": {
"url": "https://github.com/tyouzu1/es6-string-jsx"
},
"bugs": {
"url": "https://github.com/tyouzu1/es6-string-jsx/issues"
},
"categories": [
"Programming Languages"
],
"keywords": [
"javascript",
"javascriptreact",
"jsx",
"es6",
"lit-javascript",
"lit-jsx",
"lit-javascriptreact",
"lit-html"
],
"contributes": {
"grammars": [
{
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.tsx"
],
"scopeName": "inline.es6-jsx",
"path": "./syntaxes/es6-inline-jsx.json",
"embeddedLanguages": {
"meta.embedded.block.html": "html",
"meta.embedded.block.javascript": "javascript",
"meta.embedded.block.javascriptreact": "javascriptreact"
}
}
]
}
}