@chathost/mcp-uat 1.0.6 → 1.0.7

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 (2) hide show
  1. package/index.js +1 -0
  2. package/package.json +5 -5
package/index.js CHANGED
@@ -9,6 +9,7 @@ const path = require("path");
9
9
  const ownPkg = require("./package.json");
10
10
  const pkgName = ownPkg.name;
11
11
 
12
+ // bin: matches the dotnet publish output — no extension on linux/macOS, .exe on Windows only
12
13
  const PLATFORMS = {
13
14
  "linux-x64": { suffix: "linux-x64", bin: "chathost" },
14
15
  "darwin-arm64": { suffix: "darwin-arm64", bin: "chathost" },
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@chathost/mcp-uat",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "chathost.io MCP server - deploy websites from your AI agent",
5
5
  "bin": { "chathost-mcp": "index.js" },
6
6
  "optionalDependencies": {
7
- "@chathost/mcp-uat-linux-x64": "1.0.6",
8
- "@chathost/mcp-uat-darwin-arm64": "1.0.6",
9
- "@chathost/mcp-uat-darwin-x64": "1.0.6",
10
- "@chathost/mcp-uat-win-x64": "1.0.6"
7
+ "@chathost/mcp-uat-linux-x64": "1.0.7",
8
+ "@chathost/mcp-uat-darwin-arm64": "1.0.7",
9
+ "@chathost/mcp-uat-darwin-x64": "1.0.7",
10
+ "@chathost/mcp-uat-win-x64": "1.0.7"
11
11
  },
12
12
  "files": ["index.js", "README.md", "server.json"],
13
13
  "license": "MIT",