-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.07 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
{
"name": "team-brain",
"version": "1.0.0",
"description": "Git-native shared AI memory for teams — auto-generates CLAUDE.md, .cursorrules, and AGENTS.md",
"main": "scripts/store.js",
"scripts": {
"pretest": "rm -rf /tmp/test-brain",
"test": "node scripts/store.js init /tmp/test-brain && node scripts/store.js add-entry /tmp/test-brain lesson 'Test lesson' 'Test content' tester test && node scripts/search.js search /tmp/test-brain test && echo 'All checks passed'",
"posttest": "rm -rf /tmp/test-brain",
"init": "node scripts/store.js init",
"generate": "node scripts/generator.js generate",
"stats": "node scripts/stats.js"
},
"keywords": [
"claude-code",
"team-memory",
"shared-context",
"ai-coding",
"claude",
"cursor",
"copilot",
"agents-md",
"adr"
],
"author": "Manavarya Singh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Manavarya09/team-brain.git"
},
"homepage": "https://github.com/Manavarya09/team-brain#readme",
"engines": {
"node": ">=16.0.0"
}
}