{
  "name": "@chainsafe/lodestar",
  "version": "1.4.2",
  "description": "Command line interface for lodestar",
  "author": "ChainSafe Systems",
  "license": "LGPL-3.0",
  "bugs": {
    "url": "https://github.com/ChainSafe/lodestar/issues"
  },
  "homepage": "https://github.com/ChainSafe/lodestar#readme",
  "type": "module",
  "exports": "./lib/index.js",
  "files": [
    "lib/**/*.d.ts",
    "lib/**/*.js",
    "lib/**/*.js.map",
    ".git-data.json"
  ],
  "bin": {
    "lodestar": "lib/index.js"
  },
  "scripts": {
    "clean": "rm -rf lib && rm -f *.tsbuildinfo",
    "build": "tsc -p tsconfig.build.json && yarn write-git-data",
    "build:release": "yarn clean && yarn run build",
    "build:lib:watch": "yarn run build:lib --watch",
    "build:types:watch": "yarn run build:types --watch",
    "build:refdocs": "ts-node --esm ./docsgen/index.ts docs/cli.md",
    "write-git-data": "node lib/util/gitData/writeGitData.js",
    "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\" lodestar --help",
    "check-types": "tsc",
    "lint": "eslint --color --ext .ts src/ test/",
    "lint:fix": "yarn run lint --fix",
    "pretest": "yarn run check-types",
    "test:unit": "nyc --cache-dir .nyc_output/.cache -e .ts mocha 'test/unit/**/*.test.ts'",
    "test:e2e": "mocha --timeout 30000 'test/e2e/**/*.test.ts'",
    "test:sim:multifork": "LODESTAR_PRESET=minimal ts-node --esm test/sim/multi_fork.test.ts",
    "test:sim:endpoints": "LODESTAR_PRESET=minimal ts-node --esm test/sim/endpoints.test.ts",
    "test:sim:eip4844": "LODESTAR_PRESET=minimal ts-node --esm test/sim/eip4844.test.ts",
    "test:sim:backup_eth_provider": "LODESTAR_PRESET=minimal ts-node --esm test/sim/backup_eth_provider.test.ts",
    "test": "yarn test:unit && yarn test:e2e",
    "coverage": "codecov -F lodestar",
    "check-readme": "typescript-docs-verifier"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com:ChainSafe/lodestar.git"
  },
  "keywords": [
    "ethereum",
    "eth-consensus",
    "beacon",
    "blockchain"
  ],
  "dependencies": {
    "@chainsafe/as-sha256": "^0.3.1",
    "@chainsafe/bls": "7.1.1",
    "@chainsafe/bls-keygen": "^0.3.0",
    "@chainsafe/bls-keystore": "^2.0.0",
    "@chainsafe/blst": "^0.2.8",
    "@chainsafe/discv5": "^3.0.0",
    "@chainsafe/ssz": "^0.9.2",
    "@libp2p/peer-id-factory": "^2.0.1",
    "@lodestar/api": "^1.4.2",
    "@lodestar/beacon-node": "^1.4.2",
    "@lodestar/config": "^1.4.2",
    "@lodestar/db": "^1.4.2",
    "@lodestar/light-client": "^1.4.2",
    "@lodestar/params": "^1.4.2",
    "@lodestar/state-transition": "^1.4.2",
    "@lodestar/types": "^1.4.2",
    "@lodestar/utils": "^1.4.2",
    "@lodestar/validator": "^1.4.2",
    "@multiformats/multiaddr": "^11.0.0",
    "@types/lockfile": "^1.0.1",
    "bip39": "^3.0.2",
    "deepmerge": "^4.2.2",
    "ethers": "^5.0.2",
    "expand-tilde": "^2.0.2",
    "find-up": "^5.0.0",
    "got": "^12.1.0",
    "inquirer": "^8.1.3",
    "js-yaml": "^3.14.0",
    "lockfile": "^1.0.4",
    "lodash": "^4.17.15",
    "prom-client": "^14.1.0",
    "rimraf": "^3.0.0",
    "source-map-support": "^0.5.19",
    "uint8arrays": "^3.1.0",
    "uuidv4": "^6.1.1",
    "winston": "^3.3.3",
    "winston-daily-rotate-file": "^4.5.5",
    "winston-transport": "^4.3.0",
    "yargs": "^16.1.0"
  },
  "devDependencies": {
    "@types/expand-tilde": "^2.0.0",
    "@types/got": "^9.6.11",
    "@types/inquirer": "^8.2.3",
    "@types/js-yaml": "^3.12.5",
    "@types/lodash": "^4.14.157",
    "@types/rimraf": "^3.0.2",
    "@types/yargs": "^15.0.9"
  }
}
