@pezkuwi/wasm-crypto-init 7.5.4 → 7.5.5
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/asm.d.ts +1 -1
- package/both.d.ts +1 -1
- package/cjs/asm.d.ts +1 -1
- package/cjs/both.d.ts +1 -1
- package/cjs/none.d.ts +1 -1
- package/cjs/types.d.ts +1 -1
- package/cjs/wasm.d.ts +1 -1
- package/none.d.ts +1 -1
- package/package.json +8 -8
- package/types.d.ts +1 -1
- package/wasm.d.ts +1 -1
package/asm.d.ts
CHANGED
package/both.d.ts
CHANGED
package/cjs/asm.d.ts
CHANGED
package/cjs/both.d.ts
CHANGED
package/cjs/none.d.ts
CHANGED
package/cjs/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { WasmBaseInstance } from '@
|
|
1
|
+
import type { WasmBaseInstance } from '@pezkuwi/wasm-bridge/types';
|
|
2
2
|
export interface WasmCryptoInstance extends WasmBaseInstance {
|
|
3
3
|
ext_bip39_generate(resLen: 8, words: number): void;
|
|
4
4
|
ext_bip39_to_entropy(resLen: 8, ptrPhrase: number, lenPhrase: number): void;
|
package/cjs/wasm.d.ts
CHANGED
package/none.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "Jaco Greeff <jacogr@gmail.com>",
|
|
3
|
-
"bugs": "https://github.com/
|
|
3
|
+
"bugs": "https://github.com/pezkuwi-js/wasm/issues",
|
|
4
4
|
"description": "Init handlers for wasm-crypto",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18"
|
|
7
7
|
},
|
|
8
|
-
"homepage": "https://github.com/
|
|
8
|
+
"homepage": "https://github.com/pezkuwi-js/wasm/tree/master/packages/wasm-crypto-init#readme",
|
|
9
9
|
"license": "Apache-2.0",
|
|
10
10
|
"name": "@pezkuwi/wasm-crypto-init",
|
|
11
11
|
"repository": {
|
|
12
12
|
"directory": "packages/wasm-crypto-init",
|
|
13
13
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/
|
|
14
|
+
"url": "https://github.com/pezkuwi-js/wasm.git"
|
|
15
15
|
},
|
|
16
16
|
"sideEffects": [
|
|
17
17
|
"./packageDetect.js",
|
|
18
18
|
"./cjs/packageDetect.js"
|
|
19
19
|
],
|
|
20
20
|
"type": "module",
|
|
21
|
-
"version": "7.5.
|
|
21
|
+
"version": "7.5.5",
|
|
22
22
|
"main": "./cjs/wasm.js",
|
|
23
23
|
"module": "./wasm.js",
|
|
24
24
|
"browser": "./cjs/wasm.js",
|
|
@@ -204,10 +204,10 @@
|
|
|
204
204
|
}
|
|
205
205
|
},
|
|
206
206
|
"dependencies": {
|
|
207
|
-
"@pezkuwi/wasm-bridge": "7.5.
|
|
208
|
-
"@pezkuwi/wasm-crypto-asmjs": "7.5.
|
|
209
|
-
"@pezkuwi/wasm-crypto-wasm": "7.5.
|
|
210
|
-
"@pezkuwi/wasm-util": "7.5.
|
|
207
|
+
"@pezkuwi/wasm-bridge": "7.5.5",
|
|
208
|
+
"@pezkuwi/wasm-crypto-asmjs": "7.5.5",
|
|
209
|
+
"@pezkuwi/wasm-crypto-wasm": "7.5.5",
|
|
210
|
+
"@pezkuwi/wasm-util": "7.5.5",
|
|
211
211
|
"tslib": "^2.7.0"
|
|
212
212
|
},
|
|
213
213
|
"peerDependencies": {
|
package/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { WasmBaseInstance } from '@
|
|
1
|
+
import type { WasmBaseInstance } from '@pezkuwi/wasm-bridge/types';
|
|
2
2
|
export interface WasmCryptoInstance extends WasmBaseInstance {
|
|
3
3
|
ext_bip39_generate(resLen: 8, words: number): void;
|
|
4
4
|
ext_bip39_to_entropy(resLen: 8, ptrPhrase: number, lenPhrase: number): void;
|
package/wasm.d.ts
CHANGED