forked from palantir/python-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 718 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "jsonrpc-ws-proxy",
"version": "0.0.5",
"author": "Wylie Conlon <wylieconlon@gmail.com>",
"description": "Creates a web socket proxy for any number of language server processes",
"keywords": [
"jsonrpc",
"json-rpc",
"languageserver",
"websocket"
],
"homepage": "https://github.com/wylieconlon/jsonrpc-ws-proxy",
"repository": "github:wylieconlon/jsonrpc-ws-proxy",
"bin": "dist/server.js",
"main": "dist/server.js",
"scripts": {
"prepare": "npm run clean && npm run build",
"watch": "tsc -w",
"clean": "rimraf dist",
"build": "tsc"
},
"dependencies": {
"@sourcegraph/vscode-ws-jsonrpc": "0.0.3-fork",
"ws": "^6.2.1"
},
"license": "ISC"
}