-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 857 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 857 Bytes
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
{
"name": "@funtuantw/tw-kfc-coupon-mcp",
"version": "1.0.4",
"type": "module",
"main": "build/index.js",
"bin": {
"tw-kfc-coupon-mcp": "build/index.js"
},
"files": [
"build"
],
"keywords": [
"kfc",
"coupon",
"mcp",
"taiwan"
],
"author": "funtuan<hank85627@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node build/index.js",
"build": "npx tsc",
"dev:server": "npm run build & npx @modelcontextprotocol/inspector node ./build/server.js",
"start:server": "node build/server.js",
"start:client": "node build/main.js",
"npm:deploy": "npm run build && npm publish --access public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"axios": "^1.8.4",
"zod": "^3.24.3"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
}
}