hevy-mcp 1.12.12 → 1.12.13
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/dist/cli.d.ts +2 -0
- package/dist/cli.js +1667 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -23
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hevy-mcp",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.13",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
},
|
|
15
15
|
"homepage": "https://github.com/chrisdoc/hevy-mcp#readme",
|
|
16
16
|
"bin": {
|
|
17
|
-
"hevy-mcp": "dist/
|
|
17
|
+
"hevy-mcp": "dist/cli.js"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"inspect": "pnpm run build && pnpm dlx @modelcontextprotocol/inspector@latest node dist/
|
|
20
|
+
"inspect": "pnpm run build && pnpm dlx @modelcontextprotocol/inspector@latest node dist/cli.js",
|
|
21
21
|
"test": "vitest --run",
|
|
22
22
|
"export-specs": "node ./scripts/export-openapi-spec.js",
|
|
23
23
|
"build": "tsup",
|
|
24
24
|
"build:client": "kubb generate",
|
|
25
|
-
"start": "node dist/
|
|
26
|
-
"dev": "tsx watch --clear-screen=false src/
|
|
25
|
+
"start": "node dist/cli.js",
|
|
26
|
+
"dev": "tsx watch --clear-screen=false src/cli.ts",
|
|
27
27
|
"smithery:build": "smithery build",
|
|
28
28
|
"smithery:dev": "smithery dev",
|
|
29
29
|
"check": "biome check --write --unsafe",
|