{
  "name": "booger",
  "version": "1.0.9",
  "description": "RPC",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./server": {
      "import": "./dist/server/index.js",
      "require": "./dist/server/index.js"
    }
  },
  "types": "dist/index.d.ts",
  "typesVersions": {
    "*": {
      "server": [
        "dist/server/index.d.ts"
      ]
    }
  },
  "scripts": {
    "build": "tsc",
    "test": "mocha",
    "coverage": "nyc npm run test",
    "docs": "docsify serve ./docs",
    "typedoc": "npx typedoc --options typedoc.json"
  },
  "repository": {
    "type": "git",
    "url": "https://gitlab.com/moskvandr/booger-pupa.git"
  },
  "homepage": "https://moskvandr.gitlab.io/booger-pupa/",
  "keywords": [
    "rpc"
  ],
  "private": false,
  "author": "Aleksander Moskvitin <moskvandr@gmail.com>",
  "license": "ISC",
  "files": ["dist", "src"],
  "devDependencies": {
    "@testdeck/mocha": "^0.3.3",
    "@types/chai": "^4.3.10",
    "@types/chai-arrays": "^2.0.3",
    "@types/chai-as-promised": "^7.1.8",
    "@types/cookie": "^0.5.4",
    "@types/node": "^20.9.2",
    "@types/sinon": "^17.0.1",
    "@types/uuid": "^9.0.7",
    "@types/ws": "^8.5.9",
    "@typescript-eslint/eslint-plugin": "^6.11.0",
    "@typescript-eslint/eslint-plugin-tslint": "^6.11.0",
    "@typescript-eslint/parser": "^6.11.0",
    "chai": "^4.3.10",
    "chai-arrays": "^2.2.0",
    "chai-as-promised": "^7.1.1",
    "chai-subset": "^1.6.0",
    "eslint": "^8.54.0",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-airbnb-typescript": "^17.1.0",
    "eslint-plugin-import": "^2.29.0",
    "eslint-plugin-no-null": "^1.0.2",
    "eslint-plugin-prefer-arrow": "^1.2.3",
    "eslint-plugin-unicorn": "^49.0.0",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "reflect-metadata": "^0.1.13",
    "sinon": "^17.0.1",
    "source-map-support": "^0.5.21",
    "ts-node": "^10.9.1",
    "typedoc": "^0.25.3",
    "typescript": "^5.2.2",
    "ws": "^8.*",
    "zod": "^3.22.4"
  },
  "peerDependencies": {
    "ws": "^8.*",
    "zod": "^3.*"
  },
  "peerDependenciesMeta": {
    "ws": {
      "optional": true
    },
    "zod": {
      "optional": true
    }
  },
  "dependencies": {
    "bson": "^6.2.0",
    "cookie": "^0.6.0",
    "eventemitter3": "^5.0.1",
    "uuid": "^9.0.1"
  },
  "nyc": {
    "include": [
      "src/*.ts",
      "src/**/*.ts"
    ],
    "exclude": [
      "typings",
      "**/*.d.ts",
      "**/*.spec.ts"
    ],
    "extension": [
      ".ts"
    ],
    "all": true
  }
}
