forked from 0x00000001A/es6-string-html
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 989 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "es6-string-css",
"displayName": "es6-string-css",
"description": "Highlight CSS language in ES6 template literals",
"version": "0.1.0",
"publisher": "bashmish",
"icon": "docs/logo.png",
"engines": {
"vscode": "^1.19.0"
},
"galleryBanner": {
"color": "#dedede",
"theme": "light"
},
"repository": {
"url": "https://github.com/bashmish/es6-string-css"
},
"bugs": {
"url": "https://github.com/bashmish/es6-string-css/issues"
},
"categories": [
"Programming Languages"
],
"keywords": [
"javascript",
"es6",
"css",
"lit-css",
"lit-html"
],
"contributes": {
"grammars": [
{
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.tsx"
],
"scopeName": "inline.es6-css",
"path": "./syntaxes/es6-inline-css.json",
"embeddedLanguages": {
"meta.embedded.block.css": "css"
}
}
]
}
}