UNPKG

fastify-uws

Version:

A performant HTTP and WebSocket server for Fastify with uWebSockets.

74 lines (73 loc) 1.91 kB
{ "name": "fastify-uws", "version": "1.0.1", "description": "A performant HTTP and WebSocket server for Fastify with uWebSockets.", "main": "./dist/fastify-uws.cjs", "module": "./dist/fastify-uws.js", "types": "./dist/src/fastify-uws.d.ts", "type": "module", "files": [ "dist" ], "exports": { ".": { "import": { "types": "./dist/src/fastify-uws.d.ts", "default": "./dist/fastify-uws.js" }, "require": { "types": "./dist/src/fastify-uws.d.ts", "default": "./dist/fastify-uws.cjs" } } }, "scripts": { "build": "vite build", "lint": "biome check --write ./src", "test": "vitest run", "e2e": "playwright test" }, "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.0.0", "eventemitter3": "^5.0.1", "fastify-plugin": "^5.0.1", "ipaddr.js": "^2.2.0", "it-pushable": "^3.2.3", "it-to-stream": "^1.0.0", "streamx": "^2.20.1", "uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.49.0" }, "devDependencies": { "@biomejs/biome": "^1.9.1", "@fastify/multipart": "^9.0.0", "@fastify/websocket": "^11.0.0", "@types/node": "^20.16.5", "@types/streamx": "^2.9.5", "@vitest/coverage-v8": "^2.1.1", "axios": "^1.7.7", "eventsource": "^2.0.2", "fastify": "^5.0.0", "form-data": "^4.0.0", "rollup-plugin-node-externals": "^7.1.3", "typescript": "^5.6.2", "vite": "^5.4.6", "vite-plugin-dts": "^4.2.1", "vitest": "^2.1.1", "ws": "^8.18.0" } }