-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.3 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
{
"name": "event-stream-parser",
"version": "1.0.2",
"description": "Server-Sent Events (SSE) Parser / Event Stream Parser implementation following HTML Standard",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./v1": {
"types": "./dist/v1/index.d.ts",
"default": "./dist/v1/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/",
"format": "biome format src/ --write",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"sse",
"server-sent-events",
"parser",
"stream",
"streaming",
"eventsource"
],
"author": "Kenta Yamaguchi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KEY60228/event-stream-parser"
},
"bugs": {
"url": "https://github.com/KEY60228/event-stream-parser/issues"
},
"homepage": "https://github.com/KEY60228/event-stream-parser#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.10",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}