rsocket-frames-ts
Version:
RSocket frame codec implemented with Uint8Array. Supports full spec, metadata extensions, and browser compatibility.
48 lines • 1.17 kB
JSON
{
"name": "rsocket-frames-ts",
"version": "1.0.6",
"description": "RSocket frame codec implemented with Uint8Array. Supports full spec, metadata extensions, and browser compatibility.",
"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.21",
"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",
"protocol",
"frame",
"uint8array",
"typescript",
"spec"
],
"files": [
"dist"
],
"dependencies": {
"bebyte": "^1.0.2"
},
"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"
}
}