{ "name": "repomemory", "version": "1.11.0", "description": "Your codebase never forgets. Persistent, structured memory for AI coding agents.", "type": "module", "bin": { "repomemory": "dist/index.js" }, "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./mcp": { "types": "./dist/mcp/server.d.ts", "default": "./dist/mcp/server.js" } }, "scripts": { "sync:versions": "node scripts/sync-server-version.js", "check:release": "node scripts/check-release-consistency.js", "build": "npm run sync:versions && node scripts/build.js", "typecheck": "tsc --noEmit", "format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts' 'scripts/**/*.js'", "format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts' 'scripts/**/*.js'", "lint": "npm run typecheck && npm run format:check", "dev": "tsx src/index.ts", "start": "node dist/index.js", "test": "vitest run", "test:watch": "vitest", "test:e2e": "vitest run tests/e2e", "prepublishOnly": "npm run check:release && npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/DanielGuru/repomemory.git" }, "homepage": "https://github.com/DanielGuru/repomemory#readme", "bugs": { "url": "https://github.com/DanielGuru/repomemory/issues" }, "keywords": [ "ai", "memory", "context", "coding-agent", "claude", "claude-code", "cursor", "copilot", "windsurf", "cline", "aider", "mcp", "mcp-server", "repository", "knowledge-base", "gemini", "grok", "context-engineering", "ai-memory", "codebase-context" ], "mcpName": "io.github.DanielGuru/repomemory", "author": "DanielGuru", "license": "MIT", "dependencies": { "@anthropic-ai/sdk": "^0.74.0", "@clack/prompts": "^1.0.1", "@google/generative-ai": "^0.24.1", "@modelcontextprotocol/sdk": "^1.26.0", "chalk": "^5.6.2", "commander": "^14.0.3", "openai": "^6.22.0", "ora": "^8.2.0", "sql.js": "^1.12.0", "zod": "^4.3.6" }, "devDependencies": { "@types/node": "^25.2.3", "prettier": "^3.8.1", "tsx": "^4.21.0", "typescript": "^5.9.3", "vitest": "^3.1.0" }, "engines": { "node": ">=20.0.0" }, "files": [ "dist", "README.md", "LICENSE", ".mcp.json", "skills", "server.json" ] }