forked from elizaOS/cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
264 lines (264 loc) · 11 KB
/
package.json
File metadata and controls
264 lines (264 loc) · 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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
{
"name": "eliza-cloud-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "find node_modules -path '*/thread-stream/test' -type d -exec rm -rf {} + 2>/dev/null || true; find node_modules -path '*/thread-stream/bench.js' -delete 2>/dev/null || true; find node_modules -path '*/thread-stream/LICENSE' -delete 2>/dev/null || true; find node_modules -path '*/thread-stream/README.md' -delete 2>/dev/null || true",
"setup": "bun run scripts/setup.ts",
"setup:check": "bun run scripts/setup.ts --check",
"dev": "next dev --turbopack",
"dev:local": "DEV_LINKED=1 next dev --webpack",
"dev:quick": "next dev --turbopack",
"dev:x402": "bun run scripts/dev-x402.ts",
"dev:full": "bun run setup:check && bun run dev:quick",
"generate:llms": "tsx scripts/generate-llms-txt.ts",
"generate:jwt-keys": "bun run scripts/generate-jwt-keys.ts",
"build": "bun run generate:llms && NEXT_DIST_DIR=.next-build LOG_LEVEL=error NODE_NO_WARNINGS=1 next build",
"build:analyze": "NEXT_DIST_DIR=.next-analyze ANALYZE=true next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check-types": "bun run scripts/check-types-split.ts",
"check-types:full": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:local:setup": "tsx scripts/setup-local-db-comprehensive.ts",
"db:local:start": "docker-compose up -d",
"db:local:stop": "docker-compose down",
"db:local:clean": "docker-compose down -v && docker network prune -f",
"db:local:logs": "docker-compose logs -f postgres",
"db:local:seed": "tsx scripts/seed-local-dev.ts",
"db:audit": "bun run scripts/audit-migrations.ts",
"seed:credit-packs": "tsx scripts/seed-credit-packs.ts",
"stripe:webhook": "stripe listen --forward-to localhost:3000/api/stripe/webhook",
"cron:auto-top-up": "tsx scripts/trigger-auto-top-up.ts",
"billing:set-email": "tsx scripts/set-billing-email.ts",
"bootstrapper:build": "cd bootstrapper && ./build.sh",
"cache:clear": "tsx scripts/clear-cache.ts",
"cache:health": "tsx scripts/cache-health-check.ts",
"eliza-app:cleanup": "bun run scripts/cleanup-eliza-app-user.ts",
"mcp:inspector": "bunx @modelcontextprotocol/inspector@latest",
"admin:promote": "bun run scripts/promote-admin.ts",
"admin:list": "bun run scripts/promote-admin.ts --list",
"admin:revoke": "bun run scripts/promote-admin.ts --revoke",
"test:unit": "SKIP_DB_DEPENDENT=1 SKIP_SERVER_CHECK=true bun test --preload ./tests/load-env.ts tests/unit",
"test:repo-unit:bulk": "SKIP_DB_DEPENDENT=1 SKIP_SERVER_CHECK=true bun test --max-concurrency=1 --preload ./tests/load-env.ts $(find tests/unit -name '*.test.ts' ! -path 'tests/unit/credits.test.ts' ! -path 'tests/unit/eliza-app/telegram-ux-helpers.test.ts' ! -path 'tests/unit/eliza-app/discord-auth.test.ts' | sort) lib/services/gateway-discord/__tests__ services/gateway-discord/tests/gateway-manager.test.ts services/gateway-discord/tests/leader-election.test.ts services/gateway-discord/tests/logger.test.ts services/gateway-discord/tests/voice-message-handler.test.ts",
"test:repo-unit:special": "SKIP_DB_DEPENDENT=1 SKIP_SERVER_CHECK=true bun test --preload ./tests/load-env.ts tests/unit/credits.test.ts tests/unit/eliza-app/telegram-ux-helpers.test.ts tests/unit/eliza-app/discord-auth.test.ts",
"test:integration": "bun test --max-concurrency=1 --preload ./tests/e2e/preload.ts tests/integration --timeout 120000",
"test:services": "bun test --max-concurrency=1 --preload ./tests/load-env.ts tests/integration/services --timeout 120000",
"test:properties": "bun test --max-concurrency=1 --preload ./tests/load-env.ts tests/properties --timeout 300000",
"test:runtime": "bun test --max-concurrency=1 --preload ./tests/load-env.ts tests/runtime --timeout 120000",
"test:mcp": "bun test --preload ./tests/load-env.ts tests/runtime/mcp-loading.test.ts --timeout 120000",
"test:oauth": "bun test --preload ./tests/e2e/preload.ts tests/integration/unified-oauth-api.test.ts --timeout 120000",
"test:oauth:manual": "./tests/manual/oauth-manual-test.sh",
"test:e2e:api": "bun test --preload ./tests/e2e/preload.ts tests/e2e/api --timeout 120000",
"test": "bun run test:repo-unit:bulk && bun run test:repo-unit:special",
"test:playwright": "bun test tests/playwright"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.37",
"@ai-sdk/gateway": "^3.0.22",
"@ai-sdk/openai": "^3.0.18",
"@aws-sdk/client-cloudformation": "^3.974.0",
"@aws-sdk/client-cloudwatch": "^3.974.0",
"@aws-sdk/client-cloudwatch-logs": "^3.974.0",
"@aws-sdk/client-ecr": "^3.974.0",
"@aws-sdk/client-kms": "^3.974.0",
"@coinbase/x402": "^2.1.0",
"@discordjs/rest": "^2.6.0",
"@elevenlabs/elevenlabs-js": "^2.32.0",
"@elizaos/core": "1.7.3-alpha.2",
"@elizaos/plugin-elevenlabs": "^1.6.0",
"@elizaos/plugin-elizacloud": "^1.7.5",
"@elizaos/plugin-knowledge": "^1.6.1",
"@elizaos/plugin-mcp": "1.8.2",
"@elizaos/plugin-n8n-workflow": "1.2.3",
"@elizaos/plugin-memory": "1.1.2",
"@elizaos/plugin-sql": "1.7.1",
"@elizaos/plugin-web-search": "^1.0.1",
"@fal-ai/client": "^1.8.3",
"@fal-ai/server-proxy": "^1.1.2",
"@modelcontextprotocol/sdk": "^1.27.1",
"@monaco-editor/react": "^4.7.0",
"@neondatabase/serverless": "^1.0.2",
"@octokit/rest": "^22.0.1",
"@privy-io/react-auth": "^3.11.0",
"@privy-io/server-auth": "^1.32.5",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@react-three/fiber": "^9.5.0",
"@sendgrid/mail": "^8.1.6",
"@solana-program/memo": "^0.10.0",
"@solana-program/system": "^0.10.0",
"@solana-program/token": "^0.9.0",
"@solana/kit": "^5.4.0",
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"@stripe/react-stripe-js": "^5.4.1",
"@stripe/stripe-js": "^8.6.4",
"@tabler/icons-react": "^3.36.1",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@tsparticles/engine": "^3.9.1",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.9.1",
"@types/nodemailer": "^7.0.5",
"@types/three": "^0.182.0",
"@upstash/redis": "^1.36.1",
"@vercel/analytics": "^1.6.1",
"@vercel/blob": "^2.0.0",
"@vercel/sandbox": "^1.3.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"@xyflow/react": "^12.10.0",
"ai": "^6.0.48",
"ajv": "^8.18.0",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"decimal.js": "^10.6.0",
"discord-api-types": "^0.38.37",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"embla-carousel-react": "^8.6.0",
"exceljs": "^4.4.0",
"expletives": "^0.1.5",
"file-type": "^21.3.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"isomorphic-dompurify": "^2.35.0",
"jose": "^6.1.3",
"json5": "^2.2.3",
"libphonenumber-js": "^1.12.35",
"lucide-react": "^0.562.0",
"mcp-handler": "^1.0.7",
"motion": "^12.29.0",
"nanoid": "^5.1.6",
"next": "^16.1.6",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"nextjs-toploader": "^3.9.17",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"nodemailer": "^7.0.12",
"openai": "^6.16.0",
"oxapay": "^1.0.3",
"posthog-js": "^1.334.1",
"posthog-node": "^5.24.1",
"react": "19.2.3",
"react-day-picker": "^9.13.0",
"react-dom": "19.2.3",
"react-hook-form": "^7.71.1",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.4.1",
"react-syntax-highlighter": "^16.1.0",
"react-tweet": "^3.3.0",
"recharts": "^3.7.0",
"redis": "^4.7.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"streamdown": "^1.6.11",
"stripe": "^20.2.0",
"tailwind-merge": "^3.4.0",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4.1.18",
"telegraf": "^4.16.3",
"three": "^0.182.0",
"tokenlens": "^1.3.1",
"twitter-api-v2": "^1.29.0",
"use-stick-to-bottom": "^1.1.1",
"uuid": "^13.0.0",
"vaul": "^1.1.2",
"viem": "^2.45.1",
"x402-mcp": "^0.1.1",
"x402-next": "^1.1.0",
"zod": "^4.3.6",
"zod3": "npm:zod@3.25.76",
"zustand": "^5.0.10"
},
"devDependencies": {
"@elizaos/cli": "^1.7.2",
"@playwright/test": "^1.58.0",
"@types/bs58": "^5.0.0",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^25.0.10",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^11.0.0",
"@welldone-software/why-did-you-render": "^10.0.1",
"bun-types": "^1.3.8",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.9",
"eslint": "^9.39.1",
"eslint-config-next": "^16.1.6",
"fast-check": "^4.5.3",
"pg": "^8.17.2",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"webpack-bundle-analyzer": "^5.2.0"
},
"resolutions": {
"ai": "^6.0.48",
"@elizaos/core": "1.7.3-alpha.2",
"@walletconnect/core": "2.22.4",
"@walletconnect/logger": "3.0.0",
"@walletconnect/sign-client": "2.22.4",
"@walletconnect/types": "2.22.4",
"@walletconnect/universal-provider": "2.22.4",
"@walletconnect/utils": "2.22.4",
"pino": "10.0.0",
"pino-std-serializers": "7.0.0",
"on-exit-leak-free": "2.1.2",
"process-warning": "5.0.0",
"sonic-boom": "3.8.1",
"thread-stream": "3.1.0",
"bs58": "4.0.1",
"base-x": "3.0.11",
"@hono/node-server": "1.19.11",
"axios": "1.13.6",
"dompurify": "3.3.2",
"bn.js": "5.2.3",
"express-rate-limit": "8.3.0",
"fast-xml-parser": "5.4.2",
"hono": "4.12.5",
"lodash-es": "4.17.23",
"multer": "2.1.1",
"qs": "6.15.0",
"tar": "7.5.10",
"undici": "6.23.0",
"underscore": "1.13.8"
},
"patchedDependencies": {
"x402@1.1.0": "patches/x402@1.1.0.patch"
}
}