-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.82 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.82 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
105
106
{
"name": "ebay-mcp",
"version": "1.8.5",
"description": "Local MCP server for eBay APIs - provides access to eBay developer functionality through MCP (Model Context Protocol)",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"ebay-mcp": "build/index.js"
},
"scripts": {
"build": "tsc && tsc-alias",
"start": "node build/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"setup": "tsx src/scripts/setup.ts",
"sync": "tsx src/scripts/dev-sync.ts",
"diagnose": "tsx src/scripts/diagnostics.ts",
"typecheck": "tsc --noEmit",
"check": "tsc --noEmit && eslint . && prettier --check \"src/**/*.{ts,js,json,md}\"",
"fix": "eslint . --fix && prettier --write \"src/**/*.{ts,js,json,md}\"",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"ebay",
"ebay-api",
"model-context-protocol",
"ai-tools",
"ai",
"llm",
"mcp",
"documentation",
"api",
"ebay",
"server",
"backend"
],
"author": "Yosef Hayim Sabag",
"license": "MIT",
"files": [
"build/**/*.js",
"build/index.d.ts",
"build/server-http.d.ts",
"public/icons/*.png",
"README.md",
"docs/auth/production_scopes.json",
"docs/auth/sandbox_scopes.json"
],
"repository": {
"type": "git",
"url": "https://github.com/YosefHayim/ebay-mcp.git"
},
"homepage": "https://github.com/YosefHayim/ebay-mcp#readme",
"bugs": {
"url": "https://github.com/YosefHayim/ebay-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.27.1",
"axios": "^1.13.6",
"chalk": "^5.6.2",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"dotenv-stringify": "^3.0.1",
"express": "^5.1.0",
"fast-xml-parser": "^5.3.4",
"helmet": "^8.1.0",
"jose": "^6.2.1",
"jsonwebtoken": "^9.0.2",
"grimoire-wizard": "^0.6.0",
"update-notifier": "^7.3.1",
"winston": "^3.19.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.3",
"@types/prompts": "^2.4.9",
"@types/supertest": "^7.2.0",
"@types/update-notifier": "^6.0.8",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.8",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-vitest": "^0.5.4",
"nock": "^14.0.11",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.1",
"supertest": "^7.1.4",
"tsc-alias": "^1.8.16",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.8"
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=18.0.0"
}
}