-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 791 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 791 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
{
"name": "brotli-stream-websocket",
"version": "1.0.0",
"description": "WebSocket streaming compression comparison: Brotli vs Gzip vs No Compression using Bun and Elysia",
"main": "index.ts",
"type": "module",
"scripts": {
"dev": "bun run --watch index.ts",
"start": "bun run index.ts",
"build": "bun build index.ts --outdir ./dist --target bun",
"clean": "rm -rf dist"
},
"keywords": [
"bun",
"elysia",
"websocket",
"brotli",
"gzip",
"compression",
"streaming",
"real-time"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"dependencies": {
"elysia": "^1.3.4",
"zstd-codec": "^0.1.5"
},
"engines": {
"bun": ">=1.0.0"
}
}