@typeberry/native 0.0.4-e18a946 → 0.2.0-173c341
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/index.d.ts +7 -91
- package/index.js +14 -220
- package/package.json +22 -1
package/package.json
CHANGED
|
@@ -1,10 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typeberry/native",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0-173c341",
|
|
4
|
+
"description": "Native libraries for typeberry - bundles bandersnatch, ed25519 and reed-solomon with WASM and optional native bindings",
|
|
4
5
|
"main": "./index.js",
|
|
6
|
+
"types": "./index.d.ts",
|
|
5
7
|
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./index.d.ts",
|
|
12
|
+
"default": "./index.js"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
},
|
|
6
16
|
"author": "Fluffy Labs",
|
|
7
17
|
"license": "MPL-2.0",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/FluffyLabs/typeberry-native"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=18"
|
|
24
|
+
},
|
|
25
|
+
"optionalDependencies": {
|
|
26
|
+
"@typeberry/bandersnatch-native-darwin-arm64": "0.2.0-173c341",
|
|
27
|
+
"@typeberry/bandersnatch-native-linux-x64-gnu": "0.2.0-173c341"
|
|
28
|
+
},
|
|
8
29
|
"scripts": {
|
|
9
30
|
"lint": "true",
|
|
10
31
|
"test": "true",
|