-
-
Notifications
You must be signed in to change notification settings - Fork 438
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
50
51
52
53
54
55
{
"name": "@lodestar/fork-choice",
"description": "A Typescript implementation Ethereum Consensus fork choice",
"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.40.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": "pnpm run build --watch",
"build:release": "pnpm clean && pnpm run build",
"check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
"check-types": "tsc",
"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/ssz": "^1.2.2",
"@lodestar/config": "workspace:^",
"@lodestar/params": "workspace:^",
"@lodestar/state-transition": "workspace:^",
"@lodestar/types": "workspace:^",
"@lodestar/utils": "workspace:^"
},
"keywords": [
"ethereum",
"eth-consensus",
"beacon",
"blockchain"
]
}