-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.9 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
{
"name": "billion-context",
"version": "0.1.103",
"description": "Universal context-compression proxy for AI coding agents. Sits between any agent and its model API, rewriting Anthropic/OpenAI streams with acp-kernel compression. Any agent that can set a base URL (Claude Code, Codex, Cursor, Aider) works out of the box.",
"type": "module",
"main": "dist/index.js",
"bin": {
"bili": "./dist/index.js",
"bili-proxy": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"registry:snapshot": "node scripts/update-registry-snapshot.mjs",
"codex-models:snapshot": "node scripts/update-codex-models-snapshot.mjs",
"typecheck": "tsc --noEmit --project tsconfig.build.json",
"test": "node --import tsx --test tests/*.test.ts",
"start": "node dist/index.js",
"test:e2e": "node --import tsx --test tests/e2e/e2e-codex.test.ts"
},
"keywords": [
"context",
"compression",
"proxy",
"acp",
"ai",
"agent",
"claude-code",
"cursor",
"codex",
"aider",
"anthropic",
"openai",
"pi-package"
],
"license": "MIT",
"author": "ranxianglei",
"repository": {
"type": "git",
"url": "git+https://github.com/ranxianglei/billion-context.git"
},
"homepage": "https://github.com/ranxianglei/billion-context#readme",
"bugs": {
"url": "https://github.com/ranxianglei/billion-context/issues"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/node-forge": "^1.3.14",
"acp-kernel": "0.0.63",
"fzstd": "0.1.1",
"node-forge": "^1.4.0",
"tar": "^7.5.22",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"undici": "^7.29.0"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./dist/agent/pi.js"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}