summaryrefslogtreecommitdiff
path: root/nvim/snippets/package.json
blob: efb2b49e83b46121f4955eb3a84b38cded0efc36 (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
30
31
32
33
34
35
36
37
38
{
	"name": "gotools",
	"displayName": "Golang Tools",
	"description": "Tools for productive work",
	"version": "0.1.5",
	"engines": {
		"vscode": "^1.80.0"
	},
	"publisher": "neonxp",
	"license": "GPL-3.0-or-later",
	"author": {
		"name": "Alexander NeonXP Kiryukhin",
		"email": "a.kiryukhin@mail.ru",
		"url": "https://neonxp.ru/"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/neonxp/GoTools"
	},
	"icon": "icon.png",
	"categories": [
		"Programming Languages",
		"Snippets",
		"Other"
	],
	"keywords": [
		"go",
		"golang"
	],
	"contributes": {
		"snippets": [
			{
				"language": "go",
				"path": "./go.json"
			}
		]
	}
}