ebay-mcp-remote-edition 2.0.1 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +11 -6
package/README.md CHANGED
@@ -11,7 +11,7 @@ A [Model Context Protocol (MCP)](https://modelcontextprotocol.io) server providi
11
11
 
12
12
  </div>
13
13
 
14
- ---
14
+ ----
15
15
 
16
16
  ## Fork differences
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ebay-mcp-remote-edition",
3
- "version": "2.0.1",
3
+ "version": "2.0.4",
4
4
  "description": "Remote + Local MCP server for eBay APIs - provides access to eBay developer functionality through MCP (Model Context Protocol)",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
@@ -20,7 +20,7 @@
20
20
  "typecheck": "tsc --noEmit",
21
21
  "check": "tsc --noEmit && eslint . && prettier --check \"src/**/*.{ts,js,json,md}\"",
22
22
  "fix": "eslint . --fix && prettier --write \"src/**/*.{ts,js,json,md}\"",
23
- "prepare": "npm run build"
23
+ "prepare": "tsc && tsc-alias"
24
24
  },
25
25
  "keywords": [
26
26
  "mcp",
@@ -37,7 +37,7 @@
37
37
  "server",
38
38
  "backend"
39
39
  ],
40
- "author": "Yosef Hayim Sabag",
40
+ "author": "Kenyatta Naji Johnson-Adams",
41
41
  "license": "MIT",
42
42
  "files": [
43
43
  "build/**/*.js",
@@ -50,11 +50,11 @@
50
50
  ],
51
51
  "repository": {
52
52
  "type": "git",
53
- "url": "https://github.com/YosefHayim/ebay-mcp.git"
53
+ "url": "https://github.com/mrnajiboy/ebay-mcp-remote-edition.git"
54
54
  },
55
- "homepage": "https://github.com/YosefHayim/ebay-mcp#readme",
55
+ "homepage": "https://github.com/mrnajiboy/ebay-mcp-remote-edition#readme",
56
56
  "bugs": {
57
- "url": "https://github.com/YosefHayim/ebay-mcp/issues"
57
+ "url": "https://github.com/mrnajiboy/ebay-mcp-remote-edition/issues"
58
58
  },
59
59
  "dependencies": {
60
60
  "@modelcontextprotocol/sdk": "1.27.1",
@@ -102,5 +102,10 @@
102
102
  "packageManager": "pnpm@10.14.0",
103
103
  "engines": {
104
104
  "node": ">=18.0.0"
105
+ },
106
+ "pnpm": {
107
+ "onlyBuiltDependencies": [
108
+ "esbuild"
109
+ ]
105
110
  }
106
111
  }