@mcp-b/react-webmcp 0.2.2 → 0.2.3
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/package.json +23 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-b/react-webmcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "React hooks for Model Context Protocol (MCP) - expose React components as AI tools for Claude, ChatGPT, Cursor, and Copilot with Zod validation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -54,6 +54,27 @@
|
|
|
54
54
|
"files": [
|
|
55
55
|
"dist"
|
|
56
56
|
],
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@modelcontextprotocol/sdk": "1.24.3",
|
|
59
|
+
"@mcp-b/webmcp-ts-sdk": "1.1.0",
|
|
60
|
+
"@mcp-b/global": "1.2.1",
|
|
61
|
+
"@mcp-b/transports": "1.2.0"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@types/node": "22.17.2",
|
|
65
|
+
"@types/react": "^19.1.2",
|
|
66
|
+
"tsdown": "^0.15.10",
|
|
67
|
+
"typescript": "^5.8.3",
|
|
68
|
+
"zod": "3.25.76"
|
|
69
|
+
},
|
|
70
|
+
"peerDependencies": {
|
|
71
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
72
|
+
"zod": "^3.25.0"
|
|
73
|
+
},
|
|
74
|
+
"publishConfig": {
|
|
75
|
+
"access": "public",
|
|
76
|
+
"registry": "https://registry.npmjs.org/"
|
|
77
|
+
},
|
|
57
78
|
"scripts": {
|
|
58
79
|
"build": "tsdown",
|
|
59
80
|
"build:prod": "NODE_ENV=prod tsdown",
|
|
@@ -61,33 +82,11 @@
|
|
|
61
82
|
"clean": "rm -rf dist .turbo",
|
|
62
83
|
"format": "biome format --write .",
|
|
63
84
|
"lint": "biome lint --write .",
|
|
64
|
-
"prepublishOnly": "pnpm run build:prod",
|
|
65
85
|
"publish:dry": "pnpm publish --access public --dry-run",
|
|
66
86
|
"publish:npm": "pnpm publish --access public",
|
|
67
87
|
"typecheck": "tsc --noEmit",
|
|
68
88
|
"version:major": "pnpm version major --no-git-tag-version",
|
|
69
89
|
"version:minor": "pnpm version minor --no-git-tag-version",
|
|
70
90
|
"version:patch": "pnpm version patch --no-git-tag-version"
|
|
71
|
-
},
|
|
72
|
-
"dependencies": {
|
|
73
|
-
"@mcp-b/global": "workspace:*",
|
|
74
|
-
"@mcp-b/transports": "workspace:*",
|
|
75
|
-
"@mcp-b/webmcp-ts-sdk": "workspace:*",
|
|
76
|
-
"@modelcontextprotocol/sdk": "catalog:"
|
|
77
|
-
},
|
|
78
|
-
"devDependencies": {
|
|
79
|
-
"@types/node": "catalog:",
|
|
80
|
-
"@types/react": "catalog:",
|
|
81
|
-
"tsdown": "catalog:",
|
|
82
|
-
"typescript": "catalog:",
|
|
83
|
-
"zod": "catalog:"
|
|
84
|
-
},
|
|
85
|
-
"peerDependencies": {
|
|
86
|
-
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
87
|
-
"zod": "^3.25.0"
|
|
88
|
-
},
|
|
89
|
-
"publishConfig": {
|
|
90
|
-
"access": "public",
|
|
91
|
-
"registry": "https://registry.npmjs.org/"
|
|
92
91
|
}
|
|
93
|
-
}
|
|
92
|
+
}
|