GoTools/package.json

87 lines
1.6 KiB
JSON
Raw Normal View History

2021-03-19 02:22:55 +03:00
{
2023-08-06 01:49:54 +03:00
"name": "gotools",
"displayName": "Golang Tools",
"description": "Tools for productive work",
2023-08-08 02:40:09 +03:00
"version": "0.1.5",
2023-08-06 01:49:54 +03:00
"engines": {
2023-08-07 21:08:48 +03:00
"vscode": "^1.80.0"
2023-08-06 01:49:54 +03:00
},
"publisher": "neonxp",
2021-03-28 03:20:22 +03:00
"license": "GPL-3.0-or-later",
2021-03-22 02:27:33 +03:00
"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"
],
2023-08-06 01:49:54 +03:00
"activationEvents": [
2023-08-07 21:08:48 +03:00
"onLanguage:go",
"onCommand:gotools.implement"
2023-08-06 01:49:54 +03:00
],
"main": "./src/extension.js",
2021-03-22 02:27:33 +03:00
"contributes": {
"snippets": [
{
"language": "go",
"path": "./snippets/snippets.json"
}
],
"menus": {
"touchBar": [
{
"command": "gotools.wrap-error",
"when": "allowWrapIferr"
}
]
},
"commands": [
{
"command": "gotools.wrap-error",
"title": "if err≠nil {...}"
2023-08-07 21:08:48 +03:00
},
{
"command": "gotools.implement",
"title": "Implement Interface Methods",
"category": "Go"
2023-08-08 02:40:09 +03:00
},
{
"command": "gotools.group-imports",
"title": "Group imports",
"category": "Go"
}
2021-03-22 02:27:33 +03:00
]
},
2023-08-06 01:49:54 +03:00
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "20.2.5",
2023-08-07 21:08:48 +03:00
"@types/vscode": "^1.80.0",
"@vscode/test-electron": "^2.3.2",
2023-08-06 01:49:54 +03:00
"eslint": "^8.41.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^5.1.3",
2023-08-07 21:08:48 +03:00
"lodash.debounce": "^4.0.8"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
2023-08-06 01:49:54 +03:00
}
}