@levalicious/server-memory 0.0.5 → 0.0.7

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.
@@ -2,7 +2,7 @@ import { describe, it, expect, beforeEach, afterEach } from '@jest/globals';
2
2
  import { promises as fs } from 'fs';
3
3
  import path from 'path';
4
4
  import os from 'os';
5
- import { createServer } from '../index.js';
5
+ import { createServer } from '../server.js';
6
6
  import { createTestClient, callTool } from './test-utils.js';
7
7
  describe('MCP Memory Server E2E Tests', () => {
8
8
  let testDir;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@levalicious/server-memory",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "MCP server for enabling memory for Claude through a knowledge graph",
5
5
  "license": "MIT",
6
6
  "author": "Levalicious",
@@ -20,11 +20,13 @@
20
20
  "test": "NODE_OPTIONS='--experimental-vm-modules' jest"
21
21
  },
22
22
  "dependencies": {
23
- "@modelcontextprotocol/sdk": "1.22.0"
23
+ "@modelcontextprotocol/sdk": "1.22.0",
24
+ "proper-lockfile": "^4.1.2"
24
25
  },
25
26
  "devDependencies": {
26
27
  "@types/jest": "^30.0.0",
27
28
  "@types/node": "^24",
29
+ "@types/proper-lockfile": "^4.1.4",
28
30
  "jest": "^30.2.0",
29
31
  "shx": "^0.4.0",
30
32
  "ts-jest": "^29.4.5",