-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.87 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.87 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "mcpcat",
"version": "0.1.13",
"description": "Analytics tool for MCP (Model Context Protocol) servers - tracks tool usage patterns and provides insights",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:compatibility": "vitest run src/tests/mcp-version-compatibility.test.ts",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"prepublishOnly": "pnpm run build && pnpm run test && pnpm run lint && pnpm run typecheck"
},
"keywords": [
"ai",
"authentication",
"mcp",
"observability",
"ai-agents",
"ai-platform",
"ai-agent",
"mcps",
"aiagents",
"ai-agent-tools",
"mcp-servers",
"mcp-server",
"mcp-tools",
"agent-runtime",
"mcp-framework",
"mcp-analytics"
],
"author": "MCPcat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MCPCat/mcpcat-typescript-sdk.git"
},
"bugs": {
"url": "https://github.com/MCPCat/mcpcat-typescript-sdk/issues"
},
"homepage": "https://github.com/MCPCat/mcpcat-typescript-sdk#readme",
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@modelcontextprotocol/sdk": "~1.24.2",
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitest/coverage-v8": "^4.0.14",
"@vitest/ui": "^4.0.14",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^4.0.14",
"zod": "^3.25 || ^4.0"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": ">=1.11"
},
"dependencies": {
"@opentelemetry/otlp-transformer": "^0.203.0",
"mcpcat-api": "0.1.7"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"js-yaml": ">=4.1.1",
"tmp": ">=0.2.4",
"vite": ">=6.4.1",
"body-parser": ">=2.2.1",
"brace-expansion": "2.0.2"
},
"overridesComments": {
"js-yaml": "Fixes GHSA-mh29-5h37-fv8m (prototype pollution in merge) - via @changesets/cli",
"tmp": "Fixes GHSA-52f5-9888-hmc6 (symlink attack) - via @changesets/cli",
"vite": "Fixes GHSA-93m4-6634-74q7 and other vite security issues - via vitest",
"body-parser": "Fixes GHSA-wqch-xfxh-vrr4 (DoS via url encoding) - via @modelcontextprotocol/sdk",
"brace-expansion": "Fixes GHSA-v6h2-p8h4-qcjw (ReDoS vulnerability) - via eslint"
}
}
}