-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (143 loc) · 3.82 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (143 loc) · 3.82 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "myagentmemory",
"version": "0.5.2",
"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"
},
"./plugin-bootstrap": {
"types": "./dist/plugin-bootstrap.d.ts",
"default": "./dist/plugin-bootstrap.js"
},
"./plugin-host": {
"types": "./dist/plugin-host.d.ts",
"default": "./dist/plugin-host.js"
},
"./completions": {
"types": "./dist/completions.d.ts",
"default": "./dist/completions.js"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"default": "./dist/hooks.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/core.ts",
"src/cli-spec.ts",
"src/completions.ts",
"src/hooks.ts",
"src/plugin-host.ts",
"src/plugin-bootstrap.ts",
"skills",
"scripts/install-skills.sh",
"scripts/install-skills.ps1",
"scripts/postinstall.cjs",
"dist/cli.d.ts",
"dist/cli.js",
"dist/core.d.ts",
"dist/core.js",
"dist/cli-spec.d.ts",
"dist/cli-spec.js",
"dist/completions.d.ts",
"dist/completions.js",
"dist/hooks.d.ts",
"dist/hooks.js",
"dist/plugin-bootstrap.d.ts",
"dist/plugin-bootstrap.js",
"dist/plugin-host.d.ts",
"dist/plugin-host.js",
"dist/plugin-runtime.d.ts",
"dist/plugin-runtime.js",
"dist/plugin-service.d.ts",
"dist/plugin-service.js",
"dist/mcp-server.d.ts",
"dist/mcp-server.js",
"dist/upgrade.d.ts",
"dist/upgrade.js",
"docs/official-plugin-bootstrap.md",
"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",
"eval:regression": "bun eval/run.ts --dataset eval/datasets/agent-memory-regression-v1.json",
"eval:longmemeval": "bun eval/longmemeval.ts",
"eval:token-savings": "bun eval/token-savings.ts",
"prepare": "npm run build:lib",
"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 --timeout 15000",
"test:eval": "bun test test/eval.test.ts",
"test:harness": "npm run build:cli && bun test test/harness.test.ts --timeout 60000",
"test:token-savings": "bun test test/token-savings.test.ts",
"eval:harness": "bun eval/harness.ts",
"verify": "bash scripts/verify.sh",
"verify:quick": "bash scripts/verify.sh --quick",
"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": {
"esbuild": "^0.28.1",
"rimraf": "^6.1.3",
"glob": "^13.0.3"
}
}