@lodestar/validator 1.39.0-dev.c630c55067 → 1.39.0-dev.ca786a9fc3

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.
Files changed (1) hide show
  1. 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.c630c55067",
3
+ "version": "1.39.0-dev.ca786a9fc3",
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": "yarn clean && yarn run build",
28
- "build:watch": "yarn run 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": "yarn run lint --write",
32
+ "lint:fix": "pnpm run lint --write",
33
33
  "test:unit": "vitest run --project unit --project unit-minimal",
34
- "test": "yarn test:unit && yarn test:e2e",
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": "typescript-docs-verifier"
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.c630c55067",
54
- "@lodestar/config": "1.39.0-dev.c630c55067",
55
- "@lodestar/db": "1.39.0-dev.c630c55067",
56
- "@lodestar/params": "1.39.0-dev.c630c55067",
57
- "@lodestar/state-transition": "1.39.0-dev.c630c55067",
58
- "@lodestar/types": "1.39.0-dev.c630c55067",
59
- "@lodestar/utils": "1.39.0-dev.c630c55067",
53
+ "@lodestar/api": "^1.39.0-dev.ca786a9fc3",
54
+ "@lodestar/config": "^1.39.0-dev.ca786a9fc3",
55
+ "@lodestar/db": "^1.39.0-dev.ca786a9fc3",
56
+ "@lodestar/params": "^1.39.0-dev.ca786a9fc3",
57
+ "@lodestar/state-transition": "^1.39.0-dev.ca786a9fc3",
58
+ "@lodestar/types": "^1.39.0-dev.ca786a9fc3",
59
+ "@lodestar/utils": "^1.39.0-dev.ca786a9fc3",
60
60
  "strict-event-emitter-types": "^2.0.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@lodestar/test-utils": "1.39.0-dev.c630c55067",
63
+ "@lodestar/logger": "^1.39.0-dev.ca786a9fc3",
64
+ "@lodestar/spec-test-util": "^1.39.0-dev.ca786a9fc3",
65
+ "@lodestar/test-utils": "^1.39.0-dev.ca786a9fc3",
64
66
  "bigint-buffer": "^1.1.5",
65
67
  "rimraf": "^4.4.1"
66
68
  },
67
- "gitHead": "ead055ee9d3179f198a25ba5c984e8509dea31d7"
69
+ "gitHead": "ec0c91055ac75daca7bcebe5ed4b6f85ee1260ce"
68
70
  }