dev3000 0.0.56 → 0.0.57
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.
|
@@ -26,7 +26,7 @@ const handler = createMcpHandler(
|
|
|
26
26
|
// Healthcheck tool
|
|
27
27
|
server.tool(
|
|
28
28
|
"healthcheck",
|
|
29
|
-
"
|
|
29
|
+
"Internal healthcheck tool - rarely needed since MCP connection is already working if you can see this. Only use if explicitly asked to verify server health. Prefer read_consolidated_logs for debugging.",
|
|
30
30
|
{
|
|
31
31
|
message: z.string().optional().describe("Optional message to echo back")
|
|
32
32
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dev3000",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.57",
|
|
4
4
|
"description": "AI-powered development tools with browser monitoring and MCP server integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"dev": "tsc --watch",
|
|
26
26
|
"typecheck": "tsc --noEmit",
|
|
27
27
|
"format": "biome format --write .",
|
|
28
|
-
"lint": "biome check
|
|
29
|
-
"lint:fix": "biome check --write
|
|
28
|
+
"lint": "biome check src mcp-server www scripts",
|
|
29
|
+
"lint:fix": "biome check --write src mcp-server www scripts",
|
|
30
30
|
"test": "vitest run",
|
|
31
31
|
"test-postinstall": "tsx scripts/test-postinstall.ts",
|
|
32
32
|
"prepare": "husky",
|
|
33
|
-
"postinstall": "echo 'Starting postinstall...' && cd mcp-server && echo 'Installing mcp-server dependencies...' &&
|
|
33
|
+
"postinstall": "echo 'Starting postinstall...' && cd mcp-server && echo 'Installing mcp-server dependencies...' && pnpm install --no-frozen-lockfile --ignore-scripts && echo 'Postinstall completed successfully!' || echo 'Postinstall failed, but continuing...'",
|
|
34
34
|
"release": "./scripts/release.sh",
|
|
35
35
|
"canary": "./scripts/canary.sh"
|
|
36
36
|
},
|