hevy-mcp 1.11.10 → 1.12.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -128
- package/dist/index.d.ts +45 -1
- package/dist/index.js +123 -270
- package/dist/index.js.map +1 -1
- package/package.json +9 -10
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hevy-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.4",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
|
-
"module": "
|
|
5
|
+
"module": "src/index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"build": "tsup",
|
|
24
24
|
"build:client": "kubb generate",
|
|
25
25
|
"start": "node dist/index.js",
|
|
26
|
-
"start:http": "node dist/index.js --http",
|
|
27
26
|
"dev": "tsx watch --clear-screen=false src/index.ts",
|
|
28
|
-
"
|
|
27
|
+
"smithery:build": "smithery build",
|
|
28
|
+
"smithery:dev": "smithery dev",
|
|
29
29
|
"check": "biome check --write --unsafe",
|
|
30
30
|
"check:types": "tsc --noEmit",
|
|
31
31
|
"version:patch": "pnpm version patch",
|
|
@@ -55,9 +55,11 @@
|
|
|
55
55
|
"@kubb/plugin-ts": "^4.5.9",
|
|
56
56
|
"@kubb/plugin-zod": "^4.5.9",
|
|
57
57
|
"@modelcontextprotocol/sdk": "^1.22.0",
|
|
58
|
+
"@smithery/sdk": "1.7.4",
|
|
58
59
|
"axios": "^1.13.2",
|
|
59
|
-
"
|
|
60
|
-
"
|
|
60
|
+
"chalk": "^5.3.0",
|
|
61
|
+
"cors": "^2.8.5",
|
|
62
|
+
"express": "4.21.2",
|
|
61
63
|
"zod": "^3.25.76"
|
|
62
64
|
},
|
|
63
65
|
"devDependencies": {
|
|
@@ -65,20 +67,17 @@
|
|
|
65
67
|
"@commitlint/cli": "^20.1.0",
|
|
66
68
|
"@commitlint/config-conventional": "^20.0.0",
|
|
67
69
|
"@commitlint/prompt-cli": "^20.1.0",
|
|
68
|
-
"@faker-js/faker": "^10.1.0",
|
|
69
70
|
"@semantic-release/changelog": "^6.0.3",
|
|
70
71
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
71
72
|
"@semantic-release/git": "^10.0.1",
|
|
72
73
|
"@semantic-release/github": "^12.0.2",
|
|
73
74
|
"@semantic-release/npm": "^13.1.2",
|
|
74
75
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
75
|
-
"@
|
|
76
|
+
"@smithery/cli": "^1.6.3",
|
|
76
77
|
"@types/node": "^24.10.1",
|
|
77
|
-
"@types/uuid": "^11.0.0",
|
|
78
78
|
"@vitest/coverage-v8": "^4.0.10",
|
|
79
79
|
"abstract-syntax-tree": "^2.22.0",
|
|
80
80
|
"cross-env": "^10.1.0",
|
|
81
|
-
"dotenv": "^17.2.3",
|
|
82
81
|
"lefthook": "^2.0.4",
|
|
83
82
|
"semantic-release": "^25.0.2",
|
|
84
83
|
"tsup": "^8.5.1",
|