ebay-mcp 1.7.4 → 1.7.5
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.
- package/build/index.js +0 -0
- package/package.json +15 -15
package/build/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ebay-mcp",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"description": "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",
|
|
@@ -8,19 +8,6 @@
|
|
|
8
8
|
"bin": {
|
|
9
9
|
"ebay-mcp": "build/index.js"
|
|
10
10
|
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "tsc && tsc-alias",
|
|
13
|
-
"start": "node build/index.js",
|
|
14
|
-
"dev": "tsx src/index.ts",
|
|
15
|
-
"test": "vitest run",
|
|
16
|
-
"test:coverage": "vitest run --coverage",
|
|
17
|
-
"setup": "tsx src/scripts/setup.ts",
|
|
18
|
-
"sync": "tsx src/scripts/dev-sync.ts",
|
|
19
|
-
"diagnose": "tsx src/scripts/diagnostics.ts",
|
|
20
|
-
"check": "tsc --noEmit && eslint . && prettier --check \"src/**/*.{ts,js,json,md}\"",
|
|
21
|
-
"fix": "eslint . --fix && prettier --write \"src/**/*.{ts,js,json,md}\"",
|
|
22
|
-
"prepare": "npm run build"
|
|
23
|
-
},
|
|
24
11
|
"keywords": [
|
|
25
12
|
"mcp",
|
|
26
13
|
"ebay",
|
|
@@ -100,5 +87,18 @@
|
|
|
100
87
|
},
|
|
101
88
|
"engines": {
|
|
102
89
|
"node": ">=18.0.0"
|
|
90
|
+
},
|
|
91
|
+
"scripts": {
|
|
92
|
+
"build": "tsc && tsc-alias",
|
|
93
|
+
"start": "node build/index.js",
|
|
94
|
+
"dev": "tsx src/index.ts",
|
|
95
|
+
"test": "vitest run",
|
|
96
|
+
"test:coverage": "vitest run --coverage",
|
|
97
|
+
"setup": "tsx src/scripts/setup.ts",
|
|
98
|
+
"sync": "tsx src/scripts/dev-sync.ts",
|
|
99
|
+
"diagnose": "tsx src/scripts/diagnostics.ts",
|
|
100
|
+
"typecheck": "tsc --noEmit",
|
|
101
|
+
"check": "tsc --noEmit && eslint . && prettier --check \"src/**/*.{ts,js,json,md}\"",
|
|
102
|
+
"fix": "eslint . --fix && prettier --write \"src/**/*.{ts,js,json,md}\""
|
|
103
103
|
}
|
|
104
|
-
}
|
|
104
|
+
}
|