-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.67 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
{
"name": "@pify/compact",
"version": "0.4.1",
"description": "Proactive auto-compaction: when the context window crosses a threshold, compact between turns so a long session never hits the wall or needs a restart",
"keywords": [
"pi-package",
"pi-extension",
"pi",
"pify",
"compaction",
"context",
"auto-compact"
],
"homepage": "https://github.com/pifydev/compact#readme",
"bugs": {
"url": "https://github.com/pifydev/compact/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pifydev/compact.git"
},
"license": "MIT",
"author": "Pify maintainers",
"type": "module",
"engines": {
"node": ">=22.19.0"
},
"files": [
"extensions",
"src",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./extensions/compact.ts"
]
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "npm run typecheck && npm test"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
},
"typebox": {
"optional": true
}
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.85.1",
"@earendil-works/pi-coding-agent": "^0.85.1",
"@earendil-works/pi-tui": "^0.85.1",
"@types/node": "^22.10.2",
"typebox": "^1.1.38",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
}
}