{
	"name": "myagentmemory",
	"version": "0.4.13",
	"description": "agentmemory (agent-memory) is persistent memory for coding agents (Claude Code, OpenAI Codex, Cursor, Agent) with qmd-powered semantic search across daily logs, long-term memory, and scratchpad",
	"main": "./dist/core.js",
	"types": "./dist/core.d.ts",
	"exports": {
		".": {
			"types": "./dist/core.d.ts",
			"default": "./dist/core.js"
		}
	},
	"bin": {
		"agent-memory": "./dist/cli.js"
	},
	"type": "module",
	"engines": {
		"node": ">=20"
	},
	"keywords": [
		"agentmemory",
		"agent-memory",
		"agent memory",
		"ai-memory",
		"llm-memory",
		"memory",
		"search",
		"qmd",
		"semantic-search",
		"scratchpad",
		"daily-log",
		"claude-code",
		"openai-codex",
		"codex",
		"cursor",
		"agent",
		"coding-agent",
		"developer-tools",
		"knowledge-management"
	],
	"author": "jayzeng",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/jayzeng/agentmemory.git"
	},
	"bugs": {
		"url": "https://github.com/jayzeng/agentmemory/issues"
	},
	"homepage": "https://github.com/jayzeng/agentmemory#readme",
	"files": [
		"src",
		"skills",
		"scripts",
		"dist/cli.d.ts",
		"dist/cli.js",
		"dist/core.d.ts",
		"dist/core.js",
		"README.md",
		"LICENSE"
	],
	"publishConfig": {
		"access": "public"
	},
	"scripts": {
		"postinstall": "node scripts/postinstall.cjs",
		"build": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.eval.json --noEmit",
		"build:eval": "tsc -p tsconfig.eval.json --noEmit",
		"build:lib": "tsc -p tsconfig.build.json",
		"build:cli": "bun build src/cli.ts --compile --outfile dist/agent-memory --define __VERSION__=\"'$(node -p \"require('./package.json').version\")'\"",
		"eval:feedback": "bun eval/run.ts",
		"prepack": "npm run build:lib",
		"lint": "biome check .",
		"test": "bun test test/unit.test.ts",
		"test:unit": "bun test test/unit.test.ts",
		"test:cli": "bun test test/cli.test.ts",
		"test:eval": "bun test test/eval.test.ts",
		"install-skills": "bash scripts/install-skills.sh"
	},
	"devDependencies": {
		"@biomejs/biome": "^2.4.0",
		"@types/bun": "^1.3.14",
		"@types/node": "^25.3.0",
		"tsx": "^4.0.0",
		"typescript": "^5.9.3"
	},
	"overrides": {
		"rimraf": "^6.1.3",
		"glob": "^13.0.3"
	}
}
