-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 969 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 969 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
40
41
42
43
44
45
{
"name": "@prsm/realtime",
"version": "1.0.5",
"description": "Distributed WebSocket framework with Redis-backed rooms, records, presence, channels, collections, and persistence",
"type": "module",
"license": "ISC",
"exports": {
".": "./src/index.js",
"./client": "./src/client/index.js",
"./sqlite": "./src/adapters/sqlite.js",
"./postgres": "./src/adapters/postgres.js"
},
"files": [
"src"
],
"scripts": {
"test": "vitest run --reporter verbose"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@prsm/log": "^1.0.1",
"eventemitter3": "^5.0.1",
"fast-json-patch": "^3.1.1",
"ioredis": "^5.6.1",
"ws": "^8.18.0"
},
"peerDependencies": {
"pg": "^8.0.0",
"sqlite3": "^5.0.0"
},
"peerDependenciesMeta": {
"sqlite3": {
"optional": true
},
"pg": {
"optional": true
}
},
"devDependencies": {
"ioredis": "^5.6.1",
"vitest": "^3.2.4"
}
}