-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 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
{
"name": "wishfinity-mcp-plusw",
"version": "1.2.2",
"description": "MCP server for +W (Wishfinity Add to Wishlist) - save any product to your universal wishlist. Works with Claude, ChatGPT, Gemini, LangChain, and any MCP client.",
"main": "dist/index.js",
"type": "module",
"bin": {
"wishfinity-mcp-plusw": "./dist/index.js"
},
"files": [
"dist",
"button-kit",
"README.md",
"SPEC.md",
"INTEGRATION_GUIDE.md",
"aliases.json",
"server.json"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"prepublishOnly": "npm run build",
"deploy": "wrangler deploy",
"deploy:staging": "wrangler deploy --env staging",
"cf:dev": "wrangler dev",
"cf:tail": "wrangler tail"
},
"keywords": [
"mcp",
"model-context-protocol",
"wishlist",
"wishfinity",
"commerce",
"shopping",
"ai",
"claude",
"chatgpt",
"gemini",
"langchain",
"save-for-later"
],
"author": "Wishfinity",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wishfinity/wishfinity-mcp-plusw"
},
"homepage": "https://wishfinity.com",
"bugs": {
"url": "https://github.com/wishfinity/wishfinity-mcp-plusw/issues"
},
"mcpName": "io.github.wishfinity/wishfinity-mcp-plusw",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241205.0",
"@types/node": "^20.10.0",
"typescript": "^5.3.0",
"wrangler": "^3.99.0"
}
}