-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
package.json
File metadata and controls
52 lines (52 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
{
"name": "slimcontext-mcp-server",
"version": "0.1.2",
"mcpName": "io.github.agentailor/slimcontext-mcp-server",
"description": "MCP Server for SlimContext - AI chat history compression tools",
"type": "module",
"main": "dist/index.js",
"bin": {
"slimcontext-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "prettier --check .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "echo 'No tests configured'"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"chat-history",
"compression",
"slimcontext"
],
"repository": {
"type": "git",
"url": "https://github.com/agentailor/slimcontext-mcp-server"
},
"author": "SlimContext MCP Server",
"license": "MIT",
"dependencies": {
"@langchain/core": "^0.3.75",
"@modelcontextprotocol/sdk": "^1.12.1",
"openai": "^4.57.0",
"slimcontext": "^2.1.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.5.4",
"prettier": "^3.6.2",
"tsx": "^4.19.0",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}