@lumenflow/memory 1.0.0 → 1.3.0

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.
@@ -20,7 +20,7 @@ import path from 'node:path';
20
20
  import { generateMemId } from './mem-id.js';
21
21
  import { appendNode } from './memory-store.js';
22
22
  import { MEMORY_PATTERNS } from './memory-schema.js';
23
- import { WUStateStore } from '@lumenflow/core/dist/wu-state-store.js';
23
+ import { WUStateStore } from '@lumenflow/core/wu-state-store';
24
24
  /**
25
25
  * Memory directory path relative to base directory
26
26
  */
@@ -14,7 +14,7 @@
14
14
  import fs from 'node:fs/promises';
15
15
  import path from 'node:path';
16
16
  import { loadMemory, appendNode } from './memory-store.js';
17
- import { validateLaneFormat } from '@lumenflow/core/dist/lane-checker.js';
17
+ import { validateLaneFormat } from '@lumenflow/core/lane-checker';
18
18
  /**
19
19
  * Memory directory path relative to base
20
20
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumenflow/memory",
3
- "version": "1.0.0",
3
+ "version": "1.3.0",
4
4
  "description": "Memory layer for LumenFlow workflow framework - session tracking, context recovery, and agent coordination",
5
5
  "keywords": [
6
6
  "lumenflow",
@@ -45,20 +45,14 @@
45
45
  ],
46
46
  "dependencies": {
47
47
  "ms": "^2.1.3",
48
- "yaml": "^2.8.0",
49
- "zod": "^4.3.5"
48
+ "yaml": "^2.8.2",
49
+ "zod": "^4.3.5",
50
+ "@lumenflow/core": "1.3.0"
50
51
  },
51
52
  "devDependencies": {
52
- "typescript": "^5.7.0",
53
- "vitest": "^2.1.0"
54
- },
55
- "peerDependencies": {
56
- "@lumenflow/core": "1.0.0"
57
- },
58
- "peerDependenciesMeta": {
59
- "@lumenflow/core": {
60
- "optional": true
61
- }
53
+ "@vitest/coverage-v8": "^4.0.17",
54
+ "typescript": "^5.9.3",
55
+ "vitest": "^4.0.17"
62
56
  },
63
57
  "engines": {
64
58
  "node": ">=22"