release: v14.0.25 - npm package structure fix

- Published from build/ directories for correct npm structure
- Updated wasm dependencies to 7.5.17
- All packages now have index.js at root level
This commit is contained in:
2026-02-01 21:45:12 +03:00
parent 0c2b211a12
commit 63781f8889
51 changed files with 242 additions and 164 deletions
+2 -2
View File
@@ -15,7 +15,7 @@
"sideEffects": false,
"type": "module",
"types": "./node.d.ts",
"version": "14.0.20",
"version": "14.0.22",
"browser": "./cjs/browser.js",
"main": "./cjs/node.js",
"module": "./node.js",
@@ -203,7 +203,7 @@
"@ledgerhq/hw-transport": "^6.31.4",
"@ledgerhq/hw-transport-webhid": "^6.29.4",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"@pezkuwi/util": "14.0.20",
"@pezkuwi/util": "14.0.22",
"tslib": "^2.8.0"
},
"optionalDependencies": {
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/hw-ledger-transports', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/hw-ledger-transports', path: 'auto', type: 'auto', version: '14.0.22' };
+3 -3
View File
@@ -18,7 +18,7 @@
],
"type": "module",
"types": "./index.d.ts",
"version": "14.0.20",
"version": "14.0.22",
"main": "./cjs/index.js",
"module": "./index.js",
"exports": {
@@ -170,8 +170,8 @@
}
},
"dependencies": {
"@pezkuwi/hw-ledger-transports": "14.0.20",
"@pezkuwi/util": "14.0.20",
"@pezkuwi/hw-ledger-transports": "14.0.22",
"@pezkuwi/util": "14.0.22",
"@zondax/ledger-substrate": "1.1.1",
"tslib": "^2.8.0"
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/hw-ledger', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/hw-ledger', path: 'auto', type: 'auto', version: '14.0.22' };
+5 -5
View File
@@ -19,7 +19,7 @@
],
"type": "module",
"types": "./index.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"main": "./cjs/index.js",
"module": "./index.js",
"exports": {
@@ -283,12 +283,12 @@
}
},
"dependencies": {
"@pezkuwi/util": "14.0.20",
"@pezkuwi/util-crypto": "14.0.20",
"@pezkuwi/util": "14.0.23",
"@pezkuwi/util-crypto": "14.0.23",
"tslib": "^2.8.0"
},
"peerDependencies": {
"@pezkuwi/util": "14.0.20",
"@pezkuwi/util-crypto": "14.0.20"
"@pezkuwi/util": "14.0.23",
"@pezkuwi/util-crypto": "14.0.23"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/keyring', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/keyring', path: 'auto', type: 'auto', version: '14.0.23' };
+3 -3
View File
@@ -16,7 +16,7 @@
"sideEffects": false,
"type": "module",
"types": "./index.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"main": "./cjs/index.js",
"module": "./index.js",
"exports": {
@@ -182,11 +182,11 @@
}
},
"dependencies": {
"@pezkuwi/util": "14.0.20",
"@pezkuwi/util": "14.0.22",
"@substrate/ss58-registry": "^1.51.0",
"tslib": "^2.8.0"
},
"devDependencies": {
"@pezkuwi/hw-ledger": "14.0.20"
"@pezkuwi/hw-ledger": "14.0.22"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/networks', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/networks', path: 'auto', type: 'auto', version: '14.0.23' };
@@ -1,7 +1,7 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.sr25519Agreement = sr25519Agreement;
const sr25519_1 = require("@scure/sr25519");
const sr25519_1 = require("@pezkuwi/scure-sr25519");
const util_1 = require("@pezkuwi/util");
/**
* @name sr25519Agreement
+1 -1
View File
@@ -2,7 +2,7 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.createDeriveFn = createDeriveFn;
const tslib_1 = require("tslib");
const sr25519 = tslib_1.__importStar(require("@scure/sr25519"));
const sr25519 = tslib_1.__importStar(require("@pezkuwi/scure-sr25519"));
const util_1 = require("@pezkuwi/util");
function createDeriveFn(derive) {
return (keypair, chainCode) => {
@@ -2,6 +2,6 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.sr25519DeriveHard = void 0;
const tslib_1 = require("tslib");
const sr25519 = tslib_1.__importStar(require("@scure/sr25519"));
const sr25519 = tslib_1.__importStar(require("@pezkuwi/scure-sr25519"));
const derive_js_1 = require("./derive.js");
exports.sr25519DeriveHard = (0, derive_js_1.createDeriveFn)(sr25519.HDKD.secretHard);
@@ -2,7 +2,7 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.sr25519DerivePublic = sr25519DerivePublic;
const tslib_1 = require("tslib");
const sr25519 = tslib_1.__importStar(require("@scure/sr25519"));
const sr25519 = tslib_1.__importStar(require("@pezkuwi/scure-sr25519"));
const util_1 = require("@pezkuwi/util");
function sr25519DerivePublic(publicKey, chainCode) {
const publicKeyU8a = (0, util_1.u8aToU8a)(publicKey);
@@ -2,6 +2,6 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.sr25519DeriveSoft = void 0;
const tslib_1 = require("tslib");
const sr25519 = tslib_1.__importStar(require("@scure/sr25519"));
const sr25519 = tslib_1.__importStar(require("@pezkuwi/scure-sr25519"));
const derive_js_1 = require("./derive.js");
exports.sr25519DeriveSoft = (0, derive_js_1.createDeriveFn)(sr25519.HDKD.secretSoft);
@@ -2,7 +2,7 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.sr25519PairFromSeed = sr25519PairFromSeed;
const tslib_1 = require("tslib");
const sr25519 = tslib_1.__importStar(require("@scure/sr25519"));
const sr25519 = tslib_1.__importStar(require("@pezkuwi/scure-sr25519"));
const util_1 = require("@pezkuwi/util");
/**
* @name sr25519PairFromSeed
+1 -1
View File
@@ -2,7 +2,7 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.sr25519Sign = sr25519Sign;
const tslib_1 = require("tslib");
const sr25519 = tslib_1.__importStar(require("@scure/sr25519"));
const sr25519 = tslib_1.__importStar(require("@pezkuwi/scure-sr25519"));
const util_1 = require("@pezkuwi/util");
/**
* @name sr25519Sign
+1 -1
View File
@@ -2,7 +2,7 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.sr25519Verify = sr25519Verify;
const tslib_1 = require("tslib");
const sr25519 = tslib_1.__importStar(require("@scure/sr25519"));
const sr25519 = tslib_1.__importStar(require("@pezkuwi/scure-sr25519"));
const util_1 = require("@pezkuwi/util");
/**
* @name sr25519Verify
+1 -1
View File
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.sr25519VrfSign = sr25519VrfSign;
const tslib_1 = require("tslib");
const utils_1 = require("@noble/hashes/utils");
const sr25519 = tslib_1.__importStar(require("@scure/sr25519"));
const sr25519 = tslib_1.__importStar(require("@pezkuwi/scure-sr25519"));
const util_1 = require("@pezkuwi/util");
const EMPTY_U8A = new Uint8Array();
/**
@@ -2,7 +2,7 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.sr25519VrfVerify = sr25519VrfVerify;
const tslib_1 = require("tslib");
const sr25519 = tslib_1.__importStar(require("@scure/sr25519"));
const sr25519 = tslib_1.__importStar(require("@pezkuwi/scure-sr25519"));
const util_1 = require("@pezkuwi/util");
const EMPTY_U8A = new Uint8Array();
/**
+7 -7
View File
@@ -21,7 +21,7 @@
],
"type": "module",
"types": "./index.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"browser": {
"crypto": false,
"stream": false
@@ -2041,17 +2041,17 @@
"dependencies": {
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"@pezkuwi/networks": "14.0.20",
"@pezkuwi/networks": "14.0.23",
"@pezkuwi/scure-sr25519": "^0.2.1",
"@pezkuwi/util": "14.0.20",
"@pezkuwi/wasm-crypto": "^7.5.10",
"@pezkuwi/util": "14.0.23",
"@pezkuwi/wasm-crypto": "^7.5.15",
"@pezkuwi/wasm-util": "^7.5.10",
"@pezkuwi/x-bigint": "14.0.20",
"@pezkuwi/x-randomvalues": "14.0.20",
"@pezkuwi/x-bigint": "14.0.23",
"@pezkuwi/x-randomvalues": "14.0.23",
"@scure/base": "^1.1.7",
"tslib": "^2.8.0"
},
"peerDependencies": {
"@pezkuwi/util": "14.0.20"
"@pezkuwi/util": "14.0.23"
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
import { getSharedSecret } from '@scure/sr25519';
import { getSharedSecret } from '@pezkuwi/scure-sr25519';
import { u8aToU8a } from '@pezkuwi/util';
/**
* @name sr25519Agreement
+1 -1
View File
@@ -1,4 +1,4 @@
import * as sr25519 from '@scure/sr25519';
import * as sr25519 from '@pezkuwi/scure-sr25519';
import { isU8a } from '@pezkuwi/util';
export function createDeriveFn(derive) {
return (keypair, chainCode) => {
+1 -1
View File
@@ -1,3 +1,3 @@
import * as sr25519 from '@scure/sr25519';
import * as sr25519 from '@pezkuwi/scure-sr25519';
import { createDeriveFn } from './derive.js';
export const sr25519DeriveHard = /*#__PURE__*/ createDeriveFn(sr25519.HDKD.secretHard);
+1 -1
View File
@@ -1,4 +1,4 @@
import * as sr25519 from '@scure/sr25519';
import * as sr25519 from '@pezkuwi/scure-sr25519';
import { isU8a, u8aToU8a } from '@pezkuwi/util';
export function sr25519DerivePublic(publicKey, chainCode) {
const publicKeyU8a = u8aToU8a(publicKey);
+1 -1
View File
@@ -1,3 +1,3 @@
import * as sr25519 from '@scure/sr25519';
import * as sr25519 from '@pezkuwi/scure-sr25519';
import { createDeriveFn } from './derive.js';
export const sr25519DeriveSoft = /*#__PURE__*/ createDeriveFn(sr25519.HDKD.secretSoft);
@@ -1,4 +1,4 @@
import * as sr25519 from '@scure/sr25519';
import * as sr25519 from '@pezkuwi/scure-sr25519';
import { u8aToU8a } from '@pezkuwi/util';
/**
* @name sr25519PairFromSeed
+1 -1
View File
@@ -1,4 +1,4 @@
import * as sr25519 from '@scure/sr25519';
import * as sr25519 from '@pezkuwi/scure-sr25519';
import { u8aToU8a } from '@pezkuwi/util';
/**
* @name sr25519Sign
+1 -1
View File
@@ -1,4 +1,4 @@
import * as sr25519 from '@scure/sr25519';
import * as sr25519 from '@pezkuwi/scure-sr25519';
import { u8aToU8a } from '@pezkuwi/util';
/**
* @name sr25519Verify
+1 -1
View File
@@ -1,5 +1,5 @@
import { randomBytes } from '@noble/hashes/utils';
import * as sr25519 from '@scure/sr25519';
import * as sr25519 from '@pezkuwi/scure-sr25519';
import { u8aToU8a } from '@pezkuwi/util';
const EMPTY_U8A = new Uint8Array();
/**
+1 -1
View File
@@ -1,4 +1,4 @@
import * as sr25519 from '@scure/sr25519';
import * as sr25519 from '@pezkuwi/scure-sr25519';
import { u8aToU8a } from '@pezkuwi/util';
const EMPTY_U8A = new Uint8Array();
/**
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/util-crypto', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/util-crypto', path: 'auto', type: 'auto', version: '14.0.23' };
+6 -6
View File
@@ -19,7 +19,7 @@
],
"type": "module",
"types": "./index.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"main": "./cjs/index.js",
"module": "./index.js",
"exports": {
@@ -1987,15 +1987,15 @@
}
},
"dependencies": {
"@pezkuwi/x-bigint": "14.0.20",
"@pezkuwi/x-global": "14.0.20",
"@pezkuwi/x-textdecoder": "14.0.20",
"@pezkuwi/x-textencoder": "14.0.20",
"@pezkuwi/x-bigint": "14.0.23",
"@pezkuwi/x-global": "14.0.23",
"@pezkuwi/x-textdecoder": "14.0.23",
"@pezkuwi/x-textencoder": "14.0.23",
"@types/bn.js": "^5.1.6",
"bn.js": "^5.2.1",
"tslib": "^2.8.0"
},
"devDependencies": {
"@pezkuwi/x-randomvalues": "14.0.20"
"@pezkuwi/x-randomvalues": "14.0.23"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/util', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/util', path: 'auto', type: 'auto', version: '14.0.23' };
+2 -2
View File
@@ -19,7 +19,7 @@
],
"type": "module",
"types": "./index.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"main": "./cjs/index.js",
"module": "./index.js",
"exports": {
@@ -101,7 +101,7 @@
}
},
"dependencies": {
"@pezkuwi/x-global": "14.0.20",
"@pezkuwi/x-global": "14.0.22",
"tslib": "^2.8.0"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/x-bigint', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/x-bigint', path: 'auto', type: 'auto', version: '14.0.23' };
+2 -2
View File
@@ -16,7 +16,7 @@
"sideEffects": false,
"type": "module",
"types": "./index.d.ts",
"version": "14.0.20",
"version": "14.0.22",
"main": "./cjs/index.js",
"module": "./index.js",
"exports": {
@@ -140,7 +140,7 @@
}
},
"dependencies": {
"@pezkuwi/util": "14.0.20",
"@pezkuwi/util": "14.0.22",
"buffer-es6": "^4.9.3",
"tslib": "^2.8.0"
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/x-bundle', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/x-bundle', path: 'auto', type: 'auto', version: '14.0.22' };
+2 -2
View File
@@ -16,7 +16,7 @@
"sideEffects": false,
"type": "module",
"types": "./node.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"browser": "./cjs/browser.js",
"main": "./cjs/node.js",
"module": "./node.js",
@@ -173,7 +173,7 @@
}
},
"dependencies": {
"@pezkuwi/x-global": "14.0.20",
"@pezkuwi/x-global": "14.0.22",
"node-fetch": "^3.3.2",
"tslib": "^2.8.0"
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/x-fetch', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/x-fetch', path: 'auto', type: 'auto', version: '14.0.23' };
+1 -1
View File
@@ -16,7 +16,7 @@
"sideEffects": false,
"type": "module",
"types": "./index.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"main": "./cjs/index.js",
"module": "./index.js",
"exports": {
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/x-global', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/x-global', path: 'auto', type: 'auto', version: '14.0.23' };
+3 -3
View File
@@ -16,7 +16,7 @@
"sideEffects": false,
"type": "module",
"types": "./node.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"browser": "./cjs/browser.js",
"main": "./cjs/node.js",
"module": "./node.js",
@@ -187,14 +187,14 @@
}
},
"dependencies": {
"@pezkuwi/x-global": "14.0.20",
"@pezkuwi/x-global": "14.0.22",
"tslib": "^2.8.0"
},
"devDependencies": {
"@types/react-native": "^0.73.0"
},
"peerDependencies": {
"@pezkuwi/util": "14.0.20",
"@pezkuwi/util": "14.0.22",
"@pezkuwi/wasm-util": "*"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/x-randomvalues', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/x-randomvalues', path: 'auto', type: 'auto', version: '14.0.23' };
+2 -2
View File
@@ -16,7 +16,7 @@
"sideEffects": false,
"type": "module",
"types": "./node.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"browser": "./cjs/browser.js",
"main": "./cjs/node.js",
"module": "./node.js",
@@ -201,7 +201,7 @@
}
},
"dependencies": {
"@pezkuwi/x-global": "14.0.20",
"@pezkuwi/x-global": "14.0.22",
"tslib": "^2.8.0"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/x-textdecoder', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/x-textdecoder', path: 'auto', type: 'auto', version: '14.0.23' };
+2 -2
View File
@@ -16,7 +16,7 @@
"sideEffects": false,
"type": "module",
"types": "./node.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"browser": "./cjs/browser.js",
"main": "./cjs/node.js",
"module": "./node.js",
@@ -201,7 +201,7 @@
}
},
"dependencies": {
"@pezkuwi/x-global": "14.0.20",
"@pezkuwi/x-global": "14.0.22",
"tslib": "^2.8.0"
}
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/x-textencoder', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/x-textencoder', path: 'auto', type: 'auto', version: '14.0.23' };
+2 -2
View File
@@ -16,7 +16,7 @@
"sideEffects": false,
"type": "module",
"types": "./node.d.ts",
"version": "14.0.20",
"version": "14.0.23",
"browser": "./cjs/browser.js",
"main": "./cjs/node.js",
"module": "./node.js",
@@ -173,7 +173,7 @@
}
},
"dependencies": {
"@pezkuwi/x-global": "14.0.20",
"@pezkuwi/x-global": "14.0.22",
"tslib": "^2.8.0",
"ws": "^8.18.0"
}
+1 -1
View File
@@ -3,4 +3,4 @@
// Do not edit, auto-generated by @pezkuwi/dev
export const packageInfo = { name: '@pezkuwi/x-ws', path: 'auto', type: 'auto', version: '14.0.20' };
export const packageInfo = { name: '@pezkuwi/x-ws', path: 'auto', type: 'auto', version: '14.0.23' };