blob: 1cc8c254c1f4d763a3d1494fe277fb3992167dc5 (
plain) (
blame)
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
|
{
"name": "gosnippets",
"displayName": "Golang snippets",
"description": "Snippets for productive work",
"version": "0.0.1",
"publisher": "neonxp",
"engines": {
"vscode": "^1.28.0"
},
"icon": "icon.png",
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "go",
"path": "./snippets.json"
}
]
},
"scripts": {
"build": "vsce package"
},
"repository": {
"type": "git",
"url": "https://github.com/neonxp/GoSnippets"
}
}
|