-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "@mcp-apps-kit/example-kanban",
"version": "0.1.0",
"private": true,
"description": "Kanban board example app built with @mcp-apps-kit/core",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:ui\"",
"dev:server": "tsx watch src/index.ts",
"dev:ui": "vite build --watch",
"start": "node dist/index.js",
"build": "npm run build:ui && npm run build:server",
"build:server": "tsup",
"build:ui": "vite build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mcp-apps-kit/core": "0.2.5",
"@mcp-apps-kit/ui": "0.2.5",
"@mcp-apps-kit/ui-react": "0.2.5",
"express": "^5.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"concurrently": "^9.2.1",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^7.3.0",
"vite-plugin-singlefile": "^2.3.0"
}
}