-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.55 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@mcp-b/mcp-ui-webmcp",
"version": "1.0.0",
"description": "MCP UI + WebMCP Demo Monorepo - Bidirectional AI and embedded web app integration",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/WebMCP-org/mcp-ui-webmcp.git"
},
"author": "Alex Nahas (founder of MCP-B)",
"homepage": "https://github.com/WebMCP-org/mcp-ui-webmcp#readme",
"license": "Apache-2.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter='./apps/*'",
"test": "pnpm --filter @mcp-b/e2e test",
"test:integration": "pnpm --filter @mcp-b/e2e test:integration",
"test:chat-ui": "pnpm --filter @mcp-b/e2e test:chat-ui",
"test:remote-mcp": "pnpm --filter @mcp-b/e2e test:remote-mcp",
"test:ui": "pnpm --filter @mcp-b/e2e test:ui",
"test:debug": "pnpm --filter @mcp-b/e2e test:debug",
"test:headed": "pnpm --filter @mcp-b/e2e test:headed",
"test:report": "pnpm --filter @mcp-b/e2e test:report",
"apps:build": "pnpm --filter @mcp-b/chat-ui build && pnpm --filter @mcp-b/mcp-server build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"check": "pnpm lint && pnpm typecheck",
"clean": "turbo run clean",
"clean:modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"devDependencies": {
"@playwright/test": "^1.49.2",
"@types/node": "catalog:",
"turbo": "^2.5.6",
"typescript": "catalog:"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=8"
},
"packageManager": "pnpm@10.14.0"
}