mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-08 23:28:10 -05:00
66 lines
1.7 KiB
JSON
66 lines
1.7 KiB
JSON
{
|
|
"name": "@lodestar/flare",
|
|
"version": "1.38.0",
|
|
"description": "Beacon chain debugging tool",
|
|
"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"
|
|
],
|
|
"bin": {
|
|
"flare": "lib/index.js"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf lib && rm -f *.tsbuildinfo",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"build:release": "yarn run clean && yarn run build",
|
|
"build:watch": "yarn run build --watch",
|
|
"check-build": "node -e \"(async function() { await import('./lib/index.js') })()\" flare --help",
|
|
"check-types": "tsc",
|
|
"lint": "biome check src/",
|
|
"lint:fix": "yarn run lint --write",
|
|
"test": "yarn test:unit",
|
|
"test:unit": "vitest run --project unit --project unit-minimal",
|
|
"check-readme": "typescript-docs-verifier"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com:ChainSafe/lodestar.git"
|
|
},
|
|
"keywords": [
|
|
"ethereum",
|
|
"eth-consensus",
|
|
"beacon",
|
|
"blockchain"
|
|
],
|
|
"dependencies": {
|
|
"@chainsafe/bls-keygen": "^0.4.0",
|
|
"@chainsafe/blst": "^2.2.0",
|
|
"@lodestar/api": "^1.38.0",
|
|
"@lodestar/config": "^1.38.0",
|
|
"@lodestar/params": "^1.38.0",
|
|
"@lodestar/state-transition": "^1.38.0",
|
|
"@lodestar/types": "^1.38.0",
|
|
"@lodestar/utils": "^1.38.0",
|
|
"source-map-support": "^0.5.21",
|
|
"yargs": "^17.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/yargs": "^17.0.24"
|
|
}
|
|
}
|