{
  "name": "@lodestar/reqresp",
  "description": "A Typescript implementation of the Ethereum Consensus ReqResp protocol",
  "license": "Apache-2.0",
  "author": "ChainSafe Systems",
  "homepage": "https://github.com/ChainSafe/lodestar#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com:ChainSafe/lodestar.git"
  },
  "bugs": {
    "url": "https://github.com/ChainSafe/lodestar/issues"
  },
  "version": "1.4.2",
  "type": "module",
  "exports": {
    ".": {
      "import": "./lib/index.js"
    },
    "./protocols": {
      "import": "./lib/protocols/index.js"
    },
    "./utils": {
      "import": "./lib/utils/index.js"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "*",
        "lib/*",
        "lib/*/index"
      ]
    }
  },
  "types": "./lib/index.d.ts",
  "files": [
    "lib/**/*.d.ts",
    "lib/**/*.js",
    "lib/**/*.js.map",
    "*.d.ts",
    "*.js"
  ],
  "scripts": {
    "clean": "rm -rf lib && rm -f *.tsbuildinfo",
    "build": "tsc -p tsconfig.build.json",
    "build:release": "yarn clean && yarn run build",
    "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
    "check-types": "tsc",
    "coverage": "codecov -F lodestar-api",
    "lint": "eslint --color --ext .ts src/ test/",
    "lint:fix": "yarn run lint --fix",
    "pretest": "yarn run check-types",
    "test": "yarn test:unit && yarn test:e2e",
    "test:unit": "nyc --cache-dir .nyc_output/.cache -e .ts mocha 'test/unit/**/*.test.ts'",
    "check-readme": "typescript-docs-verifier"
  },
  "dependencies": {
    "@chainsafe/snappy-stream": "^5.1.2",
    "@libp2p/interface-connection": "^3.0.2",
    "@libp2p/interface-peer-id": "^2.0.1",
    "@lodestar/config": "^1.4.2",
    "@lodestar/params": "^1.4.2",
    "@lodestar/types": "^1.4.2",
    "@lodestar/utils": "^1.4.2",
    "it-all": "^2.0.0",
    "snappyjs": "^0.7.0",
    "stream-to-it": "^0.2.0",
    "uint8arraylist": "^2.3.2",
    "varint": "^6.0.0"
  },
  "peerDependencies": {
    "libp2p": "0.41.0"
  },
  "keywords": [
    "ethereum",
    "eth-consensus",
    "beacon",
    "p2p",
    "reqresp",
    "blockchain"
  ]
}
