@lodestar/api 1.39.0-dev.86298a43e6 → 1.39.0-dev.90493ebb47

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -29,7 +29,7 @@ console.log("The validator balance is: ", validator.balance);
29
29
  ## Prerequisites
30
30
 
31
31
  - [NodeJS](https://nodejs.org/) (LTS)
32
- - [Yarn](https://classic.yarnpkg.com/lang/en/)
32
+ - [pnpm](https://pnpm.io/)
33
33
 
34
34
  ## What you need
35
35
 
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "bugs": {
12
12
  "url": "https://github.com/ChainSafe/lodestar/issues"
13
13
  },
14
- "version": "1.39.0-dev.86298a43e6",
14
+ "version": "1.39.0-dev.90493ebb47",
15
15
  "type": "module",
16
16
  "exports": {
17
17
  ".": {
@@ -63,23 +63,23 @@
63
63
  "scripts": {
64
64
  "clean": "rm -rf lib && rm -f *.tsbuildinfo",
65
65
  "build": "tsc -p tsconfig.build.json",
66
- "build:watch": "yarn run build --watch",
67
- "build:release": "yarn clean && yarn run build",
66
+ "build:watch": "pnpm run build --watch",
67
+ "build:release": "pnpm clean && pnpm run build",
68
68
  "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
69
69
  "check-types": "tsc",
70
70
  "lint": "biome check src/ test/",
71
- "lint:fix": "yarn run lint --write",
72
- "test": "yarn test:unit",
71
+ "lint:fix": "pnpm run lint --write",
72
+ "test": "pnpm test:unit",
73
73
  "test:unit": "vitest run --project unit --project unit-minimal",
74
- "check-readme": "typescript-docs-verifier"
74
+ "check-readme": "pnpm exec ts-node ../../scripts/check_readme.ts"
75
75
  },
76
76
  "dependencies": {
77
77
  "@chainsafe/persistent-merkle-tree": "^1.2.1",
78
78
  "@chainsafe/ssz": "^1.2.2",
79
- "@lodestar/config": "1.39.0-dev.86298a43e6",
80
- "@lodestar/params": "1.39.0-dev.86298a43e6",
81
- "@lodestar/types": "1.39.0-dev.86298a43e6",
82
- "@lodestar/utils": "1.39.0-dev.86298a43e6",
79
+ "@lodestar/config": "^1.39.0-dev.90493ebb47",
80
+ "@lodestar/params": "^1.39.0-dev.90493ebb47",
81
+ "@lodestar/types": "^1.39.0-dev.90493ebb47",
82
+ "@lodestar/utils": "^1.39.0-dev.90493ebb47",
83
83
  "eventsource": "^2.0.2",
84
84
  "qs": "^6.11.1"
85
85
  },
@@ -96,5 +96,5 @@
96
96
  "api",
97
97
  "blockchain"
98
98
  ],
99
- "gitHead": "55dd258fb9d9a8eaad756c34d331ebe0ab71995f"
99
+ "gitHead": "c4cedf4c9dbfc179bd04823b21250a83f3b0ec33"
100
100
  }