{
  "name": "@lodestar/types",
  "description": "Typescript types required for lodestar",
  "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"
    },
    "./allForks": {
      "import": "./lib/allForks/index.js"
    },
    "./altair": {
      "import": "./lib/altair/index.js"
    },
    "./capella": {
      "import": "./lib/capella/index.js"
    },
    "./bellatrix": {
      "import": "./lib/bellatrix/index.js"
    },
    "./eip4844": {
      "import": "./lib/eip4844/index.js"
    },
    "./phase0": {
      "import": "./lib/phase0/index.js"
    }
  },
  "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:lib:watch": "yarn run build:lib --watch",
    "build:release": "yarn clean && yarn build",
    "build:types:watch": "yarn run build:types --watch",
    "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
    "check-types": "tsc",
    "lint": "eslint --color --ext .ts src/ test/",
    "lint:fix": "yarn run lint --fix",
    "test:unit": "mocha 'test/**/*.test.ts'",
    "test:browsers": "yarn karma start karma.config.cjs",
    "check-readme": "typescript-docs-verifier"
  },
  "types": "lib/index.d.ts",
  "dependencies": {
    "@chainsafe/ssz": "^0.9.2",
    "@lodestar/params": "^1.4.2"
  },
  "keywords": [
    "ethereum",
    "eth-consensus",
    "beacon",
    "blockchain"
  ]
}
