-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 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
{
"name": "starbucks-mcp-server",
"version": "1.0.0",
"description": "Model Context Protocol server for Starbucks information",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"dev": "tsx src/index.ts",
"test": "tsx examples/test-client.ts",
"test:server": "curl http://localhost:3000/health",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"starbucks",
"coffee",
"decentralized-ai",
"typescript"
],
"author": "Maria",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@types/express": "^5.0.0",
"@types/node": "^22.10.6",
"express": "^4.21.2",
"typescript": "^5.7.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"tsx": "^4.19.2"
},
"engines": {
"node": ">=18.0.0"
}
}