mirror of
https://github.com/wylieconlon/jsonrpc-ws-proxy.git
synced 2025-05-18 07:46:38 +00:00
26 lines
578 B
JSON
26 lines
578 B
JSON
{
|
|
"name": "jsonrpc-ws-proxy",
|
|
"version": "0.0.1",
|
|
"author": "Wylie Conlon <wylieconlon@gmail.com>",
|
|
"bin": "dist/server.js",
|
|
"dependencies": {
|
|
"js-yaml": "^3.12.0"
|
|
},
|
|
"devDependencies": {
|
|
"@sourcegraph/vscode-ws-jsonrpc": "0.0.3-fork",
|
|
"@types/node": "^10.12.3",
|
|
"@types/ws": "^6.0.1",
|
|
"minimist": "^1.2.0",
|
|
"rimraf": "^2.6.2",
|
|
"typescript": "^3.0.1",
|
|
"ws": "^6.1.0"
|
|
},
|
|
"scripts": {
|
|
"prepare": "npm run clean && npm run build",
|
|
"watch": "tsc -w",
|
|
"clean": "rimraf dist",
|
|
"build": "tsc"
|
|
},
|
|
"license": "ISC"
|
|
}
|