UNPKG

reactor-core-ts

Version:

The Reactive-Streams based implementation of Reactor-Core

52 lines 1.22 kB
{ "name": "reactor-core-ts", "version": "1.0.9-beta", "description": "The Reactive-Streams based implementation of Reactor-Core", "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" } }, "repository": { "type": "git", "url": "https://github.com/CKATEPTb/reactor-core-ts.git" }, "keywords": [ "reactive-streams", "reactor-core", "reactive", "rxjs", "rsocket", "spring", "java", "typescript", "backpressure" ], "author": "CKATEPTb", "license": "LGPL-3.0-only", "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.15.17", "jest": "^29.7.0", "ts-jest": "^29.3.2", "ts-node": "^10.9.2", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "files": [ "dist" ], "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" } }