-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.11 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
{
"name": "context-mixer",
"version": "0.1.0",
"private": true,
"description": "AI-accessible knowledge base service",
"main": "src/index.ts",
"scripts": {
"dev": "wrangler dev --persist-to %USERPROFILE%/.context-mixer/wrangler-state",
"deploy": "node scripts/make-wrangler-toml.js && wrangler deploy",
"d1:create": "wrangler d1 create context-mixer-db",
"d1:migrate": "wrangler d1 execute context-mixer-db --remote --file=src/db/schema.sql",
"d1:migrate-local": "wrangler d1 execute context-mixer-db --local --file=src/db/schema.sql --persist-to %USERPROFILE%/.context-mixer/wrangler-state",
"r2:create": "wrangler r2 bucket create context-mixer-files",
"test": "vitest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@clerk/backend": "^3.6.1",
"@cloudflare/workers-oauth-provider": "^0.8.0",
"@hono/clerk-auth": "^3.1.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"hono": "^4.6.15",
"marked": "^12.0.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"typescript": "^5.7.3",
"wrangler": "^4.104.0"
}
}