@firfi/huly-mcp 0.14.0 → 0.15.1

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.
Files changed (3) hide show
  1. package/README.md +36 -2
  2. package/dist/index.cjs +3492 -1284
  3. package/package.json +7 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firfi/huly-mcp",
3
- "version": "0.14.0",
3
+ "version": "0.15.1",
4
4
  "description": "MCP server for Huly integration",
5
5
  "mcpName": "io.github.dearlordylord/huly-mcp",
6
6
  "type": "module",
@@ -18,7 +18,7 @@
18
18
  "bugs": {
19
19
  "url": "https://github.com/dearlordylord/huly-mcp/issues"
20
20
  },
21
- "homepage": "https://github.com/dearlordylord/huly-mcp#readme",
21
+ "homepage": "https://huly-mcp.dearlordylord.com",
22
22
  "bin": {
23
23
  "huly-mcp": "./dist/index.cjs",
24
24
  "@firfi/huly-mcp": "./dist/index.cjs"
@@ -105,10 +105,12 @@
105
105
  "lint:fix": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix",
106
106
  "format": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix --rule '@effect/dprint: error'",
107
107
  "check-format": "find src test -name '*.ts' -print0 | xargs -0 eslint --rule '@effect/dprint: error'",
108
- "check-all": "pnpm build && pnpm typecheck && pnpm lint && pnpm test",
108
+ "check-all": "pnpm build && pnpm typecheck && pnpm verify-registry-metadata && pnpm lint && pnpm test",
109
109
  "circular": "madge --extensions ts --circular src",
110
- "local-release": "changeset version && pnpm build && pnpm verify-version && changeset publish",
110
+ "local-release": "changeset 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 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
- "update-readme": "tsx scripts/update-readme-tools.ts"
112
+ "verify-registry-metadata": "node scripts/sync-registry-metadata.mjs --check",
113
+ "sync-registry-metadata": "node scripts/sync-registry-metadata.mjs",
114
+ "update-readme": "node scripts/update-readme-tools.mjs"
113
115
  }
114
116
  }