@arcforge/cognet 2.0.164 → 2.0.165

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcforge/cognet",
3
- "version": "2.0.164",
3
+ "version": "2.0.165",
4
4
  "description": "The cognet authoring surface for Axon — an agent's brain, compiled, versioned and swappable.",
5
5
  "type": "module",
6
6
  "private": false,
@@ -17,8 +17,8 @@
17
17
  "deploy": "echo \"This package is published ONLY by apps/tui/scripts/release.ts, which pins workspace:* deps to concrete versions first. Publishing it directly ships an unresolvable dependency.\" && exit 1"
18
18
  },
19
19
  "dependencies": {
20
- "@arcforge/err": "2.0.164",
21
- "@arcforge/types": "2.0.164",
20
+ "@arcforge/err": "2.0.165",
21
+ "@arcforge/types": "2.0.165",
22
22
  "hookable": "^5.5.3"
23
23
  },
24
24
  "devDependencies": {
package/src/ecs/types.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * Kernel systems extend this via module augmentation:
6
6
  *
7
- * declare module "@axon/core" {
7
+ * declare module "@arcforge/core" {
8
8
  * interface ComponentRegistry {
9
9
  * "my-component": { value: string }
10
10
  * }
package/src/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  // @arcforge/cognet — the cognet runtime.
2
2
  //
3
3
  // Everything that executes INSIDE a compiled brain. The kernel that loads the
4
- // brain lives in @axon/core and is private; this is the public half, and it is
4
+ // brain lives in @arcforge/core and is private; this is the public half, and it is
5
5
  // what the generated entry imports.
6
6
  //
7
7
  // Root export is deliberately minimal: a cognet cannot exist without the host,