-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 938 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
{
"name": "gotmpl-syntax-highlighter",
"displayName": "gotmpl-syntax-highlighter",
"description": "Go Template Syntax Highlighter for Reply",
"version": "0.0.3",
"publisher": "karyan40024",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nerdyslacker/gotmpl-syntax-highlighter.git"
},
"engines": {
"vscode": "^1.70.0"
},
"icon": "images/logo.png",
"categories": [
"Programming Languages"
],
"keywords": [
"go",
"template",
"highlight",
"syntax"
],
"contributes": {
"languages": [{
"id": "gotemplate",
"aliases": ["gotemplate"],
"extensions": [
"gotmpl",
".tmpl",
".tpl"
],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "gotemplate",
"scopeName": "source.gotemplate",
"path": "./syntaxes/gotemplate.tmLanguage.json"
}]
}
}