@thi.ng/wasm-api 1.6.5 → 1.6.7
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/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -378,7 +378,7 @@ please also consult the information in
|
|
|
378
378
|
|
|
379
379
|
## Support packages
|
|
380
380
|
|
|
381
|
-
- [@thi.ng/wasm-api-bindgen](https://github.com/thi-ng/umbrella/tree/develop/packages/wasm-api-bindgen) - Polyglot bindings code generators for hybrid
|
|
381
|
+
- [@thi.ng/wasm-api-bindgen](https://github.com/thi-ng/umbrella/tree/develop/packages/wasm-api-bindgen) - Polyglot bindings code generators (TS/JS, Zig, C11) for hybrid WebAssembly projects
|
|
382
382
|
- [@thi.ng/wasm-api-canvas](https://github.com/thi-ng/umbrella/tree/develop/packages/wasm-api-canvas) - HTML Canvas2D bridge API for hybrid TypeScript & WASM (Zig) applications
|
|
383
383
|
- [@thi.ng/wasm-api-dom](https://github.com/thi-ng/umbrella/tree/develop/packages/wasm-api-dom) - Browser DOM bridge API for hybrid TypeScript & WASM (Zig) applications
|
|
384
384
|
- [@thi.ng/wasm-api-schedule](https://github.com/thi-ng/umbrella/tree/develop/packages/wasm-api-schedule) - Delayed & scheduled function execution (via setTimeout() etc.) for hybrid WASM apps
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/wasm-api",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.7",
|
|
4
4
|
"description": "Generic, modular, extensible API bridge and infrastructure for hybrid JS & WebAssembly projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -37,32 +37,34 @@
|
|
|
37
37
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@thi.ng/api": "^8.11.
|
|
41
|
-
"@thi.ng/arrays": "^2.9.
|
|
42
|
-
"@thi.ng/checks": "^3.6.
|
|
43
|
-
"@thi.ng/errors": "^2.5.
|
|
44
|
-
"@thi.ng/hex": "^2.3.
|
|
45
|
-
"@thi.ng/idgen": "^2.2.
|
|
46
|
-
"@thi.ng/logger": "^3.0.
|
|
40
|
+
"@thi.ng/api": "^8.11.8",
|
|
41
|
+
"@thi.ng/arrays": "^2.9.14",
|
|
42
|
+
"@thi.ng/checks": "^3.6.10",
|
|
43
|
+
"@thi.ng/errors": "^2.5.14",
|
|
44
|
+
"@thi.ng/hex": "^2.3.52",
|
|
45
|
+
"@thi.ng/idgen": "^2.2.48",
|
|
46
|
+
"@thi.ng/logger": "^3.0.18"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@microsoft/api-extractor": "^7.47.
|
|
49
|
+
"@microsoft/api-extractor": "^7.47.5",
|
|
50
50
|
"esbuild": "^0.23.0",
|
|
51
|
-
"typedoc": "^0.26.
|
|
52
|
-
"typescript": "^5.5.
|
|
51
|
+
"typedoc": "^0.26.5",
|
|
52
|
+
"typescript": "^5.5.4"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
55
|
"allocator",
|
|
56
56
|
"api",
|
|
57
|
-
"bindings",
|
|
58
57
|
"bigint",
|
|
58
|
+
"bindings",
|
|
59
59
|
"browser",
|
|
60
60
|
"c",
|
|
61
61
|
"event",
|
|
62
|
+
"free-list",
|
|
62
63
|
"hex",
|
|
63
64
|
"interop",
|
|
64
65
|
"logger",
|
|
65
66
|
"memory",
|
|
67
|
+
"memory-mapped",
|
|
66
68
|
"modular",
|
|
67
69
|
"polyglot",
|
|
68
70
|
"shared-memory",
|
|
@@ -72,8 +74,7 @@
|
|
|
72
74
|
"utf8",
|
|
73
75
|
"wasm",
|
|
74
76
|
"webassembly",
|
|
75
|
-
"zig"
|
|
76
|
-
"ziglang"
|
|
77
|
+
"zig"
|
|
77
78
|
],
|
|
78
79
|
"publishConfig": {
|
|
79
80
|
"access": "public"
|
|
@@ -115,5 +116,5 @@
|
|
|
115
116
|
"status": "alpha",
|
|
116
117
|
"year": 2022
|
|
117
118
|
},
|
|
118
|
-
"gitHead": "
|
|
119
|
+
"gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
|
|
119
120
|
}
|