bolt/@boltlang/langserver/package.json

35 lines
891 B
JSON
Raw Normal View History

{
"name": "@boltlang/langserver",
"version": "1.0.0",
"description": "An implementation of the Language Server Protocol for the Bolt programming language",
"bin": {
"bolt-langserver": "bin/bolt-langserver.js"
},
"scripts": {
"watch": "webpack --mode development --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BoltLang/BoltJS.git"
},
"keywords": [
"language-server",
"protocol",
"server",
"programming-language",
"bolt"
],
"author": "Sam Vervaeck",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/BoltLang/BoltJS/issues"
},
"homepage": "https://github.com/BoltLang/BoltJS#readme",
"dependencies": {
"minimist": "^1.2.5",
"vscode-languageserver": "^6.1.1",
"vscode-languageserver-textdocument": "^1.0.1"
}
}