vscode-go-adjust/package.json
2019-10-14 10:45:25 +08:00

76 lines
1.5 KiB
JSON

{
"name": "go-quickly-generator",
"displayName": "go-quickly-generator",
"description": "create code quickly",
"version": "0.0.1",
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:go",
"onCommand:Go-Quickly-Generator.Go-Gen-GetSet"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "go",
"extensions": [
".go"
],
"aliases": [
"Go"
]
}
],
"colors": [
{
"id": "QuicklyGenerator.StructSelected",
"description": "Background decoration color for struct selected",
"defaults": {
"dark": "#3bcf1655",
"light": "#d45b0a55",
"highContrast": "#9806db55"
}
}
],
"commands": [
{
"command": "Go-Quickly-Generator.Go-Gen-GetSet",
"title": "Go: Generate Get Set",
"category": "go-quickly-generator"
}
],
"menus": {
"editor/context": [
{
"when": "editorTextFocus && resourceLangId == go",
"command": "Go-Quickly-Generator.Go-Gen-GetSet",
"group": "GoQuickly@1"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.38.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"typescript": "^3.3.1",
"tslint": "^5.12.1",
"vscode-test": "^1.2.0"
},
"dependencies": {}
}