forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
318 lines (318 loc) · 17.5 KB
/
package.json
File metadata and controls
318 lines (318 loc) · 17.5 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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
{
"name": "eliza",
"version": "2.0.0-beta.0",
"private": true,
"type": "module",
"elizaos": {
"app": {
"defaults": {},
"capabilities": {
"text-large": "required",
"messaging": "optional",
"wallet": "optional",
"browser-automation": "optional"
}
}
},
"engines": {
"node": "24.15.0"
},
"scripts": {
"postinstall": "node scripts/fix-windows-bun-stub.mjs && bun scripts/patch-nested-core-dist.mjs && bun scripts/patch-nested-agent-dist.mjs && bun scripts/patch-tsup-dts.mjs && bun scripts/patch-rolldown-wasi-fallback.mjs && bun scripts/ensure-workspace-symlinks.mjs && node scripts/ensure-native-plugins-linked.mjs && node scripts/ensure-llama-cpp-submodule.mjs && node scripts/patch-llama-cpp-capacitor.mjs && node scripts/patch-llama-cpp-capacitor-x86_64.mjs && node scripts/patch-bigint-buffer.mjs",
"fix-deps": "bun scripts/fix-workspace-deps.mjs",
"fix-deps:check": "bun scripts/fix-workspace-deps.mjs --check",
"fix-deps:restore": "bun scripts/fix-workspace-deps.mjs --restore",
"plugin-submodules:restore": "bun scripts/plugin-submodules-dev.mjs --restore",
"ensure-plugin-test-conventions": "bun scripts/ensure-plugin-test-conventions.mjs",
"ensure-plugin-test-conventions:check": "bun scripts/ensure-plugin-test-conventions.mjs --check",
"trajectory:inspect": "node scripts/inspect-trajectory.mjs",
"trajectory:inspect:test": "node --test scripts/inspect-trajectory.test.mjs",
"audit:duplicate-components": "node scripts/audit-duplicate-components.mjs",
"audit:duplicate-components:self-check": "node scripts/audit-duplicate-components.mjs --self-check",
"audit:action-availability": "node scripts/audit-action-availability.mjs",
"audit:action-keyword-i18n": "node scripts/audit-action-keyword-i18n.mjs",
"audit:package-barrels": "node scripts/audit-package-barrels.mjs",
"audit:package-barrels:check": "node scripts/audit-package-barrels.mjs --check",
"audit:prompt-compliance": "node scripts/audit-prompt-compliance.mjs",
"audit:description-compressed": "node scripts/audit-prompt-compliance.mjs --description-compressed-only",
"lint:descriptions": "node scripts/lint-description-compressed.mjs",
"test:launch-qa:docs": "node scripts/launch-qa/check-docs.mjs --scope=launchdocs --json",
"test:launch-qa": "bun test scripts/launch-qa/*.test.ts && bun run test:launch-qa:docs && node scripts/launch-qa/check-mobile-artifacts.mjs --json --allow-missing-generated && node scripts/launch-qa/check-model-data.mjs --json && node scripts/launch-qa/run.mjs --suite quick --dry-run",
"test:launch-qa:release:dry": "node scripts/launch-qa/run.mjs --suite release --dry-run",
"test:ui:playwright": "bun run --cwd packages/app test:e2e",
"generate:action-search-keywords": "node scripts/generate-action-search-keywords.mjs && node packages/shared/scripts/generate-keywords.mjs --target ts",
"start": "bun run --cwd packages/agent start",
"start:eliza": "node packages/app-core/scripts/run-node-tsx.mjs packages/app-core/src/entry.ts start",
"dev:prepare": "turbo run build --filter=@elizaos/app... --filter=!@elizaos/app",
"dev": "bun run dev:prepare && bun run --cwd packages/app plugin:build && node packages/app-core/scripts/rt.mjs packages/app-core/scripts/dev-ui.mjs --name=eliza --app=app",
"dev:web:ui": "bun run dev:prepare && bun run --cwd packages/app plugin:build && node packages/app-core/scripts/rt.mjs packages/app-core/scripts/dev-ui.mjs --name=eliza --app=app",
"dev:ui": "bun run dev:prepare && node packages/app-core/scripts/rt.mjs packages/app-core/scripts/dev-ui.mjs --name=eliza --app=app --ui-only",
"dev:desktop": "bun run dev:prepare && ELIZA_NAMESPACE=eliza bun packages/app-core/scripts/dev-platform.mjs",
"dev:desktop:watch": "bun run dev:prepare && ELIZA_NAMESPACE=eliza ELIZA_DESKTOP_VITE_WATCH=1 bun packages/app-core/scripts/dev-platform.mjs",
"dev:harness": "bun scripts/dev-harness.mjs",
"harness:browser-app": "bun scripts/eliza-browser-app-harness.mjs",
"harness:browser-app:strict": "bun scripts/eliza-browser-app-harness.mjs --require-browser-tab --require-browser-events --require-trajectory --require-browser-action",
"local-inference:dflash:build": "node packages/app-core/scripts/build-llama-cpp-dflash.mjs",
"local-inference:dflash:bench": "node packages/inference/verify/dflash_drafter_runtime_smoke.mjs --bench",
"local-inference:ablation": "node scripts/local-inference-ablation.mjs",
"local-inference:ablation:quick": "node scripts/local-inference-ablation.mjs --quick",
"voice:latency-report": "node packages/app-core/scripts/voice-latency-report.mjs",
"voice:bargein-bench": "node packages/inference/verify/bargein_latency_harness.mjs",
"voice:endurance": "node packages/inference/verify/thirty_turn_endurance_harness.mjs",
"voice:mobile-rss": "node packages/inference/verify/mobile_peak_rss_harness.mjs",
"eliza1:gates": "node packages/inference/verify/eliza1_gates_collect.mjs",
"dev:agent": "bun run --cwd packages/agent dev",
"harness": "bun run --cwd packages/agent start",
"dev:core": "bun run --cwd packages/core dev",
"start:debug": "NODE_NO_WARNINGS=1 LOG_LEVEL=debug bun run --cwd packages/agent start",
"build": "turbo run build --concurrency=1 && node scripts/run-examples-benchmarks.mjs build",
"build:typescript": "turbo run build",
"build:client": "turbo run build --filter=@elizaos/app",
"format": "turbo run format",
"format:check": "turbo run format:check",
"clean": "turbo run clean --concurrency=100% && rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo bun.lock* .eliza .elizadb && bun install && bun run build --concurrency=100%",
"clean:cache": "node scripts/clean-cache-recursive.mjs",
"build:core": "turbo run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-sdk --filter=@elizaos/cloud-routing --filter=@elizaos/vault --filter=@elizaos/plugin-local-inference --no-cache",
"build:server": "turbo run build --filter=@elizaos/agent --no-cache",
"lint": "turbo run lint && node scripts/run-examples-benchmarks.mjs lint",
"lint:check": "turbo run lint:check",
"typecheck": "NODE_OPTIONS='--max-old-space-size=8192' turbo run typecheck --concurrency=1 --filter='!@elizaos/example-code' && node scripts/run-examples-benchmarks.mjs typecheck",
"lint:all": "bun run lint:check && bun run typecheck",
"pre-commit": "bun run scripts/pre-commit-lint.js",
"release": "bunx lerna publish from-package --dist-tag latest --force-publish --yes --no-verify-access",
"release:next": "bunx lerna publish from-package --dist-tag next --force-publish --yes --no-verify-access",
"release:beta": "bunx lerna publish from-package --dist-tag beta --force-publish --yes --no-verify-access",
"version:beta": "bunx lerna version prerelease --preid beta --force-publish --yes --no-push --no-git-tag-version",
"version:patch": "bunx lerna version patch --force-publish --yes --no-push --no-git-tag-version",
"version:minor": "bunx lerna version minor --force-publish --yes --no-push --no-git-tag-version",
"version:major": "bunx lerna version major --force-publish --yes --no-push --no-git-tag-version",
"prepublish:versions": "node scripts/replace-workspace-versions.js",
"postpublish:restore": "node scripts/restore-workspace-refs.js",
"migrate": "turbo run migrate --filter=./plugins/plugin-sql --force",
"migrate:generate": "turbo run migrate:generate --filter=./plugins/plugin-sql",
"test": "node scripts/run-all-tests.mjs",
"test:all": "node scripts/run-all-tests.mjs",
"test:cache-stability": "node scripts/run-vitest.mjs run packages/core/src/runtime/__tests__/cache-key-stability.test.ts",
"test:plugins": "bun run build:core && turbo run test --concurrency 3 --filter='./plugins/*' --filter='!@elizaos/app-lifeops' --filter='!@elizaos/plugin-agent-orchestrator' && bun run --cwd plugins/app-lifeops test && turbo run test --concurrency 1 --filter='@elizaos/plugin-agent-orchestrator'",
"test:client": "bun run build:core && TEST_PACKAGE_FILTER='\\((packages/app|packages/ui|plugins/app-lifeops|plugins/app-companion|plugins/app-training)\\)' TEST_SCRIPT_FILTER='^test$' node scripts/run-all-tests.mjs --no-cloud",
"test:core": "node scripts/with-test-runtime.mjs turbo run test --filter=./packages/core",
"test:server": "bun run build:core && TEST_PACKAGE_FILTER='\\((packages/agent|packages/app-core|packages/shared|packages/core|packages/vault|packages/elizaos|packages/skills|packages/scenario-runner)\\)' TEST_SCRIPT_FILTER='^test$' node scripts/run-all-tests.mjs --no-cloud",
"browser-bridge:package:release": "cd packages/browser-bridge && bun run package:release",
"test:browser-bridge": "cd packages/browser-bridge && bun run test:ci",
"test:browser-bridge:safari": "cd packages/browser-bridge && bun run test:smoke:safari",
"dev:cloud": "bun run --cwd cloud dev",
"dev:cloud:api": "bun run --cwd cloud dev:api",
"dev:cloud:web": "bun run --cwd cloud dev:web",
"dev:cloud:full": "bun run --cwd cloud dev:full",
"build:cloud": "bun run --cwd cloud build",
"build:android:cloud": "node packages/app-core/scripts/run-mobile-build.mjs android-cloud",
"build:android:system": "node packages/app-core/scripts/run-mobile-build.mjs android-system",
"test:cloud": "bun run --cwd cloud test",
"test:ci": "TEST_LANE=pr node scripts/run-all-tests.mjs --no-cloud",
"test:ci:live": "TEST_LANE=post-merge node scripts/run-all-tests.mjs --no-cloud",
"test:e2e": "TEST_LANE=pr node scripts/run-all-tests.mjs --only=e2e",
"test:e2e:live": "TEST_LANE=post-merge node scripts/run-all-tests.mjs --only=e2e",
"test:lifeops": "node scripts/run-all-tests.mjs --filter=plugins/app-lifeops --only=e2e",
"lifeops:verify-cerebras": "bun --bun plugins/app-lifeops/scripts/verify-cerebras-wiring.ts",
"lifeops:bench": "bun --bun packages/app-core/scripts/lifeops-prompt-benchmark.ts",
"lifeops:full": "node scripts/lifeops-full-run.mjs",
"lifeops:eliza": "MILADY_BENCH_AGENT=eliza node scripts/lifeops-full-run.mjs",
"lifeops:hermes": "MILADY_BENCH_AGENT=hermes node scripts/lifeops-full-run.mjs",
"lifeops:openclaw": "MILADY_BENCH_AGENT=openclaw node scripts/lifeops-full-run.mjs",
"lifeops:cerebras-direct": "MILADY_BENCH_AGENT=cerebras-direct node scripts/lifeops-full-run.mjs",
"lifeops:aggregate": "bun scripts/aggregate-lifeops-run.mjs",
"lifeops:multiagent-report": "node scripts/lifeops-multiagent-report.mjs",
"lifeops:delta": "bun scripts/lifeops-bench-delta.mjs",
"lifeops:multi-tier:smoke": "node scripts/lifeops-multi-tier-bench.mjs --suite smoke --tiers large,frontier",
"lifeops:multi-tier:core": "node scripts/lifeops-multi-tier-bench.mjs --suite core --tiers large,frontier",
"lifeops:multi-tier:local-small": "node scripts/lifeops-multi-tier-bench.mjs --suite smoke --tiers small",
"lifeops:bench-to-dataset": "node scripts/lifeops-benchmark-to-training-dataset.mjs",
"personality:bench": "bun --bun packages/benchmarks/personality-bench/src/runner.ts",
"personality:bench:calibrate": "bun --filter @elizaos/personality-bench calibrate",
"lifeops:optimize": "node scripts/lifeops-optimize-planner.mjs",
"lifeops:prompts:inventory": "node scripts/lifeops-prompt-inventory.mjs",
"lifeops:prompts:review": "node scripts/lifeops-prompt-review.mjs",
"lifeops:prompts:collisions": "node scripts/lifeops-action-collisions.mjs",
"test:plugin": "node scripts/run-all-tests.mjs --only=e2e --pattern",
"test:lint:no-vi-mocks": "node scripts/lint-no-vi-mocks.mjs",
"test:lint:lane-coverage": "node scripts/lint-lane-coverage.mjs",
"test:lint": "bun run test:lint:no-vi-mocks && bun run test:lint:lane-coverage",
"dev:mocks": "node scripts/start-mocks-bg.mjs",
"typecheck:cloud": "bun run --cwd cloud typecheck",
"verify:cloud": "bun run --cwd cloud verify",
"db:cloud:generate": "bun run --cwd cloud db:generate",
"db:cloud:migrate": "bun run --cwd cloud db:migrate",
"db:cloud:studio": "bun run --cwd cloud db:studio",
"publish:dry-run": "bun scripts/publish-from-dist.mjs",
"publish:packages": "bun scripts/publish-from-dist.mjs --apply",
"typecheck:dist": "NODE_OPTIONS='--max-old-space-size=8192' tsc --noEmit -p tsconfig.dist-paths.json",
"knip": "node scripts/knip-workspaces.mjs",
"knip:strict": "node scripts/knip-workspaces.mjs --fail-on-issues"
},
"packageManager": "bun@1.3.13",
"workspaces": [
"packages/*",
"packages/benchmarks/lib",
"packages/benchmarks/interrupt-bench",
"packages/examples/*",
"packages/examples/*/*",
"packages/examples/*/*/*",
"packages/native-plugins/*",
"packages/app-core/platforms/*",
"packages/app-core/deploy/cloud-agent-template",
"plugins/*",
"cloud/packages/sdk"
],
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@capacitor/core": "8.3.1",
"@elizaos-benchmarks/lib": "workspace:*",
"@elizaos/agent": "workspace:*",
"@elizaos/app-lifeops": "workspace:*",
"@elizaos/core": "workspace:*",
"@elizaos/plugin-agent-skills": "workspace:*",
"@elizaos/scenario-schema": "workspace:*",
"@elizaos/shared": "workspace:*",
"@elizaos/vitest-vite": "npm:vite@7.3.3",
"@playwright/test": "^1.59.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "1.3.13",
"@types/node": "25.6.2",
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"@types/react-test-renderer": "^19.0.0",
"@vitejs/plugin-react": "^6.0.0",
"@vitest/coverage-v8": "^4.0.17",
"bun-types": "1.3.13",
"chalk": "^5.3.0",
"express": "^5.2.1",
"jsdom": "^29.1.1",
"knip": "^5.88.1",
"lerna": "9.0.7",
"playwright": "^1.59.1",
"react-test-renderer": "^19.0.0",
"tsdown": "^0.22.0",
"tsx": "^4.21.0",
"turbo": "^2.7.4",
"typescript": "^6.0.3",
"vitest": "^4.0.17"
},
"resolutions": {
"@elizaos/core": "workspace:*",
"react": "19.2.5",
"react-dom": "19.2.5",
"@types/react": "19.2.14",
"@types/node": "25.6.2",
"typedoc-plugin-markdown": "4.11.0",
"typedoc": "0.28.19",
"zod": "^4.4.3",
"drizzle-orm": "0.45.2",
"@electric-sql/pglite": "^0.4.5",
"@solana/web3.js": "1.98.4",
"@clack/prompts": "1.3.0",
"@types/three": "0.184.0",
"axios": "1.16.0",
"three": "0.184.0"
},
"overrides": {
"@elizaos/core": "workspace:*",
"@biomejs/biome": "2.4.14",
"@types/node": "25.6.2",
"@nrwl/devkit": "19.8.4",
"@nrwl/tao": "19.8.4",
"color-convert": "3.1.3",
"color-name": "2.1.0",
"is-core-module": "2.16.1",
"error-ex": "1.3.4",
"has-ansi": "6.0.2",
"ai": "6.0.174",
"@ai-sdk/gateway": "3.0.109",
"@ai-sdk/provider": "3.0.10",
"@ai-sdk/provider-utils": "4.0.26",
"@ai-sdk/openai": "3.0.58",
"pg-native": "npm:empty-npm-package@1.0.0",
"libpq": "npm:empty-npm-package@1.0.0",
"@uniswap/sdk-core": "^7.0.0",
"@uniswap/v3-sdk": "3.30.0",
"@uniswap/v2-sdk": "4.20.0",
"@uniswap/v4-sdk": "2.0.0",
"drizzle-orm": "0.45.2",
"@electric-sql/pglite": "^0.4.5",
"rimraf": "^6.0.1",
"rollup": "npm:@rollup/wasm-node@4.60.3",
"tsup": "8.5.1",
"viem": "2.48.8",
"@solana/web3.js": "1.98.4",
"@slack/web-api": "7.15.2",
"@clack/prompts": "1.3.0",
"@types/three": "0.184.0",
"axios": "1.16.0",
"three": "0.184.0"
},
"patchedDependencies": {
"@orca-so/common-sdk@0.7.0": "patches/@orca-so%2Fcommon-sdk@0.7.0.patch",
"@pixiv/three-vrm@3.5.2": "packages/app-core/patches/@pixiv%2Fthree-vrm@3.5.2.patch",
"@vitest/mocker@4.1.5": "patches/@vitest%2Fmocker@4.1.5.patch",
"telegraf@4.16.3": "patches/telegraf@4.16.3.patch",
"tsup@8.5.1": "patches/tsup@8.5.1.patch",
"vitest@4.1.5": "patches/vitest@4.1.5.patch",
"@capacitor/barcode-scanner@3.0.2": "patches/@capacitor%2Fbarcode-scanner@3.0.2.patch"
},
"trustedDependencies": [
"@biomejs/biome",
"@discordjs/opus",
"@elizaos/plugin-starter",
"@nestjs/core",
"@openapitools/openapi-generator-cli",
"@swc/core",
"@tensorflow/tfjs-node",
"bigint-buffer",
"bufferutil",
"canvas",
"dtrace-provider",
"electron",
"esbuild",
"keccak",
"node-llama-cpp",
"nx",
"onnxruntime-node",
"protobufjs",
"secp256k1",
"sharp",
"tesseract.js",
"unrs-resolver",
"utf-8-validate",
"workerd"
],
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@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-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.0.0",
"@elizaos/plugin-agent-orchestrator": "workspace:*",
"@elizaos/plugin-anthropic": "workspace:*",
"@elizaos/plugin-elizacloud": "workspace:*",
"@elizaos/plugin-groq": "workspace:*",
"@elizaos/plugin-local-embedding": "workspace:*",
"@elizaos/plugin-local-ai": "workspace:*",
"@elizaos/plugin-ollama": "workspace:*",
"@elizaos/plugin-openai": "workspace:*",
"@elizaos/plugin-zai": "workspace:*",
"@elizaos/plugin-sql": "workspace:*",
"@elysiajs/cors": "^1.4.1",
"elysia": "^1.4.21",
"node-edge-tts": "^1.2.9",
"zod": "^4.4.3"
}
}