-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 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
{
"name": "@inosx/agent-memory",
"version": "0.4.0",
"description": "File-based memory for AI agents — vault, BM25 search, context injection, checkpoints, compaction, Cursor transcript watch/process, postinstall Cursor rules + VS Code folder-open tasks",
"keywords": [
"ai",
"agents",
"memory",
"vault",
"search",
"bm25",
"context-injection",
"session",
"checkpoint",
"compaction"
],
"homepage": "https://github.com/INOSX/agent-memory#readme",
"bugs": {
"url": "https://github.com/INOSX/agent-memory/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/INOSX/agent-memory.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": "Mario Mayerle <mario@inosx.com> (https://inosx.com)",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"agent-memory": "dist/cli.js"
},
"files": [
"dist",
"cursor-rules",
"scripts"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "tsc --noEmit",
"pretest": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && node scripts/sync-cursor-rule.mjs",
"postinstall": "node scripts/postinstall.mjs",
"sync:cursor-rule": "node scripts/sync-cursor-rule.mjs"
},
"dependencies": {
"commander": "^14.0.3",
"minisearch": "^7.2.0"
},
"devDependencies": {
"@types/node": "^22.19.15",
"typescript": "^5.8.0",
"vitest": "^4.1.0"
}
}