-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.35 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
{
"name": "mcp-host-evals",
"version": "0.0.6",
"type": "module",
"bin": {
"mcp-host-evals": "bin/mcp-host-evals.js"
},
"files": [
"dist",
"bin",
"package.json"
],
"homepage": "https://github.com/mcpnow-io/mcp-host-evals",
"scripts": {
"clean": "rm -rf dist && rm -rf logs",
"build": "pnpm clean && vite build",
"dev:cli": "pnpm clean && vite build --watch",
"dev:server": "nodemon ./bin/mcp-host-evals.js http",
"dev:stdio": "nodemon ./bin/mcp-host-evals.js",
"major": "pnpm version major",
"minor": "pnpm version minor",
"patch": "pnpm version patch"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"cac": "^6.7.14",
"express": "^5.1.0",
"lodash-es": "^4.17.21",
"mcp-host-evals": "link:",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0",
"uuid": "^11.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.0.8",
"@types/pino": "^7.0.5",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.4",
"zod": "^3.23.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"npx ultracite format"
]
}
}