-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.26 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
{
"name": "samemind",
"version": "0.6.5",
"description": "OKF-compatible memory for AI coding agents — identity, work-ledger and kanban in one plain-markdown bundle, git-native, zero-infra.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/alexgrebeshok-coder/samemind.git"
},
"homepage": "https://github.com/alexgrebeshok-coder/samemind#readme",
"bugs": {
"url": "https://github.com/alexgrebeshok-coder/samemind/issues"
},
"bin": {
"samemind": "bin/samemind.mjs"
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test tools/*.test.mjs",
"validate": "node tools/okf-query.mjs validate",
"validate:demo": "OKF_ROOT=demo node tools/okf-query.mjs validate"
},
"keywords": [
"memory",
"ai-agents",
"agent",
"mcp",
"okf",
"second-brain",
"markdown",
"claude",
"claude-code",
"cursor",
"llm",
"git-native",
"context"
],
"files": [
"bin/",
"lib/",
"tools/",
"demo/",
"docs/",
"README.md",
"CONTRIBUTING.md",
"INSTALL_FOR_AGENTS.md",
"LICENSE",
"!**/.index",
"!**/.index/**",
"!tools/*.test.mjs"
],
"optionalDependencies": {
"sqlite-vec": "^0.1.9"
}
}