-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.16 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 3.16 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
{
"name": "dodo",
"version": "0.4.0",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev -c wrangler.dev.jsonc",
"build": "COMMIT=$(git rev-parse --short HEAD 2>/dev/null || echo 'unknown') && echo \"{\\\"commit\\\":\\\"$COMMIT\\\",\\\"builtAt\\\":\\\"$(date -u +%Y-%m-%dT%H:%M:%SZ)\\\"}\" > public/version.json && node scripts/generate-typecheck-libs.mjs",
"deploy": "npm run build && wrangler deploy",
"deploy:safe": "npm run deploy && EXPECTED_COMMIT=$(git rev-parse --short HEAD) ./scripts/post-deploy-smoke.sh",
"smoke": "./scripts/post-deploy-smoke.sh",
"test": "vitest run",
"test:watch": "vitest",
"test:typecheck-smoke": "node --experimental-strip-types --experimental-detect-module --no-warnings=ExperimentalWarning scripts/smoke-typecheck.mjs",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"typecheck": "tsc --noEmit",
"types": "wrangler types"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.37",
"@cloudflare/codemode": "^0.3.2",
"@cloudflare/puppeteer": "^1.0.6",
"@cloudflare/shell": "^0.3.0",
"@cloudflare/think": "^0.1.1",
"@hono/capnweb": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.28.0",
"agents": "^0.8.7",
"ai": "^6.0.142",
"capnweb": "^0.6.1",
"cron-schedule": "^6.0.0",
"hono": "^4.12.9",
"jose": "^6.1.3",
"typescript": "^5.8.3",
"zod": "^4.1.11"
},
"cloudflare": {
"bindings": {
"SECRETS_MASTER_KEY": {
"description": "32-byte hex key for encrypting per-user secrets. Generate with `openssl rand -hex 32`."
},
"COOKIE_SECRET": {
"description": "Secret for signing session-sharing cookies. Generate with `openssl rand -hex 32`."
},
"DODO_MCP_TOKEN": {
"description": "Bearer token for the MCP endpoint (`/mcp` and `/mcp/codemode`). Generate with `openssl rand -base64url 32`."
},
"OPENCODE_GATEWAY_TOKEN": {
"description": "Auth token for the [OpenCode LLM gateway](https://opencode.cloudflare.dev). Only needed if using the OpenCode gateway."
},
"AI_GATEWAY_KEY": {
"description": "Auth key for the [Cloudflare AI Gateway](https://developers.cloudflare.com/ai-gateway/). Only needed if using AI Gateway."
},
"ADMIN_EMAIL": {
"description": "**Required.** Your email address. You'll be the admin user, auto-added to the allowlist on first request."
},
"CF_ACCESS_AUD": {
"description": "Optional — your [Cloudflare Access](https://developers.cloudflare.com/cloudflare-one/identity/authorization-cookie/validating-json/) application audience tag. Only needed for multi-user deployments with Access authentication."
},
"CF_ACCESS_TEAM_DOMAIN": {
"description": "Optional — your Cloudflare Access team domain (e.g. `https://your-team.cloudflareaccess.com`). Only needed for multi-user deployments with Access authentication."
}
}
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@cloudflare/vitest-pool-workers": "^0.13.5",
"@cloudflare/workers-types": "^4.20260207.0",
"@types/node": "^24.5.2",
"vitest": "^4.1.2",
"wrangler": "^4.78.0"
}
}