{ "name": "@agentmemory/agentmemory", "version": "0.9.27", "description": "Persistent memory for AI coding agents, powered by iii-engine's three primitives", "type": "module", "main": "dist/index.mjs", "types": "dist/index.d.mts", "exports": { ".": { "types": "./dist/index.d.mts", "import": "./dist/index.mjs" }, "./dist/standalone.mjs": "./dist/standalone.mjs", "./package.json": "./package.json" }, "bin": { "agentmemory": "dist/cli.mjs" }, "scripts": { "build": "tsdown && (cp iii-config.yaml dist/ 2>/dev/null || true) && (cp iii-config.docker.yaml dist/ 2>/dev/null || true) && (cp docker-compose.yml dist/ 2>/dev/null || true) && (cp .env.example dist/ 2>/dev/null || true) && mkdir -p dist/viewer && cp src/viewer/index.html dist/viewer/ && cp src/viewer/favicon.svg dist/viewer/", "dev": "tsx src/index.ts", "start": "node dist/cli.mjs", "migrate": "node dist/functions/migrate.js", "test": "vitest run --exclude test/integration.test.ts", "test:watch": "vitest --exclude test/integration.test.ts", "test:integration": "vitest run test/integration.test.ts", "test:all": "vitest run", "skills:gen": "tsx scripts/skills/generate.ts", "skills:check": "tsx scripts/skills/generate.ts --check && tsx scripts/skills/check.ts", "bench:load": "node --import tsx benchmark/load-100k.ts", "eval:longmemeval": "tsx eval/runner/longmemeval.ts", "eval:coding-life": "tsx eval/runner/coding-life.ts" }, "keywords": [ "ai", "agent", "memory", "persistent", "iii-engine", "claude-code", "coding-agent", "context", "observation" ], "files": [ "dist/", "plugin/", "iii-config.yaml", "iii-config.docker.yaml", "docker-compose.yml", ".env.example", "LICENSE", "README.md", "AGENTS.md" ], "author": "Rohit Ghumare ", "license": "Apache-2.0", "repository": { "type": "git", "url": "https://github.com/rohitg00/agentmemory" }, "dependencies": { "@anthropic-ai/claude-agent-sdk": "^0.3.142", "@anthropic-ai/sdk": "^0.100.1", "@clack/prompts": "^1.2.0", "dotenv": "^17.4.2", "iii-sdk": "0.11.2", "picocolors": "^1.1.1", "zod": "^4.0.0" }, "optionalDependencies": { "@node-rs/jieba": "^2.0.1", "@xenova/transformers": "^2.17.2", "onnxruntime-node": "^1.14.0", "onnxruntime-web": "^1.14.0", "tiny-segmenter": "^0.2.0" }, "devDependencies": { "@types/node": "^25.9.1", "tsdown": "^0.21.10", "tsx": "^4.19.0", "typescript": "^6.0.3", "vitest": "^4.1.6" }, "overrides": { "qs": "^6.15.2", "ws": "^8.21.0", "protobufjs": "^7.5.8" }, "engines": { "node": ">=20.0.0" } }