-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.2 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.2 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
{
"name": "tooltrim",
"version": "0.1.2",
"description": "Tooltrim — an open-source MCP proxy: aggregate N MCP servers, filter and shrink tool descriptions, and trace every call.",
"keywords": [
"mcp",
"tooltrim",
"model-context-protocol",
"proxy",
"gateway",
"llm",
"tools",
"context-window"
],
"license": "MIT",
"author": "Tooltrim contributors",
"homepage": "https://github.com/false200/tooltrim",
"repository": {
"type": "git",
"url": "https://github.com/false200/tooltrim.git"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"tooltrim": "bin/tooltrim"
},
"files": [
"bin",
"dist",
"examples",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"bench": "tsx bench/run.ts",
"bench:preflight": "tsx bench/preflight.ts",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@hono/node-server": "^1.13.0",
"@modelcontextprotocol/sdk": "^1.18.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.55.0",
"@opentelemetry/resources": "^1.30.0",
"@opentelemetry/sdk-node": "^0.55.0",
"@opentelemetry/semantic-conventions": "^1.28.0",
"cac": "^6.7.14",
"cosmiconfig": "^9.0.0",
"gpt-tokenizer": "^2.7.0",
"hono": "^4.6.0",
"micromatch": "^4.0.8",
"pino": "^9.5.0",
"prom-client": "^15.1.3",
"yaml": "^2.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.92.0",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}