-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.66 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
{
"name": "myagentmemory",
"version": "0.5.5",
"description": "Local-first persistent memory for coding agents with plain Markdown storage and optional qmd search",
"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",
"coding-agent",
"developer-tools",
"knowledge-management"
],
"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",
"skills",
"scripts/install-skills.sh",
"scripts/install-skills.ps1",
"scripts/postinstall.cjs",
"dist/cli.d.ts",
"dist/cli.js",
"dist/core-cli.d.ts",
"dist/core-cli.js",
"dist/core.d.ts",
"dist/core.js",
"dist/external-command.d.ts",
"dist/external-command.js",
"dist/launcher.d.ts",
"dist/launcher.js",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"postinstall": "node scripts/postinstall.cjs",
"check:public-boundary": "node scripts/check-public-boundary.mjs",
"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 && node scripts/assemble-portable-cli.cjs",
"build:cli": "bun build src/launcher.ts --compile --outfile dist/agent-memory --define __VERSION__=\"'$(node -p \"require('./package.json').version\")'\"",
"eval:feedback": "bun eval/run.ts",
"prepare": "npm run build:lib",
"prepack": "npm run check:public-boundary && 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/external-command.test.ts --timeout 15000",
"test:eval": "bun test test/eval.test.ts"
},
"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"
}
}