-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "state-transition-z",
"module": "src/index.ts",
"type": "module",
"dependencies": {
"@chainsafe/bun-ffi-z": "../../bun-ffi-z"
},
"devDependencies": {
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@biomejs/biome": "^1.9.3",
"@chainsafe/benchmark": "^1.2.3",
"@chainsafe/as-sha256": "^0.5.0",
"@lodestar/params": "^1.27.0",
"@lodestar/state-transition": "^1.27.0",
"@lodestar/utils": "^1.27.0",
"tar": "^7.4.0",
"js-yaml": "^4.1.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"build": "bun ./node_modules/.bin/bun-ffi-z build --zig-cwd '..'",
"test:unit": "bun test test/unit",
"lint": "biome check",
"benchmark": "bun benchmark:files 'test/perf/*.test.ts'",
"benchmark:files": "bun ./node_modules/.bin/benchmark --config .benchrc.yaml --defaultBranch main",
"lint:fix": "yarn lint --write"
},
"bun-ffi-z": {
"name": "state-transition-z",
"targets": [
"linux-x64-gnu",
"linux-arm64-gnu",
"linux-x64-musl",
"linux-arm64-musl",
"darwin-x64",
"darwin-arm64"
],
"optimize": "ReleaseSafe",
"zigCwd": "zig"
}
}