71 lines
1.4 KiB
JSON
71 lines
1.4 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.helloWorld",
|
||
|
"onCommand:go-quickly-generator.go-gen-set",
|
||
|
"onCommand:go-quickly-generator.allGetterAndSetter"
|
||
|
],
|
||
|
"main": "./out/extension.js",
|
||
|
"contributes": {
|
||
|
"languages": [
|
||
|
{
|
||
|
"id": "go",
|
||
|
"extensions": [
|
||
|
".go"
|
||
|
],
|
||
|
"aliases": [
|
||
|
"Go"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"commands": [
|
||
|
{
|
||
|
"command": "go-quickly-generator.helloWorld",
|
||
|
"title": "Hello World",
|
||
|
"category": "go-quickly-generator"
|
||
|
},
|
||
|
{
|
||
|
"command": "go-quickly-generator.go-gen-set",
|
||
|
"title": "gen get set",
|
||
|
"category": "go-quickly-generator"
|
||
|
},
|
||
|
{
|
||
|
"command": "go-quickly-generator.allGetterAndSetter",
|
||
|
"title": "allGetterAndSetter",
|
||
|
"category": "go-quickly-generator"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"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": {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|