-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "syncmind",
"version": "0.1.0",
"description": "Shared persistent memory for AI coding agents, synced in real-time across Claude Code, Cursor, Codex, Windsurf, and any MCP-compatible tool.",
"author": "ExceptionRegret <exceptionregret@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ExceptionRegret/syncmind.git"
},
"bugs": {
"url": "https://github.com/ExceptionRegret/syncmind/issues",
"email": "exceptionregret@gmail.com"
},
"homepage": "https://github.com/ExceptionRegret/syncmind#readme",
"keywords": [
"ai",
"memory",
"mcp",
"claude-code",
"cursor",
"codex",
"windsurf",
"agent",
"sync",
"powersync",
"neon",
"nextjs"
],
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"postinstall": "powersync-web copy-assets -o public"
},
"dependencies": {
"@journeyapps/wa-sqlite": "^1.5.0",
"@neondatabase/serverless": "^1.0.2",
"@powersync/react": "^1.9.0",
"@powersync/web": "^1.36.0",
"next": "16.2.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"uuid": "^13.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}