forked from vercel-labs/workflow-builder-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
179 lines (179 loc) · 6.54 KB
/
package.json
File metadata and controls
179 lines (179 loc) · 6.54 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "ai-workflow-builder-template",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "A template for building your own AI-driven workflow automation platform",
"scripts": {
"dev": "pnpm discover-plugins && pnpm copy-monaco && next dev",
"dev:sandbox": "docker compose up sandbox",
"build": "tsx scripts/migrate-prod.ts && pnpm discover-plugins && pnpm copy-monaco && next build",
"copy-monaco": "node scripts/copy-monaco.mjs",
"start": "next start",
"type-check": "tsc --noEmit",
"check": "ultracite check",
"fix": "ultracite fix",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push --force",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx scripts/seed/seed-chains.ts && tsx scripts/seed/seed-tokens.ts",
"db:seed-chains": "tsx scripts/seed/seed-chains.ts",
"db:seed-test-wallet": "tsx scripts/seed/seed-test-wallet.ts",
"db:seed-x402": "tsx scripts/seed/seed-x402-test.ts",
"db:fund-test-wallet": "tsx scripts/miscellaneous/fund-test-wallet.ts",
"db:seed-tokens": "tsx scripts/seed/seed-tokens.ts",
"db:setup": "pnpm db:migrate && pnpm db:setup-workflow && pnpm db:seed",
"db:setup-workflow": "workflow-postgres-setup",
"discover-plugins": "tsx scripts/discover-plugins.ts",
"create-plugin": "tsx scripts/create-plugin.ts",
"analyze-steps": "tsx scripts/analyze-steps.ts",
"profile-step": "tsx scripts/profile-step.ts",
"workflow:profile": "tsx scripts/runtime/workflow_runtime_analysis/workflow-runner-profiled.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "playwright test",
"dep-audit": "tsx scripts/dep-audit.ts",
"discover": "tsx tests/e2e/playwright/discover.ts",
"test:health": "tsx tests/e2e/playwright/health.ts",
"test:e2e:ui": "playwright test --ui",
"test:e2e:vitest": "vitest run tests/e2e/vitest",
"test:e2e:schedule": "vitest run tests/e2e/vitest/schedule-pipeline.test.ts",
"test:e2e:schedule:full": "FULL_E2E=true vitest run tests/e2e/vitest/schedule-pipeline.test.ts",
"test:e2e:runner": "vitest run tests/e2e/vitest/workflow-runner.test.ts",
"profile:analyze": "tsx scripts/runtime/workflow_runtime_analysis/analyze-steps.ts",
"profile:step": "tsx scripts/runtime/workflow_runtime_analysis/profile-step.ts",
"profile:workflow": "tsx scripts/runtime/workflow_runtime_analysis/workflow-runner-profiled-bootstrap.ts",
"profile:calibrate": "tsx scripts/runtime/workflow_runtime_analysis/calibrate-wasm-fuel.ts",
"profile:report": "tsx scripts/runtime/workflow_runtime_analysis/generate-report.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.74",
"@ai-sdk/openai": "^2.0.102",
"@ai-sdk/provider": "^2.0.1",
"@aws-sdk/client-sqs": "^3.1024.0",
"@coinbase/x402": "^2.1.0",
"@getpara/ethers-v6-integration": "2.20.0",
"@getpara/server-sdk": "2.20.0",
"@kubernetes/client-node": "^1.4.0",
"@linear/sdk": "^63.4.0",
"@mendable/firecrawl-js": "^4.18.1",
"@modelcontextprotocol/sdk": "^1.28.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.47.0",
"@slack/web-api": "^7.15.0",
"@solana/web3.js": "^1.98.4",
"@turnkey/crypto": "^2.8.13",
"@turnkey/ethers": "^1.3.27",
"@turnkey/sdk-server": "^5.2.0",
"@vercel/analytics": "^1.6.1",
"@vercel/og": "^0.11.1",
"@vercel/sdk": "^1.19.26",
"@vercel/speed-insights": "^1.3.1",
"@workflow/world-postgres": "4.1.0-beta.51",
"@x402/core": "^2.8.0",
"@x402/evm": "^2.8.0",
"@x402/next": "^2.8.0",
"@xyflow/react": "^12.10.2",
"ai": "^5.0.167",
"better-auth": "^1.5.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cron-parser": "^5.5.0",
"dotenv": "^17.4.1",
"drizzle-orm": "^0.45.2",
"ethers": "^6.16.0",
"import-in-the-middle": "^2.0.6",
"jose": "^6.2.2",
"jotai": "^2.19.0",
"jszip": "^3.10.1",
"lucide-react": "^0.577.0",
"motion": "^12.38.0",
"mppx": "^0.5.12",
"nanoid": "^5.1.7",
"next": "16.2.2",
"next-themes": "^0.4.6",
"ox": "0.14.20",
"postgres": "^3.4.9",
"prom-client": "^15.1.3",
"radix-ui": "^1.4.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-resizable-panels": "^3.0.6",
"recharts": "^3.8.1",
"require-in-the-middle": "^8.0.1",
"resend": "^6.10.0",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"stripe": "^20.3.1",
"tailwind-merge": "^3.5.0",
"v0-sdk": "^0.16.4",
"vaul": "^1.1.2",
"workflow": "4.2.0-beta.76",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@inquirer/prompts": "^8.3.2",
"@noble/hashes": "^2.0.1",
"@playwright/test": "^1.59.1",
"@sentry/cli": "^2.58.5",
"@tailwindcss/postcss": "^4",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.2",
"dotenv-expand": "^12.0.3",
"drizzle-kit": "^0.31.10",
"jsdom": "^27.4.0",
"knip": "^5.88.1",
"monaco-editor": "0.54.0",
"permissionless": "^0.3.4",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"ultracite": "6.5.1",
"viem": "^2.47.1",
"vitest": "^4.1.2"
},
"pnpm": {
"neverBuiltDependencies_comment": "prisma is an unused optional dep of better-auth's prisma adapter; we use drizzle. Skip its preinstall which requires Node 20.19+.",
"neverBuiltDependencies": [
"prisma"
],
"overrides": {
"rollup": "^4.59.0",
"minimatch": "^10.2.3",
"devalue": "^5.6.4",
"serialize-javascript": "^7.0.3",
"axios": "^1.13.5",
"undici": "^6.24.0",
"fast-xml-parser": "^5.5.6",
"ajv": "^8.18.0",
"bn.js": "^5.2.3",
"@isaacs/brace-expansion": "^5.0.1",
"@trpc/server": "^11.8.0",
"glob": "^11.1.0",
"dompurify": "^3.3.2",
"hono": "^4.12.7",
"lodash": "^4.17.23",
"@hono/node-server": ">=1.19.10",
"file-type": ">=21.3.1",
"yauzl": ">=3.2.1"
}
}
}