-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.93 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "myagentmemory",
"version": "0.4.12",
"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/agent-memory"
},
"type": "module",
"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",
"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"
}
}