-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 KB
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
{
"name": "@forfuture/wserver",
"version": "0.3.3",
"description": "WebSocket Server",
"main": "dist/lib/index",
"bin": {
"wserver-connect": "bin/wserver-connect"
},
"typings": "typings.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --project .",
"format": "prettier --write '{lib,script,types}/**/*.{js,ts}' '*.{js,json,md,yml}'",
"test": "npm run test:format",
"test:format": "prettier --check '{lib,script,types}/**/*.{js,ts}' '*.{js,json,md,yml}'"
},
"dependencies": {
"commander": "^14.0.2",
"debug": "^4.4.3",
"uuid": "^13.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.19.0",
"@types/ws": "^8.18.1",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.9"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "lf",
"tabWidth": 4,
"trailingComma": "all"
}
}