bolt/@boltlang/langserver/package.json
Sam Vervaeck 2b2d40c4f5 Major restructuring and update to code base
- Created a new VSCode Extension subproject
 - Created a new Bolt CLI subproject
 - Created a new Bolt Language Server subproject
 - Created a new Bolt Compiler subproject
 - Moved most existing code to the new Compiler subproject
 - Added a small language server
 - Laid the foundations for a Hindley-Milner type checker
 - Fixed some bugs and type errors in the compiler
 - Removed the unused testing infrastructure
 - Added an example parser test that should be run with Ava
2020-11-15 09:57:25 +01:00

34 lines
891 B
JSON

{
"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"
}
}