@nextclaw/server 0.10.25 → 0.10.28

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/dist/index.js +1 -1
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -5286,7 +5286,7 @@ function startUiServer(options) {
5286
5286
  );
5287
5287
  app.get("*", (c) => {
5288
5288
  const path = c.req.path;
5289
- if (path.startsWith("/api") || path.startsWith("/ws")) {
5289
+ if (path.startsWith("/api") || path.startsWith("/ws") || path.startsWith("/_remote")) {
5290
5290
  return c.notFound();
5291
5291
  }
5292
5292
  return c.html(indexHtml);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextclaw/server",
3
- "version": "0.10.25",
3
+ "version": "0.10.28",
4
4
  "private": false,
5
5
  "description": "Nextclaw UI/API server.",
6
6
  "type": "module",
@@ -19,11 +19,11 @@
19
19
  "hono": "^4.6.2",
20
20
  "ws": "^8.18.0",
21
21
  "@nextclaw/ncp": "0.3.1",
22
- "@nextclaw/mcp": "0.1.25",
23
- "@nextclaw/openclaw-compat": "0.3.11",
24
22
  "@nextclaw/ncp-http-agent-server": "0.3.1",
25
- "@nextclaw/runtime": "0.2.8",
26
- "@nextclaw/core": "0.9.8"
23
+ "@nextclaw/core": "0.9.11",
24
+ "@nextclaw/mcp": "0.1.28",
25
+ "@nextclaw/openclaw-compat": "0.3.14",
26
+ "@nextclaw/runtime": "0.2.11"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^20.17.6",