-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.52 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.52 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "ssekify",
"version": "0.1.6",
"description": "Framework-agnostic Server-Sent Events helper for Node.js with optional Redis Pub/Sub.",
"license": "MIT",
"author": "rockyshi1993@gmail.com",
"homepage": "https://github.com/vextjs/sseKify#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vextjs/sseKify.git"
},
"bugs": {
"url": "https://github.com/vextjs/sseKify/issues"
},
"type": "commonjs",
"main": "lib/index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js"
},
"./lib": "./lib/index.js",
"./lib/redisAdapter": "./lib/redisAdapter.js"
},
"files": [
"lib",
"index.d.ts",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"sse",
"server-sent-events",
"realtime",
"redis",
"pubsub"
],
"engines": {
"node": ">=16"
},
"scripts": {
"dev:express": "node examples/express/index.js",
"dev:bridge:basic": "node examples/express/bridge-basic.js",
"dev:bridge:lazy": "node examples/express/bridge-lazy.js",
"dev:koa": "node examples/koa/index.js",
"dev:fastify": "node examples/fastify/index.js",
"dev:hapi": "node examples/hapi/index.js",
"dev:egg": "egg-bin dev --workers=1 --baseDir=examples/egg",
"dev:multi": "node examples/express/multitenant.js",
"dev:cross:redis:a": "node examples/express/cross-redis-a.js",
"dev:cross:redis:b": "node examples/express/cross-redis-b.js",
"dev:cross:cb:a": "node examples/express/cross-callback-a.js",
"dev:cross:cb:b": "node examples/express/cross-callback-b.js",
"test": "vitest run",
"test:watch": "vitest"
},
"optionalDependencies": {
"ioredis": "^5.4.1"
},
"devDependencies": {
"@hapi/hapi": "^21.3.10",
"@koa/router": "^12.0.1",
"cors": "^2.8.5",
"egg": "^3.20.0",
"egg-bin": "^6.6.0",
"egg-cors": "^3.0.1",
"eventsource": "^4.0.0",
"express": "^5.1.0",
"fastify": "^5.0.0",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"node-fetch": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vitest": "^2.0.0"
}
}