@ringozz/godot-web-wasm32 0.1.0 → 4.7.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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +4 -3
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @ringozz/godot-web-wasm32
2
+
3
+ Godot Engine compiled to **WebAssembly** (`wasm32`, no threads), plus the web adapter that boots it in the browser. Consumed by [`@ringozz/godot`](../godot/README.md) on platforms without a native addon (i.e. in the browser).
4
+
5
+ On web, `@ringozz/godot` dispatches here and this package initializes the engine with Emscripten + emnapi, binding it to a `<canvas>`:
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "@ringozz/godot-web-wasm32",
3
- "version": "0.1.0",
4
- "description": "Godot Engine WebAssembly build (wasm32) + web adapter for godot-node",
3
+ "version": "4.7.1-0",
4
+ "description": "Godot Engine build for @ringozz/godot",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": "./src/index.ts"
8
8
  },
9
9
  "files": [
10
10
  "gen/",
11
- "src/"
11
+ "src/",
12
+ "*.md"
12
13
  ],
13
14
  "dependencies": {
14
15
  "@emnapi/runtime": "^1.11.3"