@spirobel/monero-wallet-api 0.1.1 → 0.2.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 +12 -0
- package/dist/api.d.ts +45 -2
- package/dist/api.js +83 -9
- package/dist/node-interaction/binaryEndpoints.d.ts +12 -0
- package/dist/node-interaction/binaryEndpoints.js +22 -4
- package/dist/testscrap.d.ts +1 -0
- package/dist/testscrap.js +36 -0
- package/dist/wasm-processing/wasmFile.js +8 -3
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"access": "public"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
|
-
"publish": "bun run build && npm publish",
|
|
12
|
+
"publish": "bun run build && bun run inlinesum && npm publish",
|
|
13
13
|
"inline": "bun build scripts/wasmFile.ts --target=browser --outdir dist/wasm-processing",
|
|
14
14
|
"sum": "cat dist/wasm-processing/wasmFile.js | sha256sum > checksum.txt",
|
|
15
15
|
"inlinesum": "bun run inline && bun run sum",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"clean": "rm -rf ./dist"
|
|
18
18
|
},
|
|
19
19
|
"files": ["dist"],
|
|
20
|
-
"version": "0.
|
|
20
|
+
"version": "0.2.0",
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/bun": "latest"
|
|
23
23
|
},
|