-
-
Notifications
You must be signed in to change notification settings - Fork 465
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"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.44.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": "tsgo -p tsconfig.build.json",
"build:watch": "pnpm run build --watch",
"build:release": "pnpm clean && pnpm run build",
"check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
"check-types": "tsgo",
"lint": "biome check src/ test/",
"lint:fix": "pnpm run lint --write",
"test": "pnpm test:unit",
"test:unit": "vitest run --project unit --project unit-minimal",
"check-readme": "pnpm exec ts-node ../../scripts/check_readme.ts"
},
"dependencies": {
"@chainsafe/blst": "^2.2.0",
"@lodestar/config": "workspace:^",
"@lodestar/params": "workspace:^",
"@lodestar/reqresp": "workspace:^",
"@lodestar/types": "workspace:^",
"@lodestar/utils": "workspace:^"
}
}