-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.46 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.46 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
{
"name": "pipecat-supermemory-demo",
"version": "1.0.0",
"description": "",
"type": "module",
"private": true,
"scripts": {
"dev": "vite dev",
"setup:backend": "cd backend && python -m venv venv && source venv/bin/activate && pip install -r requirements.txt",
"dev:backend": "cd backend && source venv/bin/activate && python server.py",
"install:backend": "cd backend && pip install -r requirements.txt",
"start:backend": "cd backend && python server.py",
"start": "vite dev",
"deploy": "vite build && wrangler deploy",
"deploy:frontend": "vite build && wrangler deploy",
"test": "vitest",
"types": "wrangler types env.d.ts --include-runtime false",
"format": "prettier --write .",
"check": "biome ci"
},
"keywords": [
"cloudflare",
"ai",
"agents"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@cloudflare/vite-plugin": "1.19.0",
"@cloudflare/vitest-pool-workers": "^0.11.1",
"@cloudflare/workers-types": "^4.20251231.0",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"drizzle-kit": "^0.31.8",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "3.2.4",
"wrangler": "^4.57.0"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.2",
"@ai-sdk/react": "^3.0.5",
"@cloudflare/ai-chat": "^0.0.4",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@supermemory/memory-graph": "0.1.6",
"@supermemory/tools": "^1.3.66",
"agents": "^0.3.3",
"ai": "^6.0.5",
"better-auth": "^1.4.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"exa-js": "^2.0.12",
"marked": "^17.0.1",
"motion": "^12.24.12",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-resizable-panels": "^4.3.0",
"resend": "^6.6.0",
"shiki": "^3.21.0",
"streamdown": "^1.6.10",
"tailwind-merge": "^3.4.0",
"vaul": "^1.1.2",
"workers-ai-provider": "^3.0.2",
"zod": "^4.3.5",
"@pipecat-ai/client-js": "^1.5.0",
"@pipecat-ai/client-react": "^1.1.0",
"@pipecat-ai/websocket-transport": "^1.5.0",
"protobufjs": "^7.4.0"
}
}