forked from ChainSafe/lodestar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.47 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.47 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@lodestar/types",
"description": "Typescript types required 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.39.1",
"type": "module",
"exports": {
".": {
"bun": "./src/index.ts",
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
},
"./altair": {
"bun": "./src/altair/index.ts",
"types": "./lib/altair/index.d.ts",
"import": "./lib/altair/index.js"
},
"./capella": {
"bun": "./src/capella/index.ts",
"types": "./lib/capella/index.d.ts",
"import": "./lib/capella/index.js"
},
"./bellatrix": {
"bun": "./src/bellatrix/index.ts",
"types": "./lib/bellatrix/index.d.ts",
"import": "./lib/bellatrix/index.js"
},
"./deneb": {
"bun": "./src/deneb/index.ts",
"types": "./lib/deneb/index.d.ts",
"import": "./lib/deneb/index.js"
},
"./electra": {
"bun": "./src/electra/index.ts",
"types": "./lib/electra/index.d.ts",
"import": "./lib/electra/index.js"
},
"./fulu": {
"bun": "./src/fulu/index.ts",
"types": "./lib/fulu/index.d.ts",
"import": "./lib/fulu/index.js"
},
"./phase0": {
"bun": "./src/phase0/index.ts",
"types": "./lib/phase0/index.d.ts",
"import": "./lib/phase0/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 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",
"test:browsers": "vitest run --project browser",
"check-readme": "pnpm exec ts-node ../../scripts/check_readme.ts"
},
"types": "lib/index.d.ts",
"dependencies": {
"@chainsafe/ssz": "^1.2.2",
"@lodestar/params": "workspace:^",
"ethereum-cryptography": "^2.0.0"
},
"keywords": [
"ethereum",
"eth-consensus",
"beacon",
"blockchain"
]
}