{
  "name": "pubsub-to-rpc-api",
  "version": "9.0.0",
  "description": "Converting publish-subscribe/IPC-like interaction model into the request/response model powered by RxJS",
  "author": "Vladimir Yakovlev <dev.vladimir.y@gmail.com> (https://github.com/vladimiry)",
  "license": "MIT",
  "repository": "git@github.com:vladimiry/pubsub-to-rpc-api.git",
  "engines": {
    "node": "20 || >=22"
  },
  "keywords": [
    "pubsub",
    "rxjs",
    "stream",
    "api"
  ],
  "main": "./lib/index.js",
  "scripts": {
    "example": "npm-run-all lib example:run",
    "example:compile": "tsc --listEmittedFiles -p ./src/example/tsconfig.json --outDir ./output",
    "example:compile:watch": "tsc -w -p ./src/example/tsconfig.json --outDir ./output",
    "example:run": "cross-env TS_NODE_PROJECT=./src/example/tsconfig.json ts-node -r tsconfig-paths/register ./src/example/readme",
    "example:test": "cross-env TS_NODE_PROJECT=./src/example/tsconfig.json ava --verbose \"./src/example/**/*.{spec,test}.ts\"",
    "lib": "npm-run-all lib:clean lint lib:compile test",
    "lib:clean": "rimraf ./lib",
    "lib:compile:1": "ts-patch install",
    "lib:compile:2": "esbuild node_modules/serialize-error/index.js  --bundle --platform=node --outfile=lib/bundled_modules/serialize-error/index.js",
    "lib:compile:3": "tsc --listEmittedFiles -p ./src/lib/tsconfig.json",
    "lib:compile": "npm-run-all lib:compile:1 lib:compile:2 lib:compile:3",
    "lint": "npm-run-all lint:lib lint:test lint:example",
    "lint:example": "tslint -p ./src/example/tsconfig.json -c ./src/example/tslint.json \"./src/example/**/*.ts\"",
    "lint:lib": "tslint -p ./src/lib/tsconfig.json -c ./tslint.json \"./src/{lib,@types}/**/*.ts\"",
    "lint:test": "tslint -p ./test/tsconfig.json -c ./test/tslint.json \"./test/**/*.ts\"",
    "output:clean": "rimraf ./output",
    "test": "cross-env TS_NODE_PROJECT=./test/tsconfig.json ava --verbose \"./test/**/*.{spec,test}.ts\""
  },
  "ava": {
    "extensions": [
      "js",
      "ts"
    ],
    "files": [
      "./test/**/*.{spec,test}.{ts,js}",
      "./src/example/**/*.{spec,test}.{ts,js}"
    ],
    "require": [
      "ts-node/register",
      "tsconfig-paths/register"
    ],
    "timeout": "120s",
    "verbose": true
  },
  "dependencies": {
    "jsan": "^3.1.14",
    "msgpackr": "^1.11.5",
    "pure-uuid": "^1.8.1",
    "rxjs": "^7.8.2",
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@types/bluebird": "^3.5.36",
    "@types/jsan": "^3.1.2",
    "@types/node": "^18.7.16",
    "@types/sinon": "^17.0.4",
    "@types/tcp-ping": "^0.1.6",
    "ava": "^4.3.3",
    "cross-env": "^7.0.3",
    "esbuild": "^0.25.8",
    "format-imports": "^4.0.7",
    "maths.ts": "^0.0.8",
    "npm-run-all2": "8.0.4",
    "rewiremock": "^3.14.6",
    "rimraf": "^6.0.1",
    "serialize-error": "^12.0.0",
    "sinon": "^21.0.0",
    "tcp-ping": "^0.1.1",
    "ts-node": "^10.9.1",
    "ts-patch": "^3.3.0",
    "tsconfig-paths": "^4.1.0",
    "tslint": "^6.1.3",
    "tslint-consistent-codestyle": "^1.16.0",
    "tslint-eslint-rules": "^5.4.0",
    "tslint-rules-bunch": "^1.0.0",
    "typescript": "^5.8.3",
    "typescript-transform-paths": "^3.5.5"
  },
  "resolutions": {
    "*/**/tslib": "^2.x",
    "*/**/typescript": "^5.x"
  }
}
