@firfi/huly-mcp 0.6.0 → 0.6.2
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 +283 -266
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firfi/huly-mcp",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "MCP server for Huly integration",
|
|
5
5
|
"mcpName": "io.github.dearlordylord/huly-mcp",
|
|
6
6
|
"type": "module",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
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
|
-
"local-release": "changeset version && changeset publish",
|
|
110
|
+
"local-release": "changeset version && pnpm build && pnpm verify-version && changeset publish",
|
|
111
111
|
"verify-version": "node -e \"const v=require('./package.json').version; const d=require('fs').readFileSync('dist/index.cjs','utf8'); if(!d.includes('\\\"'+v+'\\\"'))throw new Error('dist version mismatch: expected '+v)\"",
|
|
112
112
|
"update-readme": "tsx scripts/update-readme-tools.ts"
|
|
113
113
|
}
|