-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.12 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
{
"name": "ws-tether",
"version": "1.0.0",
"description": "Implement Remote Procedure Call in Node.js (beta)",
"type": "module",
"main": "./ws-tether.mjs",
"exports": {
"./*" : "./*" ,
"." : "./ws-tether.mjs" ,
"./ws-tether.mjs" : "./ws-tether.mjs" ,
"./ws-tether" : "./ws-tether.mjs" ,
"./hook.mjs" : "./hook.mjs" ,
"./hook" : "./hook.mjs" ,
"./ws.mjs" : "./ws.mjs" ,
"./ws" : "./ws.mjs"
},
"bin": {
"start-http-middleware-service": "bin/start-http-middleware-service.mjs",
"start-ws-service": "bin/start-ws-service.mjs",
"start-service": "bin/start-service.mjs"
},
"scripts": {
"end": ""
},
"author": "Atsushi Oka (Kombucha.js)",
"license": "ISC",
"dependencies": {
"ws": "^8.13.0"
}
}