Files
lodestar/packages/validator/package.json
2025-12-10 11:44:00 -05:00

68 lines
2.0 KiB
JSON

{
"name": "@lodestar/validator",
"version": "1.38.0",
"description": "A Typescript implementation of the validator client",
"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": {
".": {
"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:release": "yarn clean && yarn run build",
"build:watch": "yarn run build --watch",
"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:unit": "vitest run --project unit --project unit-minimal",
"test": "yarn test:unit && yarn test:e2e",
"test:spec": "vitest run --project spec-minimal",
"test:e2e": "vitest run --project e2e --project e2e-mainnet",
"download-spec-tests": "node --loader=ts-node/esm test/spec/downloadTests.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/blst": "^2.2.0",
"@chainsafe/ssz": "^1.2.2",
"@lodestar/api": "^1.38.0",
"@lodestar/config": "^1.38.0",
"@lodestar/db": "^1.38.0",
"@lodestar/params": "^1.38.0",
"@lodestar/state-transition": "^1.38.0",
"@lodestar/types": "^1.38.0",
"@lodestar/utils": "^1.38.0",
"strict-event-emitter-types": "^2.0.0"
},
"devDependencies": {
"@lodestar/test-utils": "^1.38.0",
"bigint-buffer": "^1.1.5",
"rimraf": "^4.4.1"
}
}