-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
{
"name": "@chainsafe/lodestar-z",
"version": "0.1.0",
"description": "Lodestar-z NAPI bindings",
"files": [
"bindings/src/",
"zig-out/lib/"
],
"type": "module",
"exports": {
".": {
"import": "./bindings/src/index.js",
"types": "./bindings/src/index.d.ts"
},
"./blst": {
"import": "./bindings/src/blst.js",
"types": "./bindings/src/blst.d.ts"
},
"./pubkeys": {
"import": "./bindings/src/pubkeys.js",
"types": "./bindings/src/pubkeys.d.ts"
}
},
"scripts": {
"prepare": "zig build build-lib:bindings -Doptimize=ReleaseFast",
"lint": "biome check",
"test": "NODE_OPTIONS='--expose-gc' vitest run bindings/test/*.test.ts"
},
"keywords": [],
"author": "ChainSafe Systems",
"license": "MIT",
"packageManager": "pnpm@10.24.0",
"zapi": {
"binaryName": "bindings",
"step": "build-lib:bindings",
"targets": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc"
]
},
"dependencies": {
"@chainsafe/zapi": "0.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@chainsafe/benchmark": "^2.0.1",
"@chainsafe/biomejs-config": "^1.0.0",
"@chainsafe/blst": "^2.2.0",
"@lodestar/config": "^1.39.1",
"@lodestar/era": "^1.39.1",
"@lodestar/state-transition": "^1.39.1",
"@lodestar/types": "^1.39.1",
"@types/node": "^25.0.9",
"vitest": "^4.0.17"
}
}