-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.23 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.23 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
{
"name": "pi-memory",
"version": "0.3.6",
"description": "Pi coding agent extension for memory with qmd-powered semantic search across daily logs, long-term memory, and scratchpad",
"main": "index.ts",
"type": "module",
"keywords": [
"pi",
"pi-coding-agent",
"pi-package",
"memory",
"search",
"qmd",
"scratchpad",
"daily-log"
],
"pi": {
"extensions": [
"./index.ts"
]
},
"author": "jayzeng",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jayzeng/pi-memory.git"
},
"bugs": {
"url": "https://github.com/jayzeng/pi-memory/issues"
},
"homepage": "https://github.com/jayzeng/pi-memory#readme",
"files": [
"index.ts",
"scripts",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"postinstall": "node scripts/postinstall.cjs",
"build": "tsc -p tsconfig.json --noEmit",
"lint": "biome check .",
"test": "npx tsx test/e2e.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"tsx": "^4.0.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@mariozechner/pi-ai": ">=0.0.1",
"@mariozechner/pi-coding-agent": ">=0.0.1",
"@sinclair/typebox": ">=0.34.0"
},
"overrides": {
"rimraf": "^6.1.3",
"glob": "^13.0.3"
}
}