-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 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
{
"name": "@agent-connect/memory",
"version": "0.3.0",
"description": "Bootstrap durable project memory for developers and coding agents.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bin": {
"agent-memory": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && chmod +x dist/cli.js",
"clean": "rm -rf dist",
"dogfood:init": "node scripts/dogfood/init.mjs",
"dogfood:exercise": "node scripts/dogfood/exercise.mjs",
"dogfood:repair": "node scripts/dogfood/repair.mjs",
"dogfood:status": "node scripts/dogfood/status.mjs",
"pack:dry-run": "npm pack --dry-run",
"prepack": "npm run build",
"smoke:consumer": "node scripts/smoke/consumer.mjs",
"smoke:real-provider": "node scripts/smoke/real-provider.mjs",
"test": "npm run build && npm run test:unit",
"test:unit": "node --test test/*.test.js"
},
"engines": {
"node": ">=18"
},
"keywords": [
"agent",
"developer-tools",
"documentation",
"knowledge-base",
"project-memory",
"scaffolding"
],
"devDependencies": {
"@agent-connect/memory": "^0.3.0",
"@types/node": "^24.7.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"zod": "^4.3.6"
}
}