{
	"name": "myagentmemory",
	"version": "0.4.12",
	"description": "Persistent memory for coding agents (Claude Code, 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/agent-memory"
	},
	"type": "module",
	"keywords": [
		"memory",
		"search",
		"qmd",
		"scratchpad",
		"daily-log",
		"claude-code",
		"codex",
		"cursor",
		"agent",
		"agent-memory",
		"coding-agent"
	],
	"author": "jayzeng",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/jayzeng/agent-memory.git"
	},
	"bugs": {
		"url": "https://github.com/jayzeng/agent-memory/issues"
	},
	"homepage": "https://github.com/jayzeng/agent-memory#readme",
	"files": [
		"src",
		"skills",
		"scripts",
		"dist",
		"README.md",
		"LICENSE"
	],
	"publishConfig": {
		"access": "public"
	},
	"scripts": {
		"postinstall": "node scripts/postinstall.cjs",
		"build": "tsc -p tsconfig.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\")'\"",
		"prepack": "npm run build:lib && bun run build:cli",
		"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",
		"install-skills": "bash scripts/install-skills.sh"
	},
	"devDependencies": {
		"@biomejs/biome": "^2.4.0",
		"@types/node": "^25.3.0",
		"tsx": "^4.0.0",
		"typescript": "^5.9.3"
	},
	"overrides": {
		"rimraf": "^6.1.3",
		"glob": "^13.0.3"
	}
}
