mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
20 lines
446 B
JSON
20 lines
446 B
JSON
{
|
|
"name": "lsp-sample-server",
|
|
"description": "Example implementation of a language server in node.",
|
|
"version": "1.0.0",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": "*"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageserver-textdocument": "1.0.8",
|
|
"vscode-languageserver": "8.1.0-next.6"
|
|
},
|
|
"scripts": {}
|
|
}
|