monomind 2.10.30 → 2.10.31
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 +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monomind",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.31",
|
|
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,7 +21,7 @@
|
|
|
21
21
|
"LICENSE"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@monoes/monomindcli": "2.10.
|
|
24
|
+
"@monoes/monomindcli": "2.10.31"
|
|
25
25
|
},
|
|
26
26
|
"overrides": {
|
|
27
27
|
"hono": ">=4.13.5",
|
|
@@ -102,17 +102,21 @@
|
|
|
102
102
|
"scripts": {
|
|
103
103
|
"postinstall": "node -e \"if(process.platform!=='win32'){try{require('child_process').execSync('find node_modules -name ._* -delete 2>/dev/null',{stdio:'ignore'})}catch{}}\"",
|
|
104
104
|
"dev": "cd packages/@monomind/cli && tsx watch src/index.ts",
|
|
105
|
-
"build": "pnpm
|
|
105
|
+
"build": "pnpm -r run build",
|
|
106
106
|
"build:ts": "cd packages/@monomind/cli && npm run build",
|
|
107
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
107
108
|
"check:versions": "node scripts/check-publish-versions.mjs",
|
|
108
109
|
"docs:counts": "node scripts/generate-doc-counts.mjs",
|
|
109
110
|
"docs:counts:check": "node scripts/generate-doc-counts.mjs --check",
|
|
110
111
|
"test": "vitest",
|
|
111
112
|
"test:all": "vitest --config vitest.workspace.ts",
|
|
113
|
+
"test:run": "vitest run",
|
|
114
|
+
"test:all:run": "vitest run --config vitest.workspace.ts",
|
|
112
115
|
"test:ui": "vitest --ui",
|
|
113
116
|
"test:security": "vitest run tests/security/",
|
|
114
117
|
"test:semantic-eval": "node --test tests/memory/cognee-port-eval.test.mjs",
|
|
115
118
|
"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",
|
|
116
120
|
"lint": "biome check",
|
|
117
121
|
"lint:fix": "biome check --write",
|
|
118
122
|
"lint:skills": "node scripts/lint-skills.mjs",
|