@firfi/huly-mcp 0.1.55 → 0.1.57
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.cjs +1799 -743
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firfi/huly-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.57",
|
|
4
4
|
"description": "MCP server for Huly integration",
|
|
5
5
|
"mcpName": "io.github.dearlordylord/huly-mcp",
|
|
6
6
|
"type": "module",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"claude",
|
|
34
34
|
"llm"
|
|
35
35
|
],
|
|
36
|
-
"author": "",
|
|
36
|
+
"author": "dearlordylord",
|
|
37
37
|
"license": "MIT",
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@effect/platform": "^0.94.2",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"*.ts": "eslint --fix"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
+
"@changesets/cli": "^2.30.0",
|
|
71
72
|
"@effect/eslint-plugin": "^0.3.2",
|
|
72
73
|
"@effect/language-service": "^0.73.1",
|
|
73
74
|
"@effect/vitest": "latest",
|
|
@@ -102,7 +103,11 @@
|
|
|
102
103
|
"test:watch": "vitest",
|
|
103
104
|
"lint": "eslint src test --ext .ts && jscpd src",
|
|
104
105
|
"lint:fix": "eslint src test --ext .ts --fix",
|
|
106
|
+
"format": "eslint src test --ext .ts --fix --rule '@effect/dprint: error'",
|
|
107
|
+
"check-format": "eslint src test --ext .ts --rule '@effect/dprint: error'",
|
|
108
|
+
"check-all": "pnpm build && pnpm typecheck && pnpm lint && pnpm test",
|
|
105
109
|
"circular": "madge --extensions ts --circular src",
|
|
110
|
+
"local-release": "changeset version && changeset publish",
|
|
106
111
|
"update-readme": "tsx scripts/update-readme-tools.ts"
|
|
107
112
|
}
|
|
108
113
|
}
|