-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.33 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
89
90
91
92
93
94
95
96
97
98
{
"name": "open-mcp-app",
"version": "0.0.15",
"description": "SDK for building MCP Apps that work on any MCP App host",
"type": "module",
"exports": {
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js",
"require": "./dist/core/index.js",
"default": "./dist/core/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js",
"require": "./dist/react/index.js",
"default": "./dist/react/index.js"
},
"./vite": {
"types": "./dist/vite/index.d.ts",
"import": "./dist/vite/index.js",
"require": "./dist/vite/index.js",
"default": "./dist/vite/index.js"
},
"./styles/tailwind.css": "./dist/styles/index.css"
},
"files": [
"dist",
"dist/styles",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^0.2.2",
"@modelcontextprotocol/sdk": "^1.24.0",
"express": "^5.1.0",
"ws": "^8.18.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/express": "^5.0.2",
"@types/node": "^22.15.21",
"@types/react": "^19.1.6",
"@types/ws": "^8.5.13",
"autoprefixer": "^10.4.0",
"cac": "^6.7.14",
"postcss": "^8.5.0",
"react": "^19.1.0",
"tailwindcss": "^4.0.0",
"tsup": "^8.5.1",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"tailwindcss": "^4.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"tailwindcss": {
"optional": true
}
},
"keywords": [
"mcp",
"model-context-protocol",
"chatgpt",
"creature",
"claude",
"ai-tools"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/creature-run/open-mcp-app.git",
"directory": "sdk"
},
"bugs": {
"url": "https://github.com/creature-run/open-mcp-app/issues"
}
}