2019-09-27 10:47:42 +00:00
|
|
|
{
|
|
|
|
"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",
|
2019-10-08 10:22:24 +00:00
|
|
|
"onCommand:Go-Quickly-Generator.Go-Gen-GetSet"
|
2019-09-27 10:47:42 +00:00
|
|
|
],
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
"contributes": {
|
|
|
|
"languages": [
|
|
|
|
{
|
|
|
|
"id": "go",
|
|
|
|
"extensions": [
|
|
|
|
".go"
|
|
|
|
],
|
|
|
|
"aliases": [
|
|
|
|
"Go"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2019-10-13 18:45:38 +00:00
|
|
|
"colors": [
|
|
|
|
{
|
|
|
|
"id": "QuicklyGenerator.StructSelected",
|
|
|
|
"description": "Background decoration color for large numbers",
|
|
|
|
"defaults": {
|
|
|
|
"dark": "#3bcf1655",
|
|
|
|
"light": "#d45b0a55",
|
|
|
|
"highContrast": "#9806db55"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2019-09-27 10:47:42 +00:00
|
|
|
"commands": [
|
|
|
|
{
|
2019-10-08 10:22:24 +00:00
|
|
|
"command": "Go-Quickly-Generator.Go-Gen-GetSet",
|
|
|
|
"title": "Generator Get Set",
|
2019-09-27 10:47:42 +00:00
|
|
|
"category": "go-quickly-generator"
|
|
|
|
}
|
2019-10-08 10:22:24 +00:00
|
|
|
],
|
|
|
|
"menus": {
|
|
|
|
"editor/context": [
|
|
|
|
{
|
|
|
|
"when": "editorTextFocus && resourceLangId == go",
|
|
|
|
"command": "Go-Quickly-Generator.Go-Gen-GetSet",
|
|
|
|
"group": "GoQuickly@1"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2019-09-27 10:47:42 +00:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
},
|
2019-10-08 10:22:24 +00:00
|
|
|
"dependencies": {}
|
2019-09-27 10:47:42 +00:00
|
|
|
}
|