@lodestar/utils 1.39.0-dev.d4a47659a5 → 1.39.0-dev.e5f0c23f31
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 +7 -6
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.e5f0c23f31",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"scripts": {
|
|
35
35
|
"clean": "rm -rf lib && rm -f *.tsbuildinfo",
|
|
36
36
|
"build": "tsc -p tsconfig.build.json",
|
|
37
|
-
"build:watch": "
|
|
38
|
-
"build:release": "
|
|
37
|
+
"build:watch": "pnpm run build --watch",
|
|
38
|
+
"build:release": "pnpm clean && pnpm build",
|
|
39
39
|
"check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
|
|
40
40
|
"check-types": "tsc && vitest run --project types",
|
|
41
41
|
"lint": "biome check src/ test/",
|
|
42
|
-
"lint:fix": "
|
|
42
|
+
"lint:fix": "pnpm run lint --write",
|
|
43
43
|
"test:unit": "vitest run --project unit --project unit-minimal",
|
|
44
44
|
"test:browsers": "vitest run --project browser",
|
|
45
|
-
"check-readme": "
|
|
45
|
+
"check-readme": "pnpm exec ts-node ../../scripts/check_readme.ts"
|
|
46
46
|
},
|
|
47
47
|
"types": "lib/index.d.ts",
|
|
48
48
|
"dependencies": {
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"js-yaml": "^4.1.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
+
"@chainsafe/ssz": "^1.2.2",
|
|
56
57
|
"@types/js-yaml": "^4.0.5",
|
|
57
58
|
"@types/yargs": "^17.0.24",
|
|
58
59
|
"prom-client": "^15.1.0"
|
|
@@ -63,5 +64,5 @@
|
|
|
63
64
|
"beacon",
|
|
64
65
|
"blockchain"
|
|
65
66
|
],
|
|
66
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "a0127db8478edcf0eccddd4cdb7b190f2f5370b4"
|
|
67
68
|
}
|