fastify-uws
Version:
A performant HTTP and WebSocket server for Fastify with uWebSockets.
73 lines (72 loc) • 1.83 kB
JSON
{
"name": "fastify-uws",
"version": "2.0.0",
"description": "A performant HTTP and WebSocket server for Fastify with uWebSockets.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "vite build",
"check": "biome check --write",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/fastify-uws.git"
},
"keywords": [
"fastify",
"uws",
"uWebSockets"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/fastify-uws/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/fastify-uws#readme",
"dependencies": {
"@fastify/error": "^4.2.0",
"@types/ws": "^8.18.1",
"eventemitter3": "^5.0.1",
"fastify-plugin": "^5.1.0",
"ipaddr.js": "^2.3.0",
"streamx": "^2.23.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.57.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@fastify/multipart": "^9.3.0",
"@fastify/sse": "^0.4.0",
"@fastify/websocket": "^11.2.0",
"@types/node": "^24.10.9",
"@types/streamx": "^2.9.5",
"@vitest/coverage-v8": "^4.0.17",
"axios": "^1.13.2",
"eventsource": "^4.1.0",
"fastify": "^5.7.0",
"form-data": "^4.0.5",
"rollup-plugin-node-externals": "^8.1.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.17",
"ws": "^8.19.0"
}
}