-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.39 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
{
"name": "billion-context-pi",
"version": "0.1.37",
"description": "One billion, not one million. Model-driven context management for the Pi coding agent.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"pi": {
"extensions": [
"./dist/index.js"
]
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"homepage": "https://github.com/ranxianglei/billion-context-pi",
"repository": {
"type": "git",
"url": "git+https://github.com/ranxianglei/billion-context-pi.git"
},
"bugs": {
"url": "https://github.com/ranxianglei/billion-context-pi/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --import tsx --test tests/*.test.ts",
"typecheck": "tsc --noEmit",
"build": "tsup && tsc --emitDeclarationOnly",
"e2e": "node scripts/e2e/run-e2e.mjs"
},
"keywords": [
"pi",
"acp",
"context",
"compression",
"context-management",
"llm",
"pi-package"
],
"author": "ranxianglei",
"license": "MIT",
"type": "module",
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "0.83.0",
"@types/node": "^26.1.2",
"acp-kernel": "0.0.23",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typescript": "^7.0.2"
}
}