@firfi/huly-mcp 0.40.1 → 0.41.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/README.md +17 -8
- package/dist/index.cjs +7435 -5469
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firfi/huly-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.41.0",
|
|
4
4
|
"description": "Huly MCP: feature-complete MCP server for Huly integration",
|
|
5
5
|
"mcpName": "io.github.dearlordylord/huly-mcp",
|
|
6
6
|
"type": "module",
|
|
@@ -115,11 +115,12 @@
|
|
|
115
115
|
"lint:fix": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix",
|
|
116
116
|
"format": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix --rule '@effect/dprint: error'",
|
|
117
117
|
"check-format": "find src test -name '*.ts' -print0 | xargs -0 eslint --rule '@effect/dprint: error'",
|
|
118
|
-
"check-all": "pnpm build && pnpm typecheck && pnpm circular && pnpm verify-registry-metadata && pnpm verify-sdk-parity && pnpm verify-readme && pnpm lint && pnpm test:coverage",
|
|
118
|
+
"check-all": "pnpm build && pnpm typecheck && pnpm verify-schema-boundaries && pnpm circular && pnpm verify-registry-metadata && pnpm verify-sdk-parity && pnpm verify-readme && pnpm lint && pnpm test:coverage",
|
|
119
119
|
"circular": "madge --extensions ts --circular src",
|
|
120
120
|
"local-release": "pnpm dlx @changesets/cli@2.30.0 version && pnpm sync-registry-metadata && git add package.json CHANGELOG.md server.json .changeset && (git diff --cached --quiet || HUSKY=0 git commit -m \"RELEASING: Releasing 1 package(s)\") && PKG_VERSION=$(node -p \"require('./package.json').version\") && pnpm dlx esbuild@0.27.2 src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:ws \"--define:PKG_VERSION=\\\"$PKG_VERSION\\\"\" && pnpm verify-version && npm_config_ignore_scripts=true pnpm dlx @changesets/cli@2.30.0 publish && git push origin \"v$PKG_VERSION\" && gh release create \"v$PKG_VERSION\" --generate-notes --latest",
|
|
121
121
|
"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)\"",
|
|
122
122
|
"verify-registry-metadata": "node scripts/sync-registry-metadata.mjs --check",
|
|
123
|
+
"verify-schema-boundaries": "node scripts/verify-schema-boundaries.mjs",
|
|
123
124
|
"verify-sdk-parity": "node scripts/audit-sdk-parity.mjs",
|
|
124
125
|
"smoke:http-no-config": "node scripts/smoke-http-no-config.mjs",
|
|
125
126
|
"sync-registry-metadata": "node scripts/sync-registry-metadata.mjs",
|