fix badge

This commit is contained in:
NeonXP 2023-08-06 01:49:54 +03:00
parent 62d978d8a9
commit 0eaa18df4b
No known key found for this signature in database
GPG key ID: B0DA6283C40CB2CB
2 changed files with 28 additions and 33 deletions

View file

@ -1,10 +1,5 @@
# Golang Tools # Golang Tools
[![Version](https://vsmarketplacebadge.apphb.com/version/neonxp.gotools.svg)](https://marketplace.visualstudio.com/items?itemName=neonxp.gotools)
[![Installs](https://img.shields.io/visual-studio-marketplace/i/neonxp.gotools?label=Visual%20Studio%20Marketplace%20installs)](https://marketplace.visualstudio.com/items?itemName=neonxp.gotools)
[![Installs](https://img.shields.io/open-vsx/dt/neonxp/gotools?label=Open-VSX%20installs)](https://open-vsx.org/extension/neonxp/gotools)
[![GPLv3](https://img.shields.io/github/license/neonxp/GoTools)](/LICENSE)
[Install extension from Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=neonxp.gotools) [Install extension from Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=neonxp.gotools)
[Install extension from Open-VSX](https://open-vsx.org/extension/neonxp/gotools) (codeserver/vscodium/gitpod) [Install extension from Open-VSX](https://open-vsx.org/extension/neonxp/gotools) (codeserver/vscodium/gitpod)

View file

@ -1,12 +1,12 @@
{ {
"name": "gotools", "name": "gotools",
"displayName": "Golang Tools", "displayName": "Golang Tools",
"description": "Tools for productive work", "description": "Tools for productive work",
"version": "0.1.1", "version": "0.1.2",
"engines": { "engines": {
"vscode": "^1.81.0" "vscode": "^1.81.0"
}, },
"publisher": "neonxp", "publisher": "neonxp",
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"author": { "author": {
"name": "Alexander NeonXP Kiryukhin", "name": "Alexander NeonXP Kiryukhin",
@ -27,10 +27,10 @@
"go", "go",
"golang" "golang"
], ],
"activationEvents": [ "activationEvents": [
"onLanguage:go" "onLanguage:go"
], ],
"main": "./src/extension.js", "main": "./src/extension.js",
"contributes": { "contributes": {
"snippets": [ "snippets": [
{ {
@ -53,20 +53,20 @@
} }
] ]
}, },
"scripts": { "scripts": {
"lint": "eslint .", "lint": "eslint .",
"pretest": "npm run lint", "pretest": "npm run lint",
"test": "node ./test/runTest.js" "test": "node ./test/runTest.js"
}, },
"devDependencies": { "devDependencies": {
"@types/vscode": "^1.81.0", "@types/vscode": "^1.81.0",
"@types/glob": "^8.1.0", "@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1", "@types/mocha": "^10.0.1",
"@types/node": "20.2.5", "@types/node": "20.2.5",
"eslint": "^8.41.0", "eslint": "^8.41.0",
"glob": "^8.1.0", "glob": "^8.1.0",
"mocha": "^10.2.0", "mocha": "^10.2.0",
"typescript": "^5.1.3", "typescript": "^5.1.3",
"@vscode/test-electron": "^2.3.2" "@vscode/test-electron": "^2.3.2"
} }
} }