forked from koshikraj/ottopus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 824 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
30
31
32
33
{
"name": "@ottopus/service",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate-cli.ts",
"typecheck": "tsc --noEmit",
"mcp:stdio": "tsx src/mcp/stdio.ts"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@modelcontextprotocol/sdk": "^1.30.0",
"drizzle-orm": "^0.45.2",
"hono": "^4.6.14",
"jose": "^6.2.12",
"postgres": "^3.4.9",
"viem": "^2.56.3",
"zod": "^4.5.4"
},
"devDependencies": {
"@electric-sql/pglite": "^0.5.8",
"@types/node": "^22.10.2",
"drizzle-kit": "^0.31.10",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}