forked from d521bb85/cloudflare-workers-sse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "cloudflare-workers-sse",
"version": "2.0.0",
"description": "Elegant Server-Sent Events (SSE) Streaming for Cloudflare Workers.",
"keywords": [
"cloudflare",
"workers",
"sse",
"server-sent-events",
"streaming"
],
"author": "Vladimir Ivanenko <d521bb85@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/d521bb85/cloudflare-workers-sse",
"repository": {
"type": "git",
"url": "https://github.com/d521bb85/cloudflare-workers-sse.git"
},
"bugs": {
"url": "https://github.com/d521bb85/cloudflare-workers-sse/issues"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"install-hooks": "lefthook install",
"dev": "vitest",
"check": "biome check --write .",
"test": "vitest run",
"clean": "rimraf ./dist",
"build": "npm run clean && tsc --outDir ./dist",
"prepublishOnly": "npm run check && npm run test && npm run build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/vitest-pool-workers": "^0.6.12",
"@cloudflare/workers-types": "^4.20250204.0",
"@vitest/coverage-v8": "^2.1.9",
"lefthook": "^1.10.10",
"miniflare": "^3.20250129.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"vitest": "^2.1.9"
},
"dependencies": {
"type-fest": "^4.33.0"
}
}