{
  "name": "@lodestar/light-client",
  "description": "A Typescript implementation of the Ethereum Consensus light client",
  "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"
    },
    "./utils": {
      "import": "./lib/utils/index.js"
    },
    "./validation": {
      "import": "./lib/validation.js"
    },
    "./spec": {
      "import": "./lib/spec/index.js"
    },
    "./transport": {
      "import": "./lib/transport/index.js"
    }
  },
  "types": "./lib/index.d.ts",
  "typesVersions": {
    "*": {
      "*": [
        "*",
        "lib/*",
        "lib/*/index"
      ]
    }
  },
  "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-light-client",
    "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:browsers": "yarn karma start karma.config.cjs",
    "test:unit": "LODESTAR_PRESET=minimal nyc --cache-dir .nyc_output/.cache -e .ts mocha 'test/unit/**/*.test.ts'",
    "check-readme": "typescript-docs-verifier"
  },
  "dependencies": {
    "@chainsafe/bls": "7.1.1",
    "@chainsafe/persistent-merkle-tree": "^0.4.2",
    "@chainsafe/ssz": "^0.9.2",
    "@lodestar/api": "^1.4.2",
    "@lodestar/config": "^1.4.2",
    "@lodestar/params": "^1.4.2",
    "@lodestar/types": "^1.4.2",
    "@lodestar/utils": "^1.4.2",
    "cross-fetch": "^3.1.4",
    "mitt": "^3.0.0",
    "strict-event-emitter-types": "^2.0.0"
  },
  "devDependencies": {
    "@chainsafe/as-sha256": "^0.3.1",
    "uint8arrays": "^4.0.2"
  },
  "keywords": [
    "ethereum",
    "eth-consensus",
    "beacon",
    "light-client",
    "blockchain"
  ]
}
