-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "go-templates-snippets",
"displayName": "Go Templates Snippets for VSCode",
"description": "This extension contains code snippets for Golang templates for the Visual Studio Code editor. It supports `.gotmpl`, `.html` and their file associations.",
"version": "0.0.3",
"engines": {
"vscode": "^1.28.0"
},
"icon": "assets/images/golang-templates-snippets.png",
"categories": [
"Snippets"
],
"publisher": "OrimDominic",
"author": {
"name": "Orim Dominic",
"email": "[email protected]",
"url": "https://github.com/orimdominic"
},
"repository": {
"url": "https://github.com/orimdominic/go-templates-snippets",
"type": "git"
},
"license": "SEE LICENSE IN LICENSE",
"contributes": {
"snippets": [
{
"language": "gotmpl",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "html",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "go",
"path": "./snippets/snippets.code-snippets"
}
]
}
}