diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..0902c16 Binary files /dev/null and b/icon.png differ diff --git a/package.json b/package.json index cec58e7..1cc8c25 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,29 @@ { "name": "gosnippets", - "displayName": "Useful Golang snippets", + "displayName": "Golang snippets", "description": "Snippets for productive work", "version": "0.0.1", - "publisher": "Alexander NeonXP Kiryukhin", + "publisher": "neonxp", "engines": { "vscode": "^1.28.0" }, + "icon": "icon.png", "categories": [ "Snippets" ], "contributes": { "snippets": [ { - "language": "golang", + "language": "go", "path": "./snippets.json" } ] + }, + "scripts": { + "build": "vsce package" + }, + "repository": { + "type": "git", + "url": "https://github.com/neonxp/GoSnippets" } }