@jmealo/fastify-uws 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "@jmealo/fastify-uws",
3
+ "version": "1.0.4",
4
+ "description": "A performant HTTP and WebSocket server for Fastify with uWebSockets.",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "type": "module",
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "exports": {
16
+ ".": {
17
+ "import": {
18
+ "types": "./dist/index.d.ts",
19
+ "default": "./dist/index.js"
20
+ },
21
+ "require": {
22
+ "types": "./dist/index.d.ts",
23
+ "default": "./dist/index.cjs"
24
+ }
25
+ }
26
+ },
27
+ "scripts": {
28
+ "bench": "node benchmarks/compare/run.js",
29
+ "build": "vite build",
30
+ "check": "biome check --write",
31
+ "test": "vitest run",
32
+ "test:coverage": "vitest run --coverage"
33
+ },
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/jmealo/fastify-uws.git"
37
+ },
38
+ "keywords": [
39
+ "fastify",
40
+ "uws",
41
+ "uWebSockets"
42
+ ],
43
+ "author": "Vanilla IceCream",
44
+ "contributors": [
45
+ "Jeff Mealo"
46
+ ],
47
+ "license": "MIT",
48
+ "bugs": {
49
+ "url": "https://github.com/jmealo/fastify-uws/issues"
50
+ },
51
+ "homepage": "https://github.com/jmealo/fastify-uws#readme",
52
+ "dependencies": {
53
+ "@fastify/error": "^4.2.0",
54
+ "@types/ws": "^8.18.1",
55
+ "eventemitter3": "^5.0.1",
56
+ "fastify-plugin": "^5.1.0",
57
+ "ipaddr.js": "^2.3.0",
58
+ "streamx": "^2.23.0",
59
+ "uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.57.0"
60
+ },
61
+ "devDependencies": {
62
+ "@biomejs/biome": "^2.3.11",
63
+ "@fastify/multipart": "^9.3.0",
64
+ "@fastify/sse": "^0.4.0",
65
+ "@fastify/websocket": "^11.2.0",
66
+ "@types/node": "^24.10.9",
67
+ "@types/streamx": "^2.9.5",
68
+ "@vitest/coverage-v8": "^4.0.17",
69
+ "axios": "^1.13.2",
70
+ "eventsource": "^4.1.0",
71
+ "fastify": "^5.7.0",
72
+ "form-data": "^4.0.5",
73
+ "rollup-plugin-node-externals": "^8.1.2",
74
+ "typescript": "^5.9.3",
75
+ "vite": "^7.3.1",
76
+ "vite-plugin-dts": "^4.5.4",
77
+ "vitest": "^4.0.17",
78
+ "autocannon": "^8.0.0",
79
+ "ws": "^8.19.0"
80
+ }
81
+ }