2017-09-04 16:10:02 +02:00
|
|
|
{
|
2018-06-04 14:26:18 +02:00
|
|
|
"name": "lsp-sample-server",
|
|
|
|
|
"description": "Example implementation of a language server in node.",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"author": "Microsoft Corporation",
|
2017-09-04 16:10:02 +02:00
|
|
|
"license": "MIT",
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": "*"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2018-02-20 11:01:40 +01:00
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
2017-09-04 16:10:02 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2021-01-15 09:16:50 +01:00
|
|
|
"vscode-languageserver": "^7.0.0",
|
|
|
|
|
"vscode-languageserver-textdocument": "^1.0.1"
|
2017-09-04 16:10:02 +02:00
|
|
|
},
|
2018-06-04 14:26:18 +02:00
|
|
|
"scripts": {}
|
2018-02-20 11:01:40 +01:00
|
|
|
}
|