@lodestar/light-client 1.39.0-dev.d4a47659a5 → 1.39.0-dev.dd21e36997

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 +15 -13
package/README.md CHANGED
@@ -12,7 +12,7 @@ The evolution of light clients is emblematic of the broader trajectory of Ethere
12
12
  [![Eth Consensus Spec v1.5.0](https://img.shields.io/badge/ETH%20consensus--spec-1.5.0-blue)](https://github.com/ethereum/consensus-specs/releases/tag/v1.5.0)
13
13
  ![ES Version](https://img.shields.io/badge/ES-2021-yellow)
14
14
  ![Node Version](https://img.shields.io/badge/node-16.x-green)
15
- ![Yarn](https://img.shields.io/badge/yarn-%232C8EBB.svg?style=for-the-badge&logo=yarn&logoColor=white)
15
+ ![pnpm](https://img.shields.io/badge/pnpm-%232C8EBB.svg?style=for-the-badge&logo=pnpm&logoColor=white)
16
16
 
17
17
  > This package is part of [ChainSafe's Lodestar](https://lodestar.chainsafe.io) project
18
18
 
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.d4a47659a5",
14
+ "version": "1.39.0-dev.dd21e36997",
15
15
  "type": "module",
16
16
  "exports": {
17
17
  ".": {
@@ -49,33 +49,35 @@
49
49
  "scripts": {
50
50
  "clean": "rm -rf lib && rm -rf dist && rm -f *.tsbuildinfo",
51
51
  "build": "tsc -p tsconfig.build.json",
52
- "build:watch": "yarn run build --watch",
52
+ "build:watch": "pnpm run build --watch",
53
53
  "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
54
54
  "build:bundle": "vite build",
55
55
  "check-bundle": "node -e \"(async function() { await import('./dist/lightclient.min.mjs') })()\"",
56
- "build:release": "yarn clean && yarn run build && yarn run build:bundle",
56
+ "build:release": "pnpm clean && pnpm run build && pnpm run build:bundle",
57
57
  "check-types": "tsc",
58
58
  "lint": "biome check src/ test/",
59
- "lint:fix": "yarn run lint --write",
60
- "test": "yarn test:unit",
59
+ "lint:fix": "pnpm run lint --write",
60
+ "test": "pnpm test:unit",
61
61
  "test:unit": "vitest run --project unit --project unit-minimal",
62
- "test:browsers": "yarn run build:bundle && vitest run --project browser",
63
- "check-readme": "typescript-docs-verifier"
62
+ "test:browsers": "pnpm run build:bundle && vitest run --project browser",
63
+ "check-readme": "pnpm exec ts-node ../../scripts/check_readme.ts"
64
64
  },
65
65
  "dependencies": {
66
66
  "@chainsafe/bls": "8.2.0",
67
67
  "@chainsafe/blst": "^2.2.0",
68
68
  "@chainsafe/persistent-merkle-tree": "^1.2.1",
69
69
  "@chainsafe/ssz": "^1.2.2",
70
- "@lodestar/api": "1.39.0-dev.d4a47659a5",
71
- "@lodestar/config": "1.39.0-dev.d4a47659a5",
72
- "@lodestar/params": "1.39.0-dev.d4a47659a5",
73
- "@lodestar/types": "1.39.0-dev.d4a47659a5",
74
- "@lodestar/utils": "1.39.0-dev.d4a47659a5",
70
+ "@lodestar/api": "^1.39.0-dev.dd21e36997",
71
+ "@lodestar/config": "^1.39.0-dev.dd21e36997",
72
+ "@lodestar/params": "^1.39.0-dev.dd21e36997",
73
+ "@lodestar/types": "^1.39.0-dev.dd21e36997",
74
+ "@lodestar/utils": "^1.39.0-dev.dd21e36997",
75
75
  "mitt": "^3.0.0"
76
76
  },
77
77
  "devDependencies": {
78
78
  "@chainsafe/as-sha256": "^1.2.0",
79
+ "@fastify/cors": "^10.0.1",
80
+ "@lodestar/state-transition": "^1.39.0-dev.dd21e36997",
79
81
  "@types/qs": "^6.9.7",
80
82
  "fastify": "^5.2.1",
81
83
  "qs": "^6.11.1",
@@ -88,5 +90,5 @@
88
90
  "light-client",
89
91
  "blockchain"
90
92
  ],
91
- "gitHead": "ece402e986e6babc414c33018cbe7337c68ffd67"
93
+ "gitHead": "e334a5a32b4927f71942359b9a8e64c6927268a9"
92
94
  }