th-memory-mcp 2.2.4 → 2.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "th-memory-mcp",
3
- "version": "2.2.4",
3
+ "version": "2.2.7",
4
4
  "mcpName": "io.github.worakorn-prince/th-memory-mcp",
5
5
  "description": "Adaptive Memory MCP server - SQLite-backed memory for OpenCode",
6
6
  "author": "worakorn-prince",
@@ -18,6 +18,7 @@
18
18
  "dist",
19
19
  "README.md",
20
20
  "LICENSE",
21
+ "SECURITY.md",
21
22
  "ARCHITECTURE_v2.md",
22
23
  "design.md",
23
24
  "opencode.example.json",
@@ -25,12 +26,21 @@
25
26
  ],
26
27
  "scripts": {
27
28
  "build": "tsc",
28
- "prepublishOnly": "npm run build",
29
+ "prepublishOnly": "npm run version:sync && npm run build",
30
+ "version:sync": "node scripts/sync-version.mjs",
31
+ "version:check": "node scripts/sync-version.mjs --check",
29
32
  "start": "node dist/index.js",
30
33
  "inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
31
34
  "test": "npm run build && node --test test/*.test.mjs",
32
35
  "distill": "node dist/distill.js",
33
- "quickstart": "npm run build && node scripts/quickstart.mjs"
36
+ "quickstart": "npm run build && node scripts/quickstart.mjs",
37
+ "benchmark": "node repro/run.mjs",
38
+ "benchmark:quick": "node benchmark/run.mjs --profile quick --out benchmark/results",
39
+ "benchmark:normal": "node benchmark/run.mjs --profile normal --out benchmark/results",
40
+ "benchmark:heavy": "node benchmark/run.mjs --profile heavy --out benchmark/results",
41
+ "benchmark:all-profiles": "npm run benchmark:quick && npm run benchmark:normal && npm run benchmark:heavy",
42
+ "benchmark:pre-release": "npm run build && npm test && npm run benchmark:all-profiles",
43
+ "benchmark:viewer": "npx serve . -l 3000"
34
44
  },
35
45
  "engines": {
36
46
  "node": ">=20"