-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.4 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.4 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@module-federation/mcp-apps",
"version": "0.0.2",
"type": "module",
"description": "MCP Apps Server for rendering Module Federation components as interactive UIs in AI Agents",
"license": "MIT",
"author": "fengdanping@bytedance.com",
"packageManager": "pnpm@10.6.5",
"keywords": [
"mcp",
"mcp-apps",
"mcp-server",
"module-federation",
"micro-frontend",
"remote-components",
"dynamic-import"
],
"repository": {
"type": "git",
"url": "https://github.com/module-federation/mcp-apps.git"
},
"homepage": "https://github.com/module-federation/mcp-apps#readme",
"bugs": {
"url": "https://github.com/module-federation/mcp-apps/issues"
},
"main": "dist/server.js",
"types": "dist/server.d.ts",
"bin": {
"mf-mcp-server": "dist/index.js"
},
"files": [
"dist",
"skills",
".claude-plugin",
"mcp_apps.schema.json",
"mcp_apps.example.json",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
}
},
"scripts": {
"build": "rm -rf dist/ && npm run build:ui && tsc && chmod +x dist/index.js",
"build:check": "tsc --noEmit && npm run build:ui && tsc && chmod +x dist/index.js",
"build:ui": "rsbuild build && rsbuild build --config rsbuild.shell.config.ts",
"watch:ui": "rsbuild build --watch",
"dev": "tsc --watch",
"start": "node dist/index.js --config module-federation-examples/basic/mcp_apps.json",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"changeset": "changeset",
"version:bump": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"@module-federation/enhanced": "^2.0.1",
"@modelcontextprotocol/ext-apps": "^1.1.2",
"@modelcontextprotocol/sdk": "^1.27.1",
"express": "^5.0.0",
"react": "~18.3.1",
"react-dom": "~18.3.1",
"zod": "^4.0.0",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "~18.3.1",
"@types/react-dom": "~18.3.1",
"@rsbuild/core": "^1.4.0",
"@rsbuild/plugin-react": "^1.4.0",
"@changesets/cli": "^2.27.0",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}