@datafrog-io/n2n-memory 1.2.1 → 1.2.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.
package/package.json CHANGED
@@ -1,29 +1,73 @@
1
1
  {
2
2
  "name": "@datafrog-io/n2n-memory",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Project-local knowledge-graph memory MCP server for AI context isolation.",
5
5
  "main": "build/index.js",
6
6
  "bin": {
7
7
  "n2n-memory": "build/index.js"
8
8
  },
9
- "repository": "n2ns/n2n-memory",
9
+ "files": [
10
+ "build",
11
+ "docs",
12
+ "README.md",
13
+ "llms.txt",
14
+ "CHANGELOG.md",
15
+ "LICENSE"
16
+ ],
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/n2ns/n2n-memory.git"
20
+ },
21
+ "homepage": "https://github.com/n2ns/n2n-memory#readme",
22
+ "bugs": {
23
+ "url": "https://github.com/n2ns/n2n-memory/issues"
24
+ },
10
25
  "publishConfig": {
11
26
  "access": "public",
12
27
  "provenance": true
13
28
  },
14
29
  "type": "module",
15
30
  "scripts": {
16
- "build": "tsc",
31
+ "clean": "node -e \"require('node:fs').rmSync('build', { recursive: true, force: true })\"",
32
+ "build": "npm run clean && tsc -p tsconfig.build.json",
17
33
  "start": "node build/index.js",
18
34
  "dev": "tsx src/index.ts",
19
- "test": "mocha --node-option import=tsx src/test/**/*.test.ts",
20
- "lint": "eslint src/**/*.ts"
35
+ "test": "vitest run",
36
+ "lint": "eslint src/**/*.ts",
37
+ "audit": "npm audit",
38
+ "audit:prod": "npm audit --omit=dev",
39
+ "pack:dry-run": "npm pack --dry-run",
40
+ "check": "npm run lint && npm test && npm run build && npm run audit && npm run pack:dry-run",
41
+ "prepublishOnly": "npm run check"
21
42
  },
22
43
  "keywords": [
23
44
  "mcp",
45
+ "mcp-server",
46
+ "model-context-protocol",
47
+ "modelcontextprotocol",
24
48
  "memory",
49
+ "agent-memory",
50
+ "ai-memory",
51
+ "project-memory",
52
+ "project-local-memory",
53
+ "project-local-knowledge-graph",
54
+ "mcp-memory-server",
55
+ "coding-agent-memory",
56
+ "repository-memory",
57
+ "repository-context",
58
+ "context-memory",
59
+ "local-first-memory",
60
+ "coding-assistant-memory",
61
+ "project-memory-server",
25
62
  "context",
26
63
  "ai",
64
+ "ai-developer-tools",
65
+ "coding-agent",
66
+ "local-first",
67
+ "claude",
68
+ "claude-desktop",
69
+ "cursor",
70
+ "vscode",
27
71
  "knowledge-graph"
28
72
  ],
29
73
  "author": "DataFrog IO",
@@ -33,28 +77,26 @@
33
77
  "npm": ">=10.0.0"
34
78
  },
35
79
  "dependencies": {
36
- "@modelcontextprotocol/sdk": "^1.25.1",
80
+ "@modelcontextprotocol/sdk": "^1.29.0",
37
81
  "@types/proper-lockfile": "^4.1.4",
38
82
  "async-mutex": "^0.5.0",
39
- "fs-extra": "^11.3.3",
83
+ "fs-extra": "^11.3.5",
40
84
  "proper-lockfile": "^4.1.2",
41
- "zod": "^4.2.1"
85
+ "zod": "^4.4.3"
42
86
  },
43
87
  "devDependencies": {
44
88
  "@types/chai": "^5.2.3",
45
89
  "@types/fs-extra": "^11.0.4",
46
- "@types/mocha": "^10.0.10",
47
90
  "@types/node": "^25.0.3",
48
91
  "@types/sinon": "^21.0.0",
49
92
  "@typescript-eslint/eslint-plugin": "^8.50.0",
50
93
  "@typescript-eslint/parser": "^8.50.0",
51
94
  "chai": "^6.2.1",
52
95
  "eslint": "^9.39.2",
53
- "mocha": "^11.7.5",
54
96
  "sinon": "^21.0.1",
55
- "ts-node": "^10.9.2",
56
97
  "tsx": "^4.21.0",
57
98
  "typescript": "^5.9.3",
58
- "typescript-eslint": "^8.50.0"
99
+ "typescript-eslint": "^8.50.0",
100
+ "vitest": "^4.1.8"
59
101
  }
60
- }
102
+ }