@lodestar/light-client 1.39.0-dev.c151a164f2 → 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.
- package/README.md +1 -1
- 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
|
[](https://github.com/ethereum/consensus-specs/releases/tag/v1.5.0)
|
|
13
13
|

|
|
14
14
|

|
|
15
|
-

|
|
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.
|
|
14
|
+
"version": "1.39.0-dev.ca786a9fc3",
|
|
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": "
|
|
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": "
|
|
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": "
|
|
60
|
-
"test": "
|
|
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": "
|
|
63
|
-
"check-readme": "
|
|
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.
|
|
71
|
-
"@lodestar/config": "1.39.0-dev.
|
|
72
|
-
"@lodestar/params": "1.39.0-dev.
|
|
73
|
-
"@lodestar/types": "1.39.0-dev.
|
|
74
|
-
"@lodestar/utils": "1.39.0-dev.
|
|
70
|
+
"@lodestar/api": "^1.39.0-dev.ca786a9fc3",
|
|
71
|
+
"@lodestar/config": "^1.39.0-dev.ca786a9fc3",
|
|
72
|
+
"@lodestar/params": "^1.39.0-dev.ca786a9fc3",
|
|
73
|
+
"@lodestar/types": "^1.39.0-dev.ca786a9fc3",
|
|
74
|
+
"@lodestar/utils": "^1.39.0-dev.ca786a9fc3",
|
|
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.ca786a9fc3",
|
|
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": "
|
|
93
|
+
"gitHead": "ec0c91055ac75daca7bcebe5ed4b6f85ee1260ce"
|
|
92
94
|
}
|