@lodestar/light-client 1.39.0-dev.f4236afdba → 1.39.0-rc.2

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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lightclient.min.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,8 @@
1
+ {
2
+ "src/index.ts": {
3
+ "file": "lightclient.min.mjs",
4
+ "name": "index",
5
+ "src": "src/index.ts",
6
+ "isEntry": true
7
+ }
8
+ }
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.f4236afdba",
14
+ "version": "1.39.0-rc.2",
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.f4236afdba",
71
- "@lodestar/config": "1.39.0-dev.f4236afdba",
72
- "@lodestar/params": "1.39.0-dev.f4236afdba",
73
- "@lodestar/types": "1.39.0-dev.f4236afdba",
74
- "@lodestar/utils": "1.39.0-dev.f4236afdba",
70
+ "@lodestar/api": "^1.39.0-rc.2",
71
+ "@lodestar/config": "^1.39.0-rc.2",
72
+ "@lodestar/params": "^1.39.0-rc.2",
73
+ "@lodestar/types": "^1.39.0-rc.2",
74
+ "@lodestar/utils": "^1.39.0-rc.2",
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-rc.2",
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": "f6448bba79d002172837f6c7723bd206bb294e1f"
93
+ "gitHead": "a27c69bd6fd5b94dc2116a9008095803c6a48632"
92
94
  }