-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 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
{
"name": "@fastify/sse",
"version": "0.4.0",
"description": "Server-Sent Events plugin for Fastify",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "npm run test:unit && npm run test:typescript && npm run test:attw",
"test:unit": "node --test",
"test:typescript": "tsd",
"test:attw": "attw --pack .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"tsd": {
"directory": "test-types"
},
"keywords": [
"fastify",
"sse",
"server-sent-events",
"streaming",
"real-time"
],
"author": "Fastify Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fastify/sse.git"
},
"bugs": {
"url": "https://github.com/fastify/sse/issues"
},
"homepage": "https://github.com/fastify/sse#readme",
"peerDependencies": {
"fastify": "^5.x"
},
"dependencies": {
"fastify-plugin": "^5.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@types/node": "^25.0.3",
"eslint": "^9.0.0",
"fastify": "^5.0.0",
"neostandard": "^0.13.0",
"tsd": "^0.33.0",
"typescript": "~6.0.2",
"undici": "^7.15.0"
},
"engines": {
"node": ">=20"
}
}