-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 782 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 782 Bytes
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
{
"name": "vue-html-syntax-highlighter",
"publisher": "Tristan",
"displayName": "Vue HTML syntax highlighter",
"description": "Highlight vue expression synthax in normal html files to used with class decorator components",
"icon": "images/vuelogo.png",
"homepage": "https://github.com/N00ts/Vue-HTML-syntax-highlighter/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/N00ts/Vue-HTML-syntax-highlighter.git"
},
"version": "0.1.0",
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"path": "./syntaxes/.tmLanguage.json",
"scopeName": "html.vue",
"injectTo": [
"text.html"
]
}
]
}
}