-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 736 Bytes
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
{
"name": "context-capsule",
"version": "1.0.0",
"description": "Portable context for agent workflows",
"scripts": {
"dev": "tsx watch src/dev.ts",
"test": "vitest",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"db:seed": "tsx src/db/seed.ts",
"db:query": "tsx src/db/query.ts"
},
"type": "module",
"dependencies": {
"@hono/node-server": "^1.19.11",
"@neondatabase/serverless": "^1.0.2",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.8",
"nanoid": "^5.1.7"
},
"devDependencies": {
"@types/node": "^25.5.0",
"dotenv": "^17.3.1",
"drizzle-kit": "^0.31.10",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}