@firfi/huly-mcp 0.5.4 → 0.6.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.cjs +479 -253
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firfi/huly-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "MCP server for Huly integration",
|
|
5
5
|
"mcpName": "io.github.dearlordylord/huly-mcp",
|
|
6
6
|
"type": "module",
|
|
@@ -101,10 +101,10 @@
|
|
|
101
101
|
"test": "vitest run",
|
|
102
102
|
"test:coverage": "vitest run --coverage",
|
|
103
103
|
"test:watch": "vitest",
|
|
104
|
-
"lint": "
|
|
105
|
-
"lint:fix": "
|
|
106
|
-
"format": "
|
|
107
|
-
"check-format": "
|
|
104
|
+
"lint": "find src test -name '*.ts' -print0 | xargs -0 eslint && jscpd src",
|
|
105
|
+
"lint:fix": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix",
|
|
106
|
+
"format": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix --rule '@effect/dprint: error'",
|
|
107
|
+
"check-format": "find src test -name '*.ts' -print0 | xargs -0 eslint --rule '@effect/dprint: error'",
|
|
108
108
|
"check-all": "pnpm build && pnpm typecheck && pnpm lint && pnpm test",
|
|
109
109
|
"circular": "madge --extensions ts --circular src",
|
|
110
110
|
"local-release": "changeset version && changeset publish",
|