-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "agentmemory",
"version": "0.1.0",
"private": false,
"description": "Visual memory manager for AI agents. MCP-native, MIT-licensed, free forever.",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"mcp": "tsx mcp/index.ts",
"typecheck:mcp": "tsc -p tsconfig.mcp.json",
"start:mcp": "tsx mcp/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@supabase/supabase-js": "^2.45.0",
"clsx": "2.1.1",
"d3": "^7.9.0",
"date-fns": "^4.4.0",
"lucide-react": "^1.17.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-dropzone": "^15.0.0",
"react-router-dom": "^7.16.0",
"tailwind-merge": "3.4.0",
"zod": "^3.23.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tailwindcss/vite": "4.1.17",
"@types/d3": "^7.4.3",
"@types/node": "22.19.17",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.1",
"tailwindcss": "4.1.17",
"tsx": "^4.19.0",
"typescript": "5.9.3",
"vite": "7.3.2",
"vite-plugin-singlefile": "2.3.0"
}
}