aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--icon.pngbin0 -> 79553 bytes
-rw-r--r--package.json14
2 files changed, 11 insertions, 3 deletions
diff --git a/icon.png b/icon.png
new file mode 100644
index 0000000..0902c16
--- /dev/null
+++ b/icon.png
Binary files 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"
}
}