@imferno/wasm 1.0.0 → 1.1.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 +2 -0
- package/imferno_wasm.js +1 -1
- package/imferno_wasm_bg.wasm +0 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -10,6 +10,8 @@ Part of the [`imferno`](https://github.com/jpwesselink/imferno) ecosystem. See a
|
|
|
10
10
|
npm install @imferno/wasm
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
> **Note:** For Node.js with filesystem access (path-based validation, hash verification), use [`@imferno/node`](https://www.npmjs.com/package/@imferno/node) instead.
|
|
14
|
+
|
|
13
15
|
The package ships a prebuilt `.wasm` binary — no build step required.
|
|
14
16
|
|
|
15
17
|
## Usage
|
package/imferno_wasm.js
CHANGED
|
@@ -274,7 +274,7 @@ function __wbg_get_imports() {
|
|
|
274
274
|
const ret = arg0.length;
|
|
275
275
|
return ret;
|
|
276
276
|
},
|
|
277
|
-
|
|
277
|
+
__wbg_log_f9966a5536153c86: function(arg0, arg1) {
|
|
278
278
|
console.log(getStringFromWasm0(arg0, arg1));
|
|
279
279
|
},
|
|
280
280
|
__wbg_new_0_1dcafdf5e786e876: function() {
|
package/imferno_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imferno/wasm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Fast, type-safe SMPTE ST 2067 IMF parser for JavaScript and TypeScript",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
+
"ajv": "^8.18.0",
|
|
58
59
|
"vitest": "^4.0.18"
|
|
59
60
|
}
|
|
60
61
|
}
|