@lodestar/builder 0.0.0 → 1.46.0-dev.18a1510f34

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 +25 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lodestar/builder",
3
- "version": "0.0.0",
3
+ "version": "1.46.0-dev.18a1510f34",
4
4
  "description": "A Typescript implementation of the builder client",
5
5
  "author": "ChainSafe Systems",
6
6
  "license": "Apache-2.0",
@@ -21,6 +21,20 @@
21
21
  "lib",
22
22
  "!**/*.tsbuildinfo"
23
23
  ],
24
+ "scripts": {
25
+ "clean": "rm -rf lib && rm -f *.tsbuildinfo",
26
+ "build": "tsgo -p tsconfig.build.json",
27
+ "build:release": "pnpm clean && pnpm run build",
28
+ "build:watch": "pnpm run build --watch",
29
+ "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
30
+ "check-types": "tsgo",
31
+ "lint": "biome check src/ test/",
32
+ "lint:fix": "pnpm run lint --write",
33
+ "test:unit": "vitest run --project unit --project unit-minimal",
34
+ "test": "pnpm test:unit && pnpm test:e2e",
35
+ "test:e2e": "vitest run --project e2e --project e2e-mainnet",
36
+ "check-readme": "pnpm exec tsx ../../scripts/check_readme.ts"
37
+ },
24
38
  "repository": {
25
39
  "type": "git",
26
40
  "url": "git+https://github.com:ChainSafe/lodestar.git"
@@ -34,29 +48,16 @@
34
48
  "dependencies": {
35
49
  "@chainsafe/blst": "^2.2.0",
36
50
  "@chainsafe/ssz": "^1.6.2",
37
- "@lodestar/api": "^1.45.0",
38
- "@lodestar/params": "^1.45.0",
39
- "@lodestar/config": "^1.45.0",
40
- "@lodestar/state-transition": "^1.45.0",
41
- "@lodestar/types": "^1.45.0",
42
- "@lodestar/utils": "^1.45.0"
51
+ "@lodestar/api": "^1.46.0-dev.18a1510f34",
52
+ "@lodestar/config": "^1.46.0-dev.18a1510f34",
53
+ "@lodestar/params": "^1.46.0-dev.18a1510f34",
54
+ "@lodestar/state-transition": "^1.46.0-dev.18a1510f34",
55
+ "@lodestar/types": "^1.46.0-dev.18a1510f34",
56
+ "@lodestar/utils": "^1.46.0-dev.18a1510f34"
43
57
  },
44
58
  "devDependencies": {
45
- "@lodestar/test-utils": "^1.45.0",
46
- "@lodestar/logger": "^1.45.0"
59
+ "@lodestar/logger": "^1.46.0-dev.18a1510f34",
60
+ "@lodestar/test-utils": "^1.46.0-dev.18a1510f34"
47
61
  },
48
- "scripts": {
49
- "clean": "rm -rf lib && rm -f *.tsbuildinfo",
50
- "build": "tsgo -p tsconfig.build.json",
51
- "build:release": "pnpm clean && pnpm run build",
52
- "build:watch": "pnpm run build --watch",
53
- "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
54
- "check-types": "tsgo",
55
- "lint": "biome check src/ test/",
56
- "lint:fix": "pnpm run lint --write",
57
- "test:unit": "vitest run --project unit --project unit-minimal",
58
- "test": "pnpm test:unit && pnpm test:e2e",
59
- "test:e2e": "vitest run --project e2e --project e2e-mainnet",
60
- "check-readme": "pnpm exec tsx ../../scripts/check_readme.ts"
61
- }
62
- }
62
+ "gitHead": "2d1e5554f3d32442d6d30f3ea5bc6d423242dd4a"
63
+ }