forked from mesafoundation/mesa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
41
42
{
"name": "@cryb/mesa",
"version": "1.5.7",
"description": "A scalable, modern & robust WebSocket wrapper",
"main": "lib/index.js",
"repository": "https://github.com/crybapp/mesa.git",
"author": "William Gibson <william@tired.io>",
"license": "MIT",
"scripts": {
"start": "node examples/server",
"dev": "tsc-watch --compiler typescript/bin/tsc --onSuccess \"node examples/server\"",
"build": "tsc",
"test": "jest",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"prepare": "npm run build"
},
"files": [
"docs/**/*",
"lib/**/*"
],
"dependencies": {
"death": "^1.1.0",
"ioredis": "^4.19.2",
"ws": "^7.4.0"
},
"devDependencies": {
"@types/ioredis": "^4.17.8",
"@types/node": "^14.14.8",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"tsc-watch": "^4.2.9",
"typescript": "^4.0.5"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
}
}