{
  "name": "@chainsafe/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": "0.39.0",
  "type": "module",
  "exports": "./lib/index.js",
  "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:typedocs": "typedoc --exclude src/index.ts --out typedocs src",
    "build:release": "yarn clean && yarn run build && yarn run build:typedocs",
    "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: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/lodestar-api": "^0.39.0",
    "@chainsafe/lodestar-config": "^0.39.0",
    "@chainsafe/lodestar-params": "^0.39.0",
    "@chainsafe/lodestar-types": "^0.39.0",
    "@chainsafe/lodestar-utils": "^0.39.0",
    "@chainsafe/persistent-merkle-tree": "^0.4.2",
    "@chainsafe/ssz": "^0.9.2",
    "cross-fetch": "^3.1.4",
    "mitt": "^3.0.0"
  },
  "keywords": [
    "ethereum",
    "eth-consensus",
    "beacon",
    "light-client",
    "blockchain"
  ],
  "gitHead": "55e7ca2d544bd786fe287a1254b95a0d784d553e"
}
