@lodestar/validator 1.39.0-dev.c630c55067 → 1.39.0-dev.c9c20506d9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lodestar/validator",
|
|
3
|
-
"version": "1.39.0-dev.
|
|
3
|
+
"version": "1.39.0-dev.c9c20506d9",
|
|
4
4
|
"description": "A Typescript implementation of the validator client",
|
|
5
5
|
"author": "ChainSafe Systems",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -24,18 +24,18 @@
|
|
|
24
24
|
"scripts": {
|
|
25
25
|
"clean": "rm -rf lib && rm -f *.tsbuildinfo",
|
|
26
26
|
"build": "tsc -p tsconfig.build.json",
|
|
27
|
-
"build:release": "
|
|
28
|
-
"build:watch": "
|
|
27
|
+
"build:release": "pnpm clean && pnpm run build",
|
|
28
|
+
"build:watch": "pnpm run build --watch",
|
|
29
29
|
"check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
|
|
30
30
|
"check-types": "tsc",
|
|
31
31
|
"lint": "biome check src/ test/",
|
|
32
|
-
"lint:fix": "
|
|
32
|
+
"lint:fix": "pnpm run lint --write",
|
|
33
33
|
"test:unit": "vitest run --project unit --project unit-minimal",
|
|
34
|
-
"test": "
|
|
34
|
+
"test": "pnpm test:unit && pnpm test:e2e",
|
|
35
35
|
"test:spec": "vitest run --project spec-minimal",
|
|
36
36
|
"test:e2e": "vitest run --project e2e --project e2e-mainnet",
|
|
37
37
|
"download-spec-tests": "node --loader=ts-node/esm test/spec/downloadTests.ts",
|
|
38
|
-
"check-readme": "
|
|
38
|
+
"check-readme": "pnpm exec ts-node ../../scripts/check_readme.ts"
|
|
39
39
|
},
|
|
40
40
|
"repository": {
|
|
41
41
|
"type": "git",
|
|
@@ -50,19 +50,21 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@chainsafe/blst": "^2.2.0",
|
|
52
52
|
"@chainsafe/ssz": "^1.2.2",
|
|
53
|
-
"@lodestar/api": "1.39.0-dev.
|
|
54
|
-
"@lodestar/config": "1.39.0-dev.
|
|
55
|
-
"@lodestar/db": "1.39.0-dev.
|
|
56
|
-
"@lodestar/params": "1.39.0-dev.
|
|
57
|
-
"@lodestar/state-transition": "1.39.0-dev.
|
|
58
|
-
"@lodestar/types": "1.39.0-dev.
|
|
59
|
-
"@lodestar/utils": "1.39.0-dev.
|
|
53
|
+
"@lodestar/api": "^1.39.0-dev.c9c20506d9",
|
|
54
|
+
"@lodestar/config": "^1.39.0-dev.c9c20506d9",
|
|
55
|
+
"@lodestar/db": "^1.39.0-dev.c9c20506d9",
|
|
56
|
+
"@lodestar/params": "^1.39.0-dev.c9c20506d9",
|
|
57
|
+
"@lodestar/state-transition": "^1.39.0-dev.c9c20506d9",
|
|
58
|
+
"@lodestar/types": "^1.39.0-dev.c9c20506d9",
|
|
59
|
+
"@lodestar/utils": "^1.39.0-dev.c9c20506d9",
|
|
60
60
|
"strict-event-emitter-types": "^2.0.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@lodestar/
|
|
63
|
+
"@lodestar/logger": "^1.39.0-dev.c9c20506d9",
|
|
64
|
+
"@lodestar/spec-test-util": "^1.39.0-dev.c9c20506d9",
|
|
65
|
+
"@lodestar/test-utils": "^1.39.0-dev.c9c20506d9",
|
|
64
66
|
"bigint-buffer": "^1.1.5",
|
|
65
67
|
"rimraf": "^4.4.1"
|
|
66
68
|
},
|
|
67
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "f8c8a4000c8273cb032868c1b013530e60eea683"
|
|
68
70
|
}
|