-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.08 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.08 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
{
"name": "mcp-app",
"version": "0.1.0",
"description": "MCP App template for deco — starter for building MCP Apps with interactive UIs",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -k \"bun run dev:api\" \"bun run dev:web\"",
"dev:tunnel": "concurrently -k \"bun run dev\" \"ngrok http ${PORT:-3001}\"",
"dev:api": "bun run --hot api/main.bun.ts",
"dev:web": "NODE_OPTIONS='--max-old-space-size=8192' vite build --watch",
"dev:workers": "bun run build:web && wrangler dev",
"build:web": "NODE_OPTIONS='--max-old-space-size=8192' vite build",
"build:server": "NODE_ENV=production bun build api/main.bun.ts --target=bun --minify --outfile=dist/server/main.js",
"build": "bun run build:web && bun run build:server",
"deploy": "bun run build:web && wrangler deploy",
"deploy:preview": "bun run build:web && wrangler deploy --env preview",
"ci:check": "bunx biome ci .",
"check": "tsc --noEmit",
"test": "bun test",
"fmt": "biome format --write .",
"lint": "biome lint --write .",
"dev:worktree": "bun run scripts/dev-worktree.ts",
"dev:conductor": "WORKTREE_SLUG=$CONDUCTOR_WORKSPACE_NAME bun run dev:worktree",
"submodules:update": "git submodule update --remote --merge",
"submodules:init": "git submodule update --init --recursive"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@decocms/runtime": "^1.4.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@modelcontextprotocol/ext-apps": "^1.1.2",
"@modelcontextprotocol/sdk": "^1.26.0",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/history": "^1.133.5",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-router": "^1.133.5",
"@tiptap/extension-image": "^3.22.3",
"@tiptap/extension-link": "^3.22.3",
"@tiptap/extension-text-align": "^3.22.3",
"@tiptap/extension-underline": "^3.22.3",
"@tiptap/react": "^3.22.3",
"@tiptap/starter-kit": "^3.22.3",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"diff": "^8.0.3",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.576.0",
"monaco-editor": "^0.55.1",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.71.2",
"react-resizable-panels": "^4",
"recharts": "2.15.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"vaul": "^1.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/bun": "^1.3.8",
"@types/diff": "^8.0.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^9.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-singlefile": "^2.3.0",
"worktree-devservers": "0.3.1",
"wrangler": "^4.0.0"
}
}