-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.11 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": "mcp-cache-kit",
"version": "0.1.1",
"description": "Correct, leak-safe caching for the new MCP cache semantics (SEP-2549). Set ttlMs/cacheScope on the server, and honor them safely on the client/proxy so a private result is never served across authorization contexts.",
"type": "module",
"license": "MIT",
"author": "StudioMeyer",
"homepage": "https://github.com/studiomeyer-io/mcp-cache-kit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/studiomeyer-io/mcp-cache-kit.git"
},
"bugs": {
"url": "https://github.com/studiomeyer-io/mcp-cache-kit/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"context-protocol",
"cache",
"caching",
"ttl",
"security",
"sep-2549",
"proxy",
"gateway"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"SECURITY.md"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"attw": "attw --pack .",
"lint": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run typecheck && npm test && npm run attw",
"test:coverage": "vitest run --coverage"
},
"overrides": {
"esbuild": ">=0.28.1"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": ">=1.0.0 <2"
},
"peerDependenciesMeta": {
"@modelcontextprotocol/sdk": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.3",
"@modelcontextprotocol/sdk": "^1.29.0",
"@vitest/coverage-v8": "^4.1.9",
"tsup": "^8.5.1",
"typescript": "^5.9.0",
"vitest": "^4.1.9"
}
}