-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.52 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
{
"name": "prime-agent-context",
"version": "9.2.0",
"description": "Purpose-aware context management for long-running Prime Agent sessions",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BaseModelAI/prime-context.git"
},
"homepage": "https://github.com/BaseModelAI/prime-context#readme",
"bugs": {
"url": "https://github.com/BaseModelAI/prime-context/issues"
},
"keywords": [
"pi-package",
"prime-agent",
"context-management"
],
"engines": {
"node": ">=22.8.0"
},
"files": [
"dist",
"scripts/patch-prime-agent.mjs",
"assets/benchmarks",
"README.md",
"BENCHMARKS.md",
"RECENT_RESULTS.md",
"CHANGELOG.md",
"LICENSE"
],
"pi": {
"extensions": [
"./dist/index.js"
]
},
"scripts": {
"build": "tsup --config tsup.config.ts",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"package:smoke": "node scripts/package-smoke.mjs"
},
"devDependencies": {
"@types/node": "^24.3.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.0"
},
"dependencies": {
"@earendil-works/pi-ai": "https://github.com/PrimeIntellect-ai/prime-agent/releases/download/v0.9.1/prime-agent-ai-0.9.1.tgz",
"@earendil-works/pi-coding-agent": "https://github.com/PrimeIntellect-ai/prime-agent/releases/download/v0.9.1/prime-agent-0.9.1.tgz",
"diff": "^9.0.0",
"typebox": "^1.3.9"
},
"bin": {
"prime-context-patch-agent": "scripts/patch-prime-agent.mjs"
}
}