fix package.json
This commit is contained in:
parent
3d94211018
commit
d3dc0c07d2
2 changed files with 11 additions and 3 deletions
BIN
icon.png
Normal file
BIN
icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 78 KiB |
14
package.json
14
package.json
|
@ -1,21 +1,29 @@
|
||||||
{
|
{
|
||||||
"name": "gosnippets",
|
"name": "gosnippets",
|
||||||
"displayName": "Useful Golang snippets",
|
"displayName": "Golang snippets",
|
||||||
"description": "Snippets for productive work",
|
"description": "Snippets for productive work",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"publisher": "Alexander NeonXP Kiryukhin",
|
"publisher": "neonxp",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.28.0"
|
"vscode": "^1.28.0"
|
||||||
},
|
},
|
||||||
|
"icon": "icon.png",
|
||||||
"categories": [
|
"categories": [
|
||||||
"Snippets"
|
"Snippets"
|
||||||
],
|
],
|
||||||
"contributes": {
|
"contributes": {
|
||||||
"snippets": [
|
"snippets": [
|
||||||
{
|
{
|
||||||
"language": "golang",
|
"language": "go",
|
||||||
"path": "./snippets.json"
|
"path": "./snippets.json"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"build": "vsce package"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/neonxp/GoSnippets"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue