forked from CaviraOSS/OpenMemory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.42 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.42 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
{
"name": "openmemory-workspace",
"version": "1.1.0",
"private": true,
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"dev": "concurrently \"bun run dev:backend\" \"bun run dev:frontend\" \"bun run dev:dashboard\"",
"dev:frontend": "cd frontend && bun run dev",
"dev:backend": "cd backend && bun run dev",
"dev:dashboard": "cd frontend && bun run dev:server",
"build": "bun run build:frontend && bun run build:backend",
"build:frontend": "cd frontend && bun run build",
"build:backend": "cd backend && bun run build",
"serve": "bun run build && concurrently \"bun run serve:backend\" \"bun run serve:dashboard\"",
"serve:backend": "cd backend && bun run start",
"serve:dashboard": "cd frontend && bun run serve",
"start": "bun run serve",
"test": "bun run --filter '*' test",
"clean": "bun run --filter '*' clean",
"install:all": "bun install",
"prisma:generate": "cd frontend && bunx prisma generate",
"prisma:push": "cd frontend && bunx prisma db push",
"prisma:studio": "cd frontend && bunx prisma studio"
},
"devDependencies": {
"@types/node": "^24.9.1",
"concurrently": "^9.2.1"
},
"description": "OpenMemory - Long-term memory system for AI agents with Bun workspace for parallel execution",
"keywords": [
"memory",
"ai",
"llm",
"openmemory",
"workspace"
],
"author": "OpenMemory Contributors",
"license": "MIT"
}