-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 850 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 850 Bytes
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
{
"name": "symple-server",
"version": "4.0.1",
"description": "Symple v4 realtime messaging and presence server",
"main": "./lib/symple.js",
"engines": {
"node": ">=22"
},
"scripts": {
"start": "node server.js",
"test": "node test/integration.mjs"
},
"dependencies": {
"debug": "^4.4.0",
"dotenv": "^17.2.0",
"redis": "^5.8.0",
"ws": "^8.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nilstate/symple-server.git"
},
"keywords": [
"symple",
"server",
"realtime",
"messaging",
"websocket",
"streaming",
"webrtc",
"chat"
],
"author": "Kam Low <auscaster@gmail.com> (https://0state.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nilstate/symple-server/issues"
},
"homepage": "https://0state.com/symple"
}