{
  "name": "@lodestar/config",
  "version": "1.4.2",
  "description": "Chain configuration required for lodestar",
  "author": "ChainSafe Systems",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/ChainSafe/lodestar/issues"
  },
  "homepage": "https://github.com/ChainSafe/lodestar#readme",
  "type": "module",
  "exports": {
    ".": {
      "import": "./lib/index.js"
    },
    "./default": {
      "import": "./lib/default.js"
    },
    "./networks": {
      "import": "./lib/networks.js"
    },
    "./presets": {
      "import": "./lib/presets.js"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "*",
        "lib/*",
        "lib/*/index"
      ]
    }
  },
  "types": "lib/index.d.ts",
  "files": [
    "lib/**/*.js",
    "lib/**/*.js.map",
    "lib/**/*.d.ts",
    "*.d.ts",
    "*.js"
  ],
  "scripts": {
    "clean": "rm -rf lib && rm -f *.tsbuildinfo",
    "build": "tsc -p tsconfig.build.json",
    "build:release": "yarn run clean && yarn run build",
    "build:types:watch": "yarn run build:types --watch",
    "build:lib:watch": "yarn run build:lib --watch",
    "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
    "check-types": "tsc",
    "lint": "eslint --color --ext .ts src/",
    "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'",
    "check-readme": "typescript-docs-verifier"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com:ChainSafe/lodestar.git"
  },
  "keywords": [
    "ethereum",
    "eth-consensus",
    "beacon",
    "blockchain"
  ],
  "dependencies": {
    "@chainsafe/ssz": "^0.9.2",
    "@lodestar/params": "^1.4.2",
    "@lodestar/types": "^1.4.2"
  }
}
