-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.52 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.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
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
{
"name": "ctx-zip",
"version": "1.0.6",
"description": "Keep your AI agent context small and cheap by managing tool bloat and large outputs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"example:mcp-vercel": "tsx examples/mcp/vercel_mcp_search.ts",
"example:mcp-vercel-simple": "tsx examples/mcp/vercel_mcp_simple.ts",
"example:mcp-e2b": "tsx examples/mcp/e2b_mcp_search.ts",
"example:mcp-local": "tsx examples/mcp/local_mcp_search.ts",
"example:tools-weather": "tsx examples/tools/weather_tool_sandbox.ts",
"example:tools-weather-local": "npm run example:tools-weather -- --provider=local",
"example:tools-weather-vercel": "npm run example:tools-weather -- --provider=vercel",
"example:tools-weather-e2b": "npm run example:tools-weather -- --provider=e2b",
"example:ctx-email": "tsx examples/ctx-management/email_management.ts",
"example:ctx-email-write": "tsx examples/ctx-management/email_management.ts --strategy=write-tool-results-to-file",
"example:ctx-email-drop": "tsx examples/ctx-management/email_management.ts --strategy=drop-tool-results",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"test": "tsx tests/*.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"tools",
"context",
"compression",
"mcp",
"model-context-protocol",
"sandbox",
"code-execution",
"progressive-discovery"
],
"author": "Karthik Kalyanaraman",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@connectrpc/connect": "^2.0.0-rc.3",
"zod": "^4.1.11"
},
"peerDependencies": {
"ai": "^5.0.0"
},
"peerDependenciesMeta": {
"@modelcontextprotocol/sdk": {
"optional": true
},
"@vercel/sandbox": {
"optional": true
},
"@e2b/code-interpreter": {
"optional": true
}
},
"optionalDependencies": {
"@e2b/code-interpreter": "^1.5.1",
"@modelcontextprotocol/sdk": "^1.0.4",
"@vercel/sandbox": "^1.0.2"
},
"devDependencies": {
"@ai-sdk/openai": "^2.0.35",
"@connectrpc/connect": "^2.0.0-rc.3",
"@tokenlens/helpers": "^1.3.1",
"@types/node": "^24.5.2",
"@types/prompts": "^2.4.9",
"ai": "^5.0.52",
"chalk": "^5.6.2",
"dotenv": "^17.2.2",
"prompts": "^2.4.2",
"tokenlens": "^1.3.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}