-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 KB
/
package.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "jsonrpc-ws-proxy",
"version": "0.0.5",
"author": "Wylie Conlon <[email protected]>",
"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",
"js-yaml": "^3.13.1",
"minimist": "^1.2.0",
"ws": "^6.2.1",
"ioredis": "^4.27.6",
"dayjs": "^1.11.5",
"dotenv": "^16.0.2"
},
"devDependencies": {
"@types/node": "^10.14.8",
"@types/ws": "^6.0.1",
"javascript-typescript-langserver": "^2.11.3",
"rimraf": "^2.6.3",
"typescript": "^3.5.1",
"vscode-css-languageserver-bin": "^1.4.0",
"vscode-html-languageserver-bin": "^1.4.0"
},
"license": "ISC"
}