forked from emdash-cms/emdash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.46 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
{
"name": "@emdash-cms/emdash-bot",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Cloudflare-deployed orchestrator + agent for emdashbot. Webhook ingress, per-issue state machine (Durable Object), classifier, and container-sandboxed investigate agent in one Worker.",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"deploy": "vite build && wrangler deploy",
"cf-typegen": "pnpm build && wrangler types worker-configuration.d.ts --config dist/emdash_bot/wrangler.json",
"bot:generate": "node --experimental-strip-types scripts/generate-machine.ts",
"evals": "node --experimental-strip-types evals/bin/run.ts",
"evals:implementation": "node --experimental-strip-types evals/bin/implementation-smoke.ts",
"pretypecheck": "pnpm cf-typegen",
"typecheck": "tsc --noEmit",
"test": "pnpm test:unit && pnpm test:workers",
"test:unit": "vitest run --config vitest.config.ts",
"test:workers": "vitest run --config vitest.workers.config.ts",
"test:watch": "vitest --config vitest.config.ts"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.53.0",
"@cloudflare/vitest-plugin": "catalog:",
"@flue/vite": "2.0.5",
"typescript": "catalog:",
"vite": "8.0.11",
"vitest": "catalog:",
"wrangler": "catalog:"
},
"dependencies": {
"@cloudflare/codemode": "^0.4.1",
"@cloudflare/sandbox": "0.12.3",
"@cloudflare/shell": "^0.4.0",
"@flue/runtime": "2.0.3",
"agents": "^0.20.1",
"hono": "4.12.27",
"valibot": "^1.4.1"
}
}