aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: cec58e71b31c0178c1145a5d4c2e092432610abb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "name": "gosnippets",
    "displayName": "Useful Golang snippets",
    "description": "Snippets for productive work",
    "version": "0.0.1",
    "publisher": "Alexander NeonXP Kiryukhin",
    "engines": {
        "vscode": "^1.28.0"
    },
    "categories": [
        "Snippets"
    ],
    "contributes": {
        "snippets": [
            {
                "language": "golang",
                "path": "./snippets.json"
            }
        ]
    }
}