{ "name": "@lodestar/era", "description": "Era file handling module 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.38.0", "type": "module", "exports": { ".": { "bun": "./src/index.ts", "types": "./lib/index.d.ts", "import": "./lib/index.js" } }, "files": [ "src", "lib", "!**/*.tsbuildinfo" ], "scripts": { "clean": "rm -rf lib && rm -f *.tsbuildinfo", "build": "tsc -p tsconfig.build.json", "build:watch": "yarn run build --watch", "build:release": "yarn clean && yarn run build", "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"", "check-types": "tsc", "lint": "biome check src/ test/", "lint:fix": "yarn run lint --write", "test": "yarn test:unit", "test:unit": "vitest run --project unit --project unit-minimal", "check-readme": "typescript-docs-verifier" }, "dependencies": { "@chainsafe/blst": "^2.2.0", "@lodestar/config": "^1.38.0", "@lodestar/params": "^1.38.0", "@lodestar/reqresp": "^1.38.0", "@lodestar/types": "^1.38.0", "uint8arraylist": "^2.4.7" } }