ai-mind-map 1.1.0 → 1.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 (1) hide show
  1. package/package.json +9 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-mind-map",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "AI Mind Map — MCP server that reduces AI coding agent token usage by 80-99% through persistent codebase memory, knowledge graphs, and intelligent context management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -25,7 +25,6 @@
25
25
  "inspect": "node --inspect dist/index.js",
26
26
  "test": "npx tsx --test tests/*.test.ts",
27
27
  "test:watch": "npx tsx --test --watch tests/*.test.ts",
28
- "postinstall": "node dist/cli.js doctor 2>/dev/null || true",
29
28
  "prepublishOnly": "npm run build && npm test"
30
29
  },
31
30
  "repository": {
@@ -41,7 +40,6 @@
41
40
  "node": ">=18.0.0"
42
41
  },
43
42
  "dependencies": {
44
- "@anthropic-ai/sdk": "^0.39.0",
45
43
  "@modelcontextprotocol/sdk": "^1.12.1",
46
44
  "better-sqlite3": "^11.8.2",
47
45
  "chokidar": "^4.0.3",
@@ -49,6 +47,9 @@
49
47
  "ignore": "^7.0.4",
50
48
  "simple-git": "^3.27.0",
51
49
  "tree-sitter": "^0.22.4",
50
+ "zod": "^3.24.4"
51
+ },
52
+ "optionalDependencies": {
52
53
  "tree-sitter-bash": "*",
53
54
  "tree-sitter-c": "*",
54
55
  "tree-sitter-c-sharp": "*",
@@ -63,10 +64,13 @@
63
64
  "tree-sitter-python": "*",
64
65
  "tree-sitter-ruby": "*",
65
66
  "tree-sitter-rust": "*",
66
- "tree-sitter-typescript": "*",
67
- "zod": "^3.24.4"
67
+ "tree-sitter-typescript": "*"
68
+ },
69
+ "overrides": {
70
+ "tree-sitter": "^0.22.4"
68
71
  },
69
72
  "devDependencies": {
73
+ "@anthropic-ai/sdk": "^0.39.0",
70
74
  "@types/better-sqlite3": "^7.6.13",
71
75
  "@types/node": "^22.15.0",
72
76
  "tsx": "^4.22.4",