@idleflowgames/anotherecs 0.1.1 → 0.1.2
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 +6 -0
- package/README.md +2 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -11,6 +11,8 @@ and spatial queries are opt-in.
|
|
|
11
11
|
|
|
12
12
|

|
|
13
13
|
|
|
14
|
+
*The swarm arena demo. Source: [`examples/pixi-demo`](./examples/pixi-demo).*
|
|
15
|
+
|
|
14
16
|
## What You Get
|
|
15
17
|
|
|
16
18
|
- **Sparse-set component storage.** Components live in dense arrays for fast
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idleflowgames/anotherecs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A small, fast, deterministic, dependency-free Entity Component System for TypeScript.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ecs",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"registry": "https://registry.npmjs.org/"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
|
-
"node": ">=
|
|
49
|
-
"pnpm": ">=11"
|
|
48
|
+
"node": ">=24.16.0",
|
|
49
|
+
"pnpm": ">=11.5.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@biomejs/biome": "2.4.10",
|