mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-09 15:48:08 -05:00
93 lines
2.6 KiB
JSON
93 lines
2.6 KiB
JSON
{
|
|
"name": "@lodestar/prover",
|
|
"description": "A Typescript implementation of the Ethereum Consensus light client",
|
|
"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"
|
|
},
|
|
"./browser": {
|
|
"bun": "./src/browser/index.ts",
|
|
"types": "./lib/browser/index.d.ts",
|
|
"import": "./lib/browser/index.js"
|
|
}
|
|
},
|
|
"bin": {
|
|
"lodestar-prover": "lib/cli/index.js"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"lib",
|
|
"bin",
|
|
"!**/*.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 && yarn test:e2e",
|
|
"test:unit": "vitest run --project unit --project unit-minimal",
|
|
"test:browsers": "vitest run --project browser",
|
|
"test:e2e": "vitest run --project e2e --project e2e-mainnet",
|
|
"check-readme": "typescript-docs-verifier",
|
|
"generate-fixtures": "node --loader ts-node/esm scripts/generate_fixtures.ts"
|
|
},
|
|
"dependencies": {
|
|
"@ethereumjs/block": "^4.2.2",
|
|
"@ethereumjs/blockchain": "^6.2.2",
|
|
"@ethereumjs/common": "^3.1.2",
|
|
"@ethereumjs/rlp": "^4.0.1",
|
|
"@ethereumjs/trie": "^5.0.5",
|
|
"@ethereumjs/tx": "^4.1.2",
|
|
"@ethereumjs/util": "^8.0.6",
|
|
"@ethereumjs/vm": "^6.4.2",
|
|
"@lodestar/api": "^1.38.0",
|
|
"@lodestar/config": "^1.38.0",
|
|
"@lodestar/light-client": "^1.38.0",
|
|
"@lodestar/logger": "^1.38.0",
|
|
"@lodestar/params": "^1.38.0",
|
|
"@lodestar/types": "^1.38.0",
|
|
"@lodestar/utils": "^1.38.0",
|
|
"ethereum-cryptography": "^2.0.0",
|
|
"find-up": "^6.3.0",
|
|
"http-proxy": "^1.18.1",
|
|
"js-yaml": "^4.1.0",
|
|
"source-map-support": "^0.5.21",
|
|
"yargs": "^17.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@lodestar/test-utils": "^1.38.0",
|
|
"@types/http-proxy": "^1.17.10",
|
|
"@types/yargs": "^17.0.24",
|
|
"axios": "^1.3.4",
|
|
"ethers": "^6.7.0",
|
|
"web3": "^4.0.3"
|
|
},
|
|
"keywords": [
|
|
"ethereum",
|
|
"eth-consensus",
|
|
"beacon",
|
|
"api",
|
|
"blockchain",
|
|
"prover"
|
|
]
|
|
}
|