-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.87 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
{
"name": "@siliconstate/pi-memory",
"version": "2.2.0",
"description": "Durable memory for Pi agents — cross-platform native binary with prebuilds when available (C + SQLite)",
"type": "module",
"license": "MIT",
"author": "SiliconState",
"homepage": "https://github.com/SiliconState/Pi-Memory",
"repository": {
"type": "git",
"url": "git+https://github.com/SiliconState/Pi-Memory.git"
},
"bugs": {
"url": "https://github.com/SiliconState/Pi-Memory/issues"
},
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"agent-memory",
"sqlite",
"compaction",
"extension"
],
"os": [
"darwin",
"linux",
"win32"
],
"engines": {
"node": ">=18.17"
},
"bin": {
"pi-memory": "./bin/pi-memory.js",
"pi-memory-setup": "./bin/pi-memory-setup.js",
"pi-memory-doctor": "./scripts/doctor.mjs"
},
"scripts": {
"setup": "node ./scripts/setup.mjs",
"doctor": "node ./scripts/doctor.mjs",
"postinstall": "node ./scripts/postinstall.mjs",
"test:smoke": "node ./scripts/test-smoke.mjs"
},
"files": [
"bin",
"docs",
"extensions",
"native/compat.h",
"native/getopt_port.h",
"native/Makefile",
"native/Makefile.win",
"native/pi-memory.c",
"native/sqlite3.c",
"native/sqlite3.h",
"prebuilds",
"prompts",
"scripts",
"skills",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"LICENSE",
"SECURITY.md"
],
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*"
},
"peerDependenciesMeta": {
"@mariozechner/pi-ai": { "optional": true },
"@mariozechner/pi-coding-agent": { "optional": true }
},
"pi": {
"extensions": [
"./extensions/pi-memory-compact.ts"
],
"skills": [
"./skills"
],
"prompts": [
"./prompts"
]
}
}