diff options
author | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2021-03-19 02:25:05 +0300 |
---|---|---|
committer | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2021-03-19 03:10:04 +0300 |
commit | d3dc0c07d233937e29dafc8dda7990b6ec6cefa9 (patch) | |
tree | 8b0b1c88bd2ccea977db647a59e053ea4ad48134 | |
parent | 3d94211018aa28c32605e001e62b3dbe7f9305f3 (diff) |
fix package.json
-rw-r--r-- | icon.png | bin | 0 -> 79553 bytes | |||
-rw-r--r-- | package.json | 14 |
2 files changed, 11 insertions, 3 deletions
diff --git a/icon.png b/icon.png Binary files differnew file mode 100644 index 0000000..0902c16 --- /dev/null +++ b/icon.png 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" } } |