-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 978 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": "vscode-react-pug",
"displayName": "vscode-react-pug",
"description": "Syntax highlighting for pug (babel-plugin-transform-react-pug)",
"version": "0.0.5",
"publisher": "kaminaly",
"icon": "logo.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kaminaly/vscode-react-pug.git"
},
"engines": {
"vscode": "*"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"scopeName": "react.pug",
"path": "./syntaxes/react-pug.json",
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.js.jsx",
"source.tsx"
],
"embeddedLanguages": {
"react.pug": "jade"
}
}
]
}
}