-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.31 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "scrollback",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/atomtanstudio/scrollback.git"
},
"bugs": {
"url": "https://github.com/atomtanstudio/scrollback/issues"
},
"homepage": "https://scrollback.atomtan.studio",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx tsx scripts/migrate.ts && npm run db:push && npx tsx scripts/ensure-users.ts && npx tsx scripts/ensure-categories.ts && next start",
"doctor": "node scripts/doctor.mjs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"verify": "npm run doctor && npm run lint && npm run typecheck && npm test && npm run build",
"prisma:generate": "prisma generate --schema=prisma/schema.prisma && prisma generate --schema=prisma/schema-sqlite.prisma",
"db:push": "tsx scripts/db-push.ts",
"db:push:postgres": "prisma db push --schema=prisma/schema.prisma --accept-data-loss",
"db:backup": "tsx scripts/backup-database.ts",
"agent-memory:backfill": "tsx scripts/backfill-agent-memory.ts",
"agent-memory:search": "tsx scripts/search-agent-memory.ts",
"agent-memory:gateway": "node scripts/scrollback-memory-search.mjs",
"gbrain": "node scripts/gbrain-run.mjs",
"postinstall": "npm run prisma:generate"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1008.0",
"@aws-sdk/lib-storage": "^3.1008.0",
"@google/genai": "^1.44.0",
"@mozilla/readability": "^0.6.0",
"@prisma/adapter-better-sqlite3": "^7.8.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.6.2",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.1",
"framer-motion": "^12.36.0",
"jsdom": "^29.0.0",
"lucide-react": "^0.577.0",
"marked": "^17.0.4",
"next": "16.2.4",
"next-auth": "^5.0.0-beta.30",
"pg": "^8.20.0",
"prisma": "^7.8.0",
"react": "^18",
"react-dom": "^18",
"react-intersection-observer": "^10.0.3",
"rss-parser": "^3.13.0",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/canvas-confetti": "^1.9.0",
"@types/jsdom": "^28.0.0",
"@types/node": "^20",
"@types/pg": "^8.18.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "^15.5.15",
"postcss": "8.5.10",
"tailwindcss": "^3.4.1",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.0"
},
"overrides": {
"@hono/node-server": "1.19.13",
"hono": "4.12.18",
"anymatch": {
"picomatch": "2.3.2"
},
"micromatch": {
"picomatch": "2.3.2"
},
"postcss": "8.5.10",
"readdirp": {
"picomatch": "2.3.2"
}
}
}