2018-12-10 14:07:01 -07:00
|
|
|
{
|
2019-01-16 15:01:06 -07:00
|
|
|
"name": "gopls",
|
2018-12-10 14:07:01 -07:00
|
|
|
"description": "Go Language Server Client for testing",
|
|
|
|
"author": "The Go authors",
|
|
|
|
"license": "SEE LICENSE IN ../../../../LICENSE",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://golang.org/x/tools"
|
|
|
|
},
|
|
|
|
"publisher": "golang",
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.23.0"
|
|
|
|
},
|
|
|
|
"activationEvents": [
|
|
|
|
"onLanguage:go"
|
|
|
|
],
|
|
|
|
"main": "./out/extension",
|
|
|
|
"scripts": {
|
|
|
|
"vscode:prepublish": "tsc -p ./",
|
|
|
|
"compile": "tsc -watch -p ./",
|
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
|
|
"lint": "node ./node_modules/tslint/bin/tslint ./src/*.ts"
|
|
|
|
},
|
|
|
|
"extensionDependencies": [],
|
|
|
|
"dependencies": {
|
|
|
|
"vscode-languageclient": "~4.3.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/mocha": "^5.2.5",
|
2019-01-23 16:18:15 -07:00
|
|
|
"@types/node": "^8.10.39",
|
2018-12-10 14:07:01 -07:00
|
|
|
"tslint": "^5.11.0",
|
|
|
|
"typescript": "^3.1.3",
|
|
|
|
"vscode": "^1.1.24"
|
|
|
|
},
|
|
|
|
"contributes": {
|
|
|
|
"configuration": {
|
2019-01-16 15:01:06 -07:00
|
|
|
"title": "gopls",
|
2018-12-10 14:07:01 -07:00
|
|
|
"properties": {
|
2019-01-16 15:01:06 -07:00
|
|
|
"gopls.flags": {
|
2018-12-10 14:07:01 -07:00
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"default": [],
|
2019-01-16 15:01:06 -07:00
|
|
|
"description": "Flags to pass to gopls",
|
2018-12-10 14:07:01 -07:00
|
|
|
"scope": "resource"
|
2019-01-10 18:42:25 -07:00
|
|
|
},
|
2019-01-16 15:01:06 -07:00
|
|
|
"gopls.command": {
|
2019-01-10 18:42:25 -07:00
|
|
|
"type": "string",
|
2019-01-16 15:01:06 -07:00
|
|
|
"default": "gopls",
|
|
|
|
"description": "Name of the gopls binary",
|
2019-01-10 18:42:25 -07:00
|
|
|
"scope": "resource"
|
2018-12-10 14:07:01 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-23 16:18:15 -07:00
|
|
|
}
|