@nextclaw/mcp 0.1.65 → 0.1.66
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/dist/index.d.ts +186 -176
- package/dist/index.js +563 -679
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextclaw/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.66",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Platform-level MCP registry, lifecycle, and diagnostics for NextClaw.",
|
|
6
6
|
"type": "module",
|
|
@@ -17,18 +17,17 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
19
19
|
"undici": "^6.21.0",
|
|
20
|
-
"@nextclaw/core": "0.12.
|
|
20
|
+
"@nextclaw/core": "0.12.1"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^20.17.6",
|
|
24
24
|
"prettier": "^3.3.3",
|
|
25
|
-
"tsup": "^8.3.5",
|
|
26
25
|
"typescript": "^5.6.3",
|
|
27
26
|
"vitest": "^4.1.2",
|
|
28
27
|
"zod": "^4.3.6"
|
|
29
28
|
},
|
|
30
29
|
"scripts": {
|
|
31
|
-
"build": "
|
|
30
|
+
"build": "tsdown src/index.ts --dts --clean --target es2022 --no-fixedExtension",
|
|
32
31
|
"lint": "cd ../.. && pnpm exec eslint packages/nextclaw-mcp --config eslint.config.mjs",
|
|
33
32
|
"tsc": "tsc -p tsconfig.json",
|
|
34
33
|
"test": "vitest run"
|