-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 962 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 962 Bytes
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
{
"name": "@openlines/openpi-memory",
"version": "0.3.5",
"description": "Global persistent memory for pi coding agent sessions via MEMORY.md injection",
"keywords": [
"pi-package"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/linellazatin/openpi-memory.git"
},
"type": "module",
"main": "./extensions/index.ts",
"engines": {
"node": ">=22"
},
"pi": {
"extensions": [
"./extensions/index.ts"
],
"skills": [
"./skills"
]
},
"scripts": {
"test": "node tests/smoke-test.mjs",
"typecheck": "tsc --noEmit"
},
"files": [
"extensions/",
"skills/"
],
"peerDependencies": {
"@earendil-works/pi-coding-agent": ">=0.84.2",
"@earendil-works/pi-tui": ">=0.84.2"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "0.84.2",
"@earendil-works/pi-tui": "0.84.2",
"typebox": "1.3.16",
"typescript": "7.0.2"
}
}