-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1 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
{
"name": "mercapi-mcp",
"version": "0.1.0",
"description": "MCP server exposing Mercari Japan search to AI assistants",
"type": "module",
"bin": { "mercapi-mcp": "./dist/index.js" },
"files": ["dist"],
"engines": { "node": ">=20" },
"scripts": {
"build": "tsup",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"smoke": "tsx scripts/smoke.ts",
"prepublishOnly": "npm run build"
},
"keywords": ["mcp", "mercari", "modelcontextprotocol", "ai"],
"license": "MIT",
"author": "Kai Zhu",
"homepage": "https://github.com/zhu-kai/mercapi-mcp#readme",
"bugs": { "url": "https://github.com/zhu-kai/mercapi-mcp/issues" },
"repository": { "type": "git", "url": "git+https://github.com/zhu-kai/mercapi-mcp.git" },
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"mercapi": "^0.2.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"tsup": "^8.3.5",
"tsx": "^4.19.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}