@hyperbridge/sdk 1.3.26 → 1.4.0
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 +31 -18
- package/dist/browser/index.d.ts +1502 -1385
- package/dist/browser/index.js +226 -161
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.d.ts +1502 -1385
- package/dist/node/index.js +226 -161
- package/dist/node/index.js.map +1 -1
- package/package.json +3 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperbridge/sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "The hyperclient SDK provides utilities for querying proofs and statuses for cross-chain requests from HyperBridge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/node/index.d.ts",
|
|
@@ -70,8 +70,7 @@
|
|
|
70
70
|
"tsup": "^8.4.0",
|
|
71
71
|
"typescript": "^5.7.3",
|
|
72
72
|
"vite-tsconfig-paths": "^5.1.4",
|
|
73
|
-
"vitest": "^3.1.4"
|
|
74
|
-
"@hyperbridge/filler": "0.1.8"
|
|
73
|
+
"vitest": "^3.1.4"
|
|
75
74
|
},
|
|
76
75
|
"resolutions": {
|
|
77
76
|
"@polkadot/api": "^16.4.6",
|
|
@@ -116,11 +115,9 @@
|
|
|
116
115
|
"node": ">=22.x.x"
|
|
117
116
|
},
|
|
118
117
|
"scripts": {
|
|
119
|
-
"build": "pnpm run
|
|
118
|
+
"build": "pnpm run build:browser && pnpm run build:node",
|
|
120
119
|
"build:node": "tsup --config tsup-node.config.ts",
|
|
121
120
|
"build:browser": "tsup --config tsup-browser.config.ts",
|
|
122
|
-
"postinstall": "pnpm run build",
|
|
123
|
-
"generate:config": "node scripts/generate-chain-config.js",
|
|
124
121
|
"test": "npm run test:concurrent && npm run test:sequence",
|
|
125
122
|
"test:file": "vitest --watch=false --maxConcurrency=1",
|
|
126
123
|
"test:concurrent": "vitest --watch=false --exclude=./src/tests/sequential",
|