-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.6 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.6 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
{
"name": "@mmcook/pi-brainerd",
"version": "0.3.0",
"description": "Brainerd: repo-local memory, reflection, and session-history rumination across Pi, Codex, and Claude",
"type": "module",
"author": "Myles Cook <mylesmcook@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/MylesMCook/brainerd",
"repository": {
"type": "git",
"url": "git+https://github.com/MylesMCook/brainerd.git"
},
"bugs": {
"url": "https://github.com/MylesMCook/brainerd/issues"
},
"keywords": [
"pi-package",
"brainerd",
"pi-brainerd",
"pi",
"codex",
"claude",
"project-brain",
"repo-memory"
],
"engines": {
"node": ">=20.6.0"
},
"pi": {
"extensions": [
"./dist/extensions"
],
"skills": [
"./skills"
]
},
"files": [
"AGENTS.md",
"agents",
"brain",
"claude-skills",
"codex-skills",
"dist",
"scripts",
"skills",
"SKILL.md",
"README.md",
"LICENSE",
"THIRD-PARTY-NOTICES.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --import tsx --test tests/**/*.test.ts",
"prepack": "npm run build"
},
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@sinclair/typebox": "*"
},
"overrides": {
"fast-xml-parser": "5.5.6"
},
"devDependencies": {
"@mariozechner/pi-ai": "^0.58.0",
"@mariozechner/pi-coding-agent": "^0.58.0",
"@sinclair/typebox": "^0.34.48",
"@types/node": "^24.3.0",
"tsx": "^4.20.5",
"typescript": "^5.7.3"
}
}