UNPKG

rsocket-browser

Version:

The RSocket client implementation over websocket with browser compatibility based on Uint8Array

58 lines 1.36 kB
{ "name": "rsocket-browser", "version": "0.0.3-hotfix", "description": "The RSocket client implementation over websocket with browser compatibility based on Uint8Array", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "author": "fakeivchenko, CKATEPTb", "license": "LGPL-3.0-only", "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.15.24", "jest": "^29.7.0", "ts-jest": "^29.3.4", "ts-node": "^10.9.2", "tsup": "^8.5.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "keywords": [ "rsocket", "websocket", "client", "connection", "buffer", "reactor", "reactor-core", "reactive", "streams", "reactive-streams", "protocol", "frame", "uint8array", "typescript", "spec" ], "files": [ "dist" ], "dependencies": { "reactor-core-ts": "1.0.8-beta", "rsocket-frames-ts": "^1.0.4" }, "scripts": { "build": "pnpm run test && tsup src/index.ts", "start": "tsx src/start.ts", "start:watch": "tsx watch src/start.ts", "test": "jest --config jest.config.ts", "test:watch": "jest --config jest.config.ts --watch" } }