@awesome-flow/ecs 0.9.0 → 0.9.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.
Files changed (3) hide show
  1. package/dist/index.cjs +1007 -211
  2. package/dist/index.js +1011 -215
  3. package/package.json +12 -11
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@awesome-flow/ecs",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "The ECS package for Awesome Flow. Provides basic components to map Awesome ECS objects.",
5
5
  "type": "module",
6
+ "sideEffects": false,
6
7
  "scripts": {
7
8
  "build:dev": "npx tsc -p ./tsconfig.build.json",
8
9
  "build:clean": "npx rimraf ./dist && npm run build:dev",
@@ -14,7 +15,7 @@
14
15
  "dependencies": {
15
16
  "@awesome-ecs/abstract": "^0.20.2",
16
17
  "@awesome-ecs/core": "^0.20.2",
17
- "@awesome-flow/core": "^0.9.0",
18
+ "@awesome-flow/core": "^0.9.2",
18
19
  "react-inspector": "^6.0.2"
19
20
  },
20
21
  "peerDependencies": {
@@ -23,19 +24,19 @@
23
24
  "@tabler/icons-react": ">=3.19.0",
24
25
  "@xyflow/react": ">=12.3.4",
25
26
  "@xyflow/system": ">=0.0.45",
26
- "react": ">=18.3.1",
27
- "react-dom": ">=18.3.1",
27
+ "react": ">=19.0.0",
28
+ "react-dom": ">=19.0.0",
28
29
  "zustand": ">=4.5.5"
29
30
  },
30
31
  "devDependencies": {
31
- "@mantine/core": "^7.15.1",
32
- "@mantine/hooks": "^7.15.1",
33
- "@tabler/icons-react": "^3.24.0",
34
- "@xyflow/react": "^12.3.6",
35
- "@xyflow/system": "^0.0.47",
32
+ "@mantine/core": "^7.16.2",
33
+ "@mantine/hooks": "^7.16.2",
34
+ "@tabler/icons-react": "^3.29.0",
35
+ "@xyflow/react": "^12.4.2",
36
+ "@xyflow/system": "^0.0.50",
36
37
  "react": "^19.0.0",
37
38
  "react-dom": "^19.0.0",
38
- "zustand": "^5.0.2"
39
+ "zustand": "^5.0.3"
39
40
  },
40
41
  "exports": {
41
42
  ".": {
@@ -76,5 +77,5 @@
76
77
  "url": "https://github.com/privatebytes/awesome-flow/issues"
77
78
  },
78
79
  "homepage": "https://github.com/privatebytes/awesome-flow#readme",
79
- "gitHead": "0f8899f4a093f997ae64eefab07dcc39396bef51"
80
+ "gitHead": "54aea4c1ae9ec6802b02eb8014dec1c82c6c137a"
80
81
  }