forked from clams-tech/ln-ws-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 901 Bytes
/
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
{
"name": "lnsocket-proxy",
"version": "0.0.5",
"description": "A simple WebSocket server to proxy lnsocket frames to Core Lightning nodes over the Lightning Network",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node dist/index.js",
"build": "tsc --project ./"
},
"author": "Aaron Barnard",
"license": "MIT",
"dependencies": {
"rate-limiter-flexible": "^2.3.8",
"rxjs": "^7.5.6",
"socks": "^2.7.1",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.10.0"
},
"devDependencies": {
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"typescript": "^4.7.4"
}
}