sbt/vscode-sbt-scala/server/package.json

25 lines
683 B
JSON

{
"name": "vscode-sbt-scala",
"displayName": "Scala (sbt)",
"version": "0.0.1",
"author": "Lightbend, Inc.",
"license": "BSD-3-Clause",
"publisher": "lightbend",
"description": "Relay server to sbt server.",
"repository": {
"type": "git",
"url": "https://github.com/sbt/sbt"
},
"engines": {
"node": "*"
},
"dependencies": {
"vscode-languageserver": "^5.2.1"
},
"scripts": {
"installServer": "installServerIntoExtension ../client ./package.json ./tsconfig.json",
"compile": "installServerIntoExtension ../client ./package.json ./tsconfig.json && tsc -p .",
"watch": "installServerIntoExtension ../client ./package.json ./tsconfig.json && tsc -w -p ."
}
}