-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.22 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
{
"name": "ownmem",
"version": "0.6.0",
"description": "Git-native project memory for AI coding agents. Deterministic local recall and evidence-governed evolution for Claude Code, Codex, Cursor, and Gemini CLI.",
"type": "module",
"license": "Apache-2.0",
"author": "grpcer",
"homepage": "https://github.com/grpcer/ownmem#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/grpcer/ownmem.git"
},
"bugs": {
"url": "https://github.com/grpcer/ownmem/issues"
},
"engines": {
"node": ">=20.6.0"
},
"bin": {
"ownmem": "bin/ownmem.mjs"
},
"exports": {
".": "./lib/index.mjs",
"./schemas/*": "./schemas/*"
},
"files": [
"benchmarks/",
"bin/",
"lib/",
"schemas/",
"test/",
"README.md",
"LICENSE",
"NOTICE",
"CHANGELOG.md"
],
"scripts": {
"test": "node ./test/structure-self-test.mjs && node ./test/public-self-test.mjs && node ./test/evolution-self-test.mjs",
"test:structure": "node ./test/structure-self-test.mjs",
"benchmark": "node ./benchmarks/public-benchmark.mjs --iterations 20",
"benchmark:release": "node ./benchmarks/public-benchmark.mjs --iterations 100",
"verify:release": "npm test && npm run benchmark:release && npm pack --dry-run --json"
},
"dependencies": {
"ajv": "^8.20.0",
"yaml": "^2.9.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"agent-memory",
"agent-memory-system",
"agentic-memory",
"ai-agent-memory",
"ai-agent-memory-system",
"ai",
"ai-coding-agent",
"ai-coding-assistant",
"ai-memory",
"ai-memory-system",
"antigravity",
"bm25",
"claude-code",
"claude-code-memory",
"coding-agent",
"coding-agent-memory",
"coding-agents",
"codex",
"codex-memory",
"context-management",
"cursor",
"deterministic-retrieval",
"engineering-memory",
"gemini-cli",
"git-native",
"grok-cli",
"llm-memory",
"local-first",
"long-term-memory",
"markdown-memory",
"memory",
"offline-memory",
"ownmem",
"persistent-memory",
"project-memory",
"repository-context",
"repository-memory",
"software-engineering-memory"
]
}