-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "vscode-styled-jsx",
"displayName": "vscode-styled-jsx",
"description": "Syntax highlighting for styled-jsx",
"version": "2.0.0",
"publisher": "blanu",
"engines": {
"vscode": "^1.26.0"
},
"repository": {
"type": "git",
"url": "https://github.com/iFwu/vscode-styled-jsx"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "source.css.jsx.styled",
"aliases": [
"CSS (Styled JSX)"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "source.css.jsx.styled",
"scopeName": "source.css.jsx.styled",
"path": "./syntaxes/css.json"
},
{
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.js.jsx",
"source.tsx"
],
"scopeName": "styled-jsx",
"path": "./syntaxes/jsx-styled.json",
"embeddedLanguages": {
"source.css.scss": "css",
"meta.embedded.line.ts": "typescript"
}
}
]
}
}