hevy-mcp 1.1.0 → 1.2.0
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/index.js +207 -164
- package/dist/index.js.map +1 -1
- package/package.json +21 -4
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hevy-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
8
11
|
"access": "public",
|
|
9
12
|
"bugs": {
|
|
10
13
|
"url": "https://github.com/chrisdoc/hevy-mcp/issues"
|
|
@@ -24,10 +27,18 @@
|
|
|
24
27
|
"check": "biome check --fix ",
|
|
25
28
|
"version:patch": "npm version patch",
|
|
26
29
|
"version:minor": "npm version minor",
|
|
27
|
-
"version:major": "npm version major"
|
|
30
|
+
"version:major": "npm version major",
|
|
31
|
+
"release": "semantic-release",
|
|
32
|
+
"commit": "commit"
|
|
28
33
|
},
|
|
29
34
|
"type": "module",
|
|
30
|
-
"keywords": [
|
|
35
|
+
"keywords": [
|
|
36
|
+
"mcp",
|
|
37
|
+
"hevy",
|
|
38
|
+
"fitness",
|
|
39
|
+
"api",
|
|
40
|
+
"model context protocol"
|
|
41
|
+
],
|
|
31
42
|
"author": "Christoph Kieslich",
|
|
32
43
|
"license": "MIT",
|
|
33
44
|
"description": "A Model Context Protocol (MCP) server implementation that interfaces with the Hevy fitness tracking app and its API.",
|
|
@@ -46,9 +57,15 @@
|
|
|
46
57
|
},
|
|
47
58
|
"devDependencies": {
|
|
48
59
|
"@biomejs/biome": "1.9.4",
|
|
60
|
+
"@commitlint/cli": "^19.8.0",
|
|
61
|
+
"@commitlint/config-conventional": "^19.8.0",
|
|
62
|
+
"@commitlint/prompt-cli": "^19.8.0",
|
|
63
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
64
|
+
"@semantic-release/git": "^10.0.1",
|
|
49
65
|
"@types/node": "^22.13.13",
|
|
50
66
|
"abstract-syntax-tree": "^2.22.0",
|
|
51
67
|
"lefthook": "^1.11.5",
|
|
68
|
+
"semantic-release": "^24.2.3",
|
|
52
69
|
"tsup": "^8.4.0",
|
|
53
70
|
"tsx": "^4.19.3",
|
|
54
71
|
"typescript": "^5.8.2",
|