-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "api-test-mcp",
"type": "module",
"license": "MIT",
"author": {
"name": "Actrue"
},
"keywords": [
"mcp",
"api",
"fastmcp",
"api-test"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"dev-web": "tsx watch src/hono.ts",
"build": "tsc",
"start": "npx tsx src/index.ts s",
"start-web": "node dist/src/hono.js",
"go": "pnpm i && npm run start",
"go-web": "pnpm i && pnpm run db-init && pnpm run build && npm run start-web",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@hono/node-server": "^1.17.1",
"@modelcontextprotocol/sdk": "^1.12.1",
"agents": "^0.0.95",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"fastmcp": "^1.27.7",
"hono": "^4.7.11",
"xlsx": "^0.18.5",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^20.11.17",
"@vitest/ui": "^3.2.4",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}