-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1 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
{
"name": "garmin-workouts-mcp",
"version": "1.0.4",
"description": "Natural language to Garmin Connect workout creation tool - MCP server for Claude",
"main": "dist/mcp-server.js",
"bin": {
"garmin-workouts-mcp": "dist/mcp-server.js"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"mcp-server": "tsx src/mcp-server.ts",
"pack": "npm pack && mv garmin-workouts-mcp-*.tgz garmin-workouts-mcp-local.tgz",
"prepublishOnly": "pnpm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"garmin",
"workout",
"mcp",
"claude",
"fitness",
"training"
],
"author": "Charles Harris",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.1",
"@types/node-fetch": "2",
"node-fetch": "2",
"puppeteer": "^24.10.2"
},
"devDependencies": {
"@types/node": "^24.0.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16"
}
}