@pixi-ui-editor/runtime-pixi 0.1.0 → 0.1.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/README.md +11 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @pixi-ui-editor/runtime-pixi
|
|
2
|
+
|
|
3
|
+
PixiJS runtime that loads and renders scene documents produced by [Pixi UI Editor](https://github.com/AlexMariacho/pixi-ui-editor) inside a game.
|
|
4
|
+
|
|
5
|
+
Consumes documents validated against [`@pixi-ui-editor/schema`](https://www.npmjs.com/package/@pixi-ui-editor/schema).
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pnpm add @pixi-ui-editor/runtime-pixi
|
|
11
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixi-ui-editor/runtime-pixi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "PixiJS runtime that renders Pixi UI Editor scene documents in a game.",
|
|
4
5
|
"type": "module",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
@@ -26,7 +27,7 @@
|
|
|
26
27
|
"@pixi/ui": "2.3.2",
|
|
27
28
|
"pixi.js": "^8.19.0",
|
|
28
29
|
"yoga-layout": "^3.2.1",
|
|
29
|
-
"@pixi-ui-editor/schema": "0.1.
|
|
30
|
+
"@pixi-ui-editor/schema": "0.1.1"
|
|
30
31
|
},
|
|
31
32
|
"scripts": {
|
|
32
33
|
"build": "tsc -p tsconfig.json",
|