-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 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
{
"name": "@context-chef/tanstack-ai",
"version": "0.6.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsdown",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"keywords": [
"tanstack-ai",
"context-chef",
"middleware",
"context-engineering",
"llm",
"compression",
"token-management"
],
"author": "MyPrototypeWhat",
"license": "MIT",
"description": "TanStack AI middleware for context-chef. Transparent history compression, tool result truncation, and token budget management.",
"repository": {
"type": "git",
"url": "https://github.com/MyPrototypeWhat/context-chef.git",
"directory": "packages/tanstack-ai"
},
"homepage": "https://github.com/MyPrototypeWhat/context-chef#readme",
"bugs": {
"url": "https://github.com/MyPrototypeWhat/context-chef/issues"
},
"dependencies": {
"@context-chef/core": "workspace:*"
},
"peerDependencies": {
"@tanstack/ai": "^0.10"
},
"devDependencies": {
"@tanstack/ai": "^0.10.1",
"@types/node": "^25.3.0",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}