GoTools/package.json

30 lines
609 B
JSON
Raw Normal View History

2021-03-19 02:22:55 +03:00
{
2021-03-19 03:24:12 +03:00
"name": "gotools",
2021-03-19 02:25:05 +03:00
"displayName": "Golang snippets",
2021-03-19 02:22:55 +03:00
"description": "Snippets for productive work",
"version": "0.0.1",
2021-03-19 02:25:05 +03:00
"publisher": "neonxp",
2021-03-19 02:22:55 +03:00
"engines": {
"vscode": "^1.28.0"
},
2021-03-19 02:25:05 +03:00
"icon": "icon.png",
2021-03-19 02:22:55 +03:00
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
2021-03-19 02:25:05 +03:00
"language": "go",
2021-03-19 02:22:55 +03:00
"path": "./snippets.json"
}
]
2021-03-19 02:25:05 +03:00
},
"scripts": {
"build": "vsce package"
},
"repository": {
"type": "git",
2021-03-19 03:24:12 +03:00
"url": "https://github.com/neonxp/GoTools"
2021-03-19 02:22:55 +03:00
}
}