-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
{
"name": "@launchfast/mcp",
"version": "1.0.2",
"description": "🚀 Professional Amazon & Alibaba research tools for Claude AI - Product research, keyword intelligence, and supplier discovery via MCP",
"type": "module",
"main": "./build/index.js",
"bin": "./build/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:server": "tsx src/server-sse.ts",
"start": "node build/server-sse.js",
"inspect": "tsx src/index.ts",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"launchfast",
"amazon",
"alibaba",
"product-research",
"keyword-research",
"supplier-search",
"ecommerce",
"fba",
"private-label",
"claude",
"ai-tools"
],
"author": "LaunchFast Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BlockchainHB/launchfastmcp"
},
"homepage": "https://github.com/BlockchainHB/launchfastmcp#readme",
"bugs": {
"url": "https://github.com/BlockchainHB/launchfastmcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^24.6.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
}
}