24 lines
548 B
JSON
24 lines
548 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": {
|
|
"bindings": "1.5.0",
|
|
"node-addon-api": "3.0.0",
|
|
"vscode-languageserver": "^6.1.1",
|
|
"vscode-languageserver-textdocument": "^1.0.1"
|
|
},
|
|
"scripts": {
|
|
"install": "cmake-js compile -d src -O build; tsc"
|
|
}
|
|
}
|