vscode-go-adjust/package.json

87 lines
1.8 KiB
JSON
Raw Normal View History

2019-09-27 10:47:42 +00:00
{
"name": "go-quickly-generator",
"displayName": "go-quickly-generator",
2019-10-14 07:20:43 +00:00
"description": "generator code quickly",
"version": "1.0.1",
2019-10-14 06:56:34 +00:00
"publisher": "474420502",
2019-09-27 10:47:42 +00:00
"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",
2019-10-14 02:45:25 +00:00
"description": "Background decoration color for struct selected",
2019-10-13 18:45:38 +00:00
"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",
2019-10-14 02:45:25 +00:00
"title": "Go: Generate 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-14 07:14:40 +00:00
"dependencies": {},
"license": "MIT",
"author": "474420502",
"repository": {
"type": "git",
"url": "https://github.com/474420502/go-quickly-generator.git"
},
"bugs": {
"url": "https://github.com/474420502/go-quickly-generator/issues"
}
2019-10-14 03:12:47 +00:00
}