monomind 2.11.3 → 2.11.4

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 +5 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monomind",
3
- "version": "2.11.3",
3
+ "version": "2.11.4",
4
4
  "description": "Open-source CLI extension for Claude Code and Antigravity (agy). Adds an MCP server with a codebase knowledge graph, persistent memory, multi-agent coordination, and reusable slash commands. Apache 2.0 licensed, runs locally, no data leaves your machine.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,27 +21,7 @@
21
21
  "LICENSE"
22
22
  ],
23
23
  "dependencies": {
24
- "@monoes/monomindcli": "2.11.3"
25
- },
26
- "overrides": {
27
- "hono": ">=4.13.5",
28
- "ws": "$ws",
29
- "axios": ">=1.16.0",
30
- "qs": ">=6.16.0",
31
- "esbuild": ">=0.28.1",
32
- "protobufjs": ">=8.6.6",
33
- "@protobufjs/utf8": ">=1.1.1",
34
- "@grpc/grpc-js": ">=1.14.4",
35
- "onnxruntime-node": ">=1.27.0",
36
- "fast-uri": ">=4.1.3",
37
- "@xmldom/xmldom": ">=0.8.15",
38
- "sharp": ">=0.35.4",
39
- "adm-zip": ">=0.6.1",
40
- "body-parser": ">=1.20.6",
41
- "better-sqlite3": ">=12.0.0",
42
- "nanoid": ">=3.3.17",
43
- "vitest": "^4.1.11",
44
- "@vitest/mocker": ">=4.1.11 <5"
24
+ "@monoes/monomindcli": "2.11.4"
45
25
  },
46
26
  "devDependencies": {
47
27
  "@biomejs/biome": "^2.5.8",
@@ -105,9 +85,10 @@
105
85
  "build": "pnpm -r run build",
106
86
  "build:ts": "cd packages/@monomind/cli && npm run build",
107
87
  "typecheck": "tsc --noEmit -p tsconfig.json",
108
- "check:versions": "node scripts/check-publish-versions.mjs",
88
+ "check:versions": "node scripts/check-publish-versions.mjs && node scripts/check-overrides-source.mjs",
109
89
  "docs:counts": "node scripts/generate-doc-counts.mjs",
110
90
  "docs:counts:check": "node scripts/generate-doc-counts.mjs --check",
91
+ "docs:refs:check": "node scripts/check-doc-refs.mjs",
111
92
  "test": "vitest",
112
93
  "test:all": "vitest --config vitest.workspace.ts",
113
94
  "test:run": "vitest run",
@@ -116,7 +97,7 @@
116
97
  "test:security": "vitest run tests/security/",
117
98
  "test:semantic-eval": "node --test tests/memory/cognee-port-eval.test.mjs",
118
99
  "test:coverage": "vitest run --coverage",
119
- "verify": "pnpm run build && pnpm run typecheck && pnpm run lint && pnpm run test:all:run && pnpm --filter @monoes/monobrowse test && pnpm --filter @monoes/monodesign test && pnpm --filter monofence-ai test",
100
+ "verify": "pnpm run build && pnpm run typecheck && pnpm run lint && pnpm run docs:refs:check && pnpm run test:all:run && pnpm --filter @monoes/monobrowse test && pnpm --filter @monoes/monodesign test && pnpm --filter monofence-ai test",
120
101
  "lint": "biome check",
121
102
  "lint:fix": "biome check --write",
122
103
  "lint:skills": "node scripts/lint-skills.mjs",