-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.92 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.92 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
74
75
76
77
78
79
80
81
{
"name": "@dafthunk/api",
"private": true,
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "wrangler dev --live-reload --port 3002",
"dev:preview": "wrangler dev --remote --port 3002",
"lint": "biome check",
"typecheck": "tsc --noEmit",
"check": "biome check --write",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.mts --passWithNoTests",
"deploy": "RUNTIME_VERSION=$(git rev-parse HEAD) wrangler deploy --env production --define RUNTIME_VERSION:\"\\\"$RUNTIME_VERSION\\\"\"",
"format": "biome format --write",
"db:generate": "drizzle-kit generate",
"db:migrate": "wrangler d1 migrations apply DB --local",
"db:reset": "wrangler d1 execute DB --local --command=\"DROP TABLE IF EXISTS secrets; DROP TABLE IF EXISTS datasets; DROP TABLE IF EXISTS executions; DROP TABLE IF EXISTS cron_triggers; DROP TABLE IF EXISTS deployments; DROP TABLE IF EXISTS memberships; DROP TABLE IF EXISTS api_keys; DROP TABLE IF EXISTS workflows; DROP TABLE IF EXISTS users; DROP TABLE IF EXISTS organizations; DROP TABLE IF EXISTS d1_migrations; DROP TABLE IF EXISTS integrations;\"",
"db:preview:migrate": "wrangler d1 migrations apply DB --remote --preview",
"db:preview:reset": "wrangler d1 execute DB --remote --preview --command=\"DROP TABLE IF EXISTS datasets; DROP TABLE IF EXISTS executions; DROP TABLE IF EXISTS cron_triggers; DROP TABLE IF EXISTS deployments; DROP TABLE IF EXISTS memberships; DROP TABLE IF EXISTS api_keys; DROP TABLE IF EXISTS workflows; DROP TABLE IF EXISTS users; DROP TABLE IF EXISTS organizations; DROP TABLE IF EXISTS d1_migrations; DROP TABLE IF EXISTS integrations;\"",
"db:prod:migrate": "wrangler d1 migrations apply DB --remote --env production",
"db:prod:reset": "wrangler d1 execute DB --remote --env production --command=\"DROP TABLE IF EXISTS datasets; DROP TABLE IF EXISTS executions; DROP TABLE IF EXISTS cron_triggers; DROP TABLE IF EXISTS deployments; DROP TABLE IF EXISTS memberships; DROP TABLE IF EXISTS api_keys; DROP TABLE IF EXISTS workflows; DROP TABLE IF EXISTS users; DROP TABLE IF EXISTS organizations; DROP TABLE IF EXISTS d1_migrations;\" && wrangler d1 migrations apply DB --remote --env production",
"generate:master-key": "node scripts/generate-master-key.js"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.13.3",
"@cloudflare/workers-types": "^4.20260317.1",
"@types/mailparser": "^3.4.6",
"@types/node": "^22.19.7",
"@types/three": "^0.181.0",
"@types/wellknown": "^0.5.8",
"drizzle-kit": "0.31.1",
"globals": "^15.15.0",
"partyserver": "^0.3.3",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"wrangler": "^4.76.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@cf-wasm/photon": "^0.3.4",
"@cf-wasm/png": "^0.3.2",
"@cf-wasm/quickjs": "^0.2.4",
"@cf-wasm/resvg": "^0.3.3",
"@cloudflare/ai-utils": "^1.0.1",
"@cloudflare/containers": "^0.1.1",
"@cloudflare/sandbox": "^0.7.18",
"@dafthunk/runtime": "workspace:*",
"@dafthunk/types": "workspace:*",
"@dafthunk/utils": "workspace:*",
"@gltf-transform/core": "^4.3.0",
"@google/genai": "^1.37.0",
"@hono-rate-limiter/cloudflare": "^0.2.2",
"@hono/oauth-providers": "^0.8.5",
"@hono/zod-validator": "^0.7.6",
"@mapbox/martini": "^0.2.0",
"@turf/helpers": "^7.3.2",
"@turf/turf": "^7.3.2",
"agents": "^0.7.9",
"ai": "^6.0.134",
"aws4fetch": "^1.0.20",
"cloudflare": "^5.2.0",
"cron-parser": "^5.4.0",
"drizzle-orm": "0.44.5",
"exifreader": "^4.36.0",
"geotiff": "^2.1.3",
"hono": "^4.12.7",
"jose": "^6.1.3",
"jsonpath-plus": "^10.3.0",
"mailparser": "^3.9.3",
"mimetext": "^3.0.28",
"openai": "^6.16.0",
"stripe": "^20.1.2",
"three": "^0.182.0",
"three-bvh-csg": "^0.0.17",
"twilio": "^5.11.2",
"uuid": "^13.0.0",
"wellknown": "^0.5.0",
"zod": "^4.3.5"
}
}