-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 917 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
30
31
32
33
34
35
{
"name": "@forfuture/wserver",
"version": "0.2.0",
"description": "WebSocket Server",
"main": "dist/lib/index",
"bin": {
"wserver-connect": "bin/wserver-connect"
},
"typings": "typings.d.ts",
"scripts": {
"precommit": "npm run build && git add dist",
"prebuild": "rimraf dist",
"build": "tsc --project .",
"test:lint": "tslint --project .",
"test": "npm run test:lint"
},
"dependencies": {
"commander": "^12.0.0",
"debug": "^4.3.4",
"uuid": "^9.0.1",
"ws": "^3.3.2"
},
"optionalDependencies": {
"bufferutil": "^3.0.3",
"utf-8-validate": "^4.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/uuid": "^9.0.8",
"@types/ws": "^3.2.1",
"rimraf": "^5.0.5",
"tslint": "^5.8.0",
"typescript": "^5.3.3"
}
}