forked from theNewDynamic/language-hugo-vscode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.68 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "language-hugo-vscode",
"displayName": "Hugo Language and Syntax Support",
"description": "Adds syntax highlighting and snippets to Hugo files in VS Code",
"version": "1.2.0",
"publisher": "budparr",
"engines": {
"vscode": "^1.24.0"
},
"galleryBanner": {
"color": "#0594CB",
"theme": "dark"
},
"icon": "images/icon.png",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/theNewDynamic/language-hugo-vscode/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/theNewDynamic/language-hugo-vscode",
"repository": {
"type": "git",
"url": "https://github.com/theNewDynamic/language-hugo-vscode.git"
},
"categories": [
"Programming Languages"
],
"keywords": [
"hugo",
"html",
"template",
"snippets"
],
"contributes": {
"languages": [
{
"id": "html",
"aliases": [
"HTML",
"HTML (Hugo)"
],
"extensions": [
".html",
".htm",
".xhtml"
],
"configuration": "./hugo.configuration.json"
}
],
"grammars": [
{
"language": "html",
"scopeName": "text.html.hugo",
"path": "./src/syntaxes/hugo.tmLanguage.json"
}
],
"snippets": [
{
"language": "html",
"path": "./src/snippets/hugo.code-snippets.json"
},
{
"language": "json",
"path": "./src/snippets/hugo.code-snippets.json"
},
{
"language": "markdown",
"path": "./src/snippets/md.snippets.json"
},
{
"language": "toml",
"path": "./src/snippets/md.snippets.json"
}
]
}
}