-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 934 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 934 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
{
"name": "@nodrix/worker",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "wrangler dev --config ../wrangler.toml",
"build": "wrangler deploy --config ../wrangler.toml --dry-run --outdir=dist",
"deploy": "wrangler deploy --config ../wrangler.toml",
"typecheck": "tsc --noEmit",
"types": "wrangler types --config ../wrangler.toml"
},
"dependencies": {
"@cloudflare/workers-oauth-provider": "^0.7.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@nodrix/blocks-shared": "*",
"@nodrix/integrations-shared": "*",
"@nodrix/widgets-shared": "*",
"agents": "^0.13.2",
"better-auth": "^1.6.11",
"drizzle-orm": "^0.45.2",
"hono": "^4.6.12",
"nanoid": "^5.1.11",
"zod": "^4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241224.0",
"bun-types": "^1.3.14",
"typescript": "^5.6.3",
"wrangler": "^4.28.1"
}
}