-
-
Notifications
You must be signed in to change notification settings - Fork 623
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.64 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "pxpipe-proxy",
"version": "0.13.1",
"description": "Token-saving proxy for Claude Code: renders bulky context (system prompt, tool docs, old history) as dense PNGs to cut input tokens. Runs on Node and Cloudflare Workers.",
"type": "module",
"bin": {
"pxpipe": "bin/cli.js"
},
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
},
"./transform": {
"types": "./dist/core/library.d.ts",
"import": "./dist/core/library.js"
},
"./measurement": {
"types": "./dist/core/measurement.d.ts",
"import": "./dist/core/measurement.js"
},
"./applicability": {
"types": "./dist/core/applicability.d.ts",
"import": "./dist/core/applicability.js"
},
"./proxy": {
"types": "./dist/core/proxy.d.ts",
"import": "./dist/core/proxy.js"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js"
},
"./worker": {
"types": "./dist/worker.d.ts",
"import": "./dist/worker.js"
}
},
"files": [
"bin/",
"dist/",
"!dist/**/*.map",
"assets/*LICENSE.txt",
"README.md",
"SECURITY.md",
"docs/SECURITY_MODEL.md",
"LICENSE"
],
"scripts": {
"audit": "pnpm audit --prod --audit-level high",
"build": "node scripts/build.mjs",
"build:atlas": "tsx scripts/gen-atlas.ts",
"dev:node": "tsx watch src/node.ts",
"dev:worker": "wrangler dev",
"deploy:worker": "wrangler deploy",
"restart": "node scripts/restart.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "pnpm run typecheck && pnpm test && pnpm run build",
"vendor:ui": "node scripts/vendor-ui.mjs"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"fable-5",
"proxy",
"token-optimization",
"prompt-cache",
"vision-tokens",
"cloudflare-workers"
],
"engines": {
"node": ">=20.19"
},
"packageManager": "pnpm@10.21.0",
"pnpm": {
"overrides": {
"undici": "7.29.0"
}
},
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^5.20260804.1",
"@napi-rs/canvas": "^1.0.3",
"@types/node": "^26.1.2",
"esbuild": "^0.28.1",
"tsx": "^4.23.5",
"typescript": "^7.0.2",
"vite": "^8.2.0",
"vitest": "^4.1.10",
"wrangler": "^4.93.0"
},
"dependencies": {
"gpt-tokenizer": "^3.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamchong/pxpipe.git"
},
"homepage": "https://github.com/teamchong/pxpipe#readme",
"bugs": {
"url": "https://github.com/teamchong/pxpipe/issues"
}
}