-
-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.07 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.07 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
{
"name": "@lodestar/config",
"version": "1.40.0",
"description": "Chain configuration required for lodestar",
"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"
},
"./default": {
"bun": "./src/default.ts",
"types": "./lib/default.d.ts",
"import": "./lib/default.js"
},
"./networks": {
"bun": "./src/networks.ts",
"types": "./lib/networks.d.ts",
"import": "./lib/networks.js"
},
"./configs": {
"bun": "./src/configs.ts",
"types": "./lib/configs.d.ts",
"import": "./lib/configs.js"
},
"./test-utils": {
"bun": "./src/testUtils/index.ts",
"types": "./lib/testUtils/index.d.ts",
"import": "./lib/testUtils/index.js"
}
},
"files": [
"src",
"lib",
"!**/*.tsbuildinfo"
],
"scripts": {
"clean": "rm -rf lib && rm -f *.tsbuildinfo",
"build": "tsgo -p tsconfig.build.json",
"build:release": "pnpm run clean && pnpm run build",
"build:watch": "pnpm run build --watch",
"check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
"check-types": "tsgo",
"lint": "biome check src/",
"lint:fix": "pnpm run lint --write",
"test": "pnpm test:unit",
"test:unit": "pnpm vitest run --project unit --project unit-minimal",
"check-readme": "pnpm exec ts-node ../../scripts/check_readme.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com:ChainSafe/lodestar.git"
},
"keywords": [
"ethereum",
"eth-consensus",
"beacon",
"blockchain"
],
"dependencies": {
"@chainsafe/as-sha256": "^1.2.0",
"@chainsafe/ssz": "^1.2.2",
"@lodestar/params": "workspace:^",
"@lodestar/types": "workspace:^",
"@lodestar/utils": "workspace:^",
"@lodestar/spec-test-util": "workspace:^"
}
}