@aletheia-labs/episodic 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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,6 +4,13 @@ Subjective time and episodic continuity projections for Aletheia.
4
4
 
5
5
  > **Status**: `0.1.0` experimental public baseline. Episodic timeline projections are live; they read from existing event and memory stores and do not add authority by themselves.
6
6
 
7
+ ## Requirements
8
+
9
+ - Node 20+.
10
+ - ESM-only. Add `"type": "module"` to your `package.json`, use `.mjs`, or use
11
+ a build tool/runtime that handles ESM. CommonJS `require()` is not shipped in
12
+ `0.1.x`.
13
+
7
14
  ## Quickstart
8
15
 
9
16
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aletheia-labs/episodic",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Subjective time and episodic continuity projections for Aletheia memory stores.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -19,7 +19,7 @@
19
19
  "LICENSE"
20
20
  ],
21
21
  "dependencies": {
22
- "@aletheia-labs/core": "0.1.0"
22
+ "@aletheia-labs/core": "0.1.1"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/node": "^22.10.0",