{
"name": "@kixelated/web-transport-ws",
"author": "Luke Curley <kixelated@gmail.com>",
"version": "0.1.2",
"description": "WebTransport polyfill using WebSockets",
"type": "module",
"license": "(MIT OR Apache-2.0)",
"repository": "github:kixelated/web-transport",
"exports": {
".": "./src/index.ts"
},
"types": "./src/index.ts",
"files": [
"./src"
],
"scripts": {
"build": "rimraf dist && tsc && tsx scripts/package.ts",
"dev": "tsc --watch",
"check": "tsc --noEmit",
"example": "tsx examples/client.ts",
"release": "tsx scripts/release.ts"
},
"devDependencies": {
"typescript": "^5.9.2",
"ws": "^8.16.0",
"rimraf": "^6.0.1",
"@types/node": "^24.3.0",
"tsx": "^4.20.5"
},
"keywords": [
"webtransport",
"websocket",
"polyfill",
"quic",
"streams"
]
}