@useragent-kit/wasm 0.0.1
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/package.json +22 -0
- package/useragent_wasm.d.ts +838 -0
- package/useragent_wasm.js +9 -0
- package/useragent_wasm_bg.js +4464 -0
- package/useragent_wasm_bg.wasm +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@useragent-kit/wasm",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"description": "UserAgentKit WASM/JS bindings for wallet key derivation, signing, and the useragent-api protocol engine",
|
|
5
|
+
"version": "0.0.1",
|
|
6
|
+
"license": "AGPL-3.0",
|
|
7
|
+
"files": [
|
|
8
|
+
"useragent_wasm_bg.wasm",
|
|
9
|
+
"useragent_wasm.js",
|
|
10
|
+
"useragent_wasm_bg.js",
|
|
11
|
+
"useragent_wasm.d.ts"
|
|
12
|
+
],
|
|
13
|
+
"main": "useragent_wasm.js",
|
|
14
|
+
"types": "useragent_wasm.d.ts",
|
|
15
|
+
"sideEffects": [
|
|
16
|
+
"./useragent_wasm.js",
|
|
17
|
+
"./snippets/*"
|
|
18
|
+
],
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
}
|
|
22
|
+
}
|