-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
226 lines (226 loc) · 10.3 KB
/
package.json
File metadata and controls
226 lines (226 loc) · 10.3 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
{
"name": "eliza",
"version": "2.0.0-alpha.176",
"module": "index.ts",
"type": "module",
"engines": {
"node": "24.15.0"
},
"scripts": {
"postinstall": "bun scripts/patch-nested-core-dist.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",
"generate:types": "cd packages/schemas && bunx buf lint && bunx buf generate",
"start": "bun run --cwd packages/agent start",
"start:eliza": "bun packages/app-core/src/entry.ts start",
"dev": "node packages/app-core/scripts/rt.mjs packages/app-core/scripts/dev-ui.mjs --name=eliza --app=app",
"dev:web:ui": "node packages/app-core/scripts/rt.mjs packages/app-core/scripts/dev-ui.mjs --name=eliza --app=app",
"dev:ui": "node packages/app-core/scripts/rt.mjs packages/app-core/scripts/dev-ui.mjs --name=eliza --app=app --ui-only",
"dev:desktop": "ELIZA_NAMESPACE=eliza bun packages/app-core/scripts/dev-platform.mjs",
"dev:desktop:watch": "ELIZA_NAMESPACE=eliza ELIZA_DESKTOP_VITE_WATCH=1 bun packages/app-core/scripts/dev-platform.mjs",
"dev:harness": "bun scripts/dev-harness.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",
"build:typescript": "turbo run build",
"build:client": "turbo run build --filter=@elizaos/client",
"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": "rm -rf .turbo .turbo-tsconfig.json tsdoc_cache tsdoc_comments && find . -type d -name .turbo -prune -exec rm -rf {} + 2>/dev/null; find . -type d -path '*/node_modules/.cache' -prune -exec rm -rf {} + 2>/dev/null; find . -type f -name .eslintcache -delete 2>/dev/null; find . -type d -name .vite -path '*/node_modules/*' -prune -exec rm -rf {} + 2>/dev/null; echo 'Cache/temp cleanup done.'",
"build:core": "turbo run build --filter=@elizaos/core --filter=@elizaos/cloud-sdk --filter=@elizaos/cloud-routing --filter=@elizaos/vault --no-cache",
"build:server": "turbo run build --filter=@elizaos/server --no-cache",
"lint": "turbo run lint",
"lint:check": "turbo run lint:check",
"typecheck": "turbo run 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",
"release:alpha": "bunx lerna publish from-package --dist-tag alpha --force-publish --yes --no-verify-access",
"version:alpha": "bunx lerna version prerelease --preid alpha --force-publish --yes --no-push --no-git-tag-version",
"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=./packages/plugin-sql --force",
"migrate:generate": "turbo run migrate:generate --filter=./packages/plugin-sql",
"test": "node scripts/run-all-tests.mjs",
"test:all": "node scripts/run-all-tests.mjs",
"test:plugins": "bun run build:core && turbo run test --concurrency 3 --filter='./plugins/*' --filter='!@elizaos/plugin-agent-orchestrator' && turbo run test --concurrency 1 --filter='@elizaos/plugin-agent-orchestrator'",
"test:client": "bun run build:core && TEST_PACKAGE_FILTER='\\((packages/app|packages/ui|apps/app-lifeops|apps/app-companion|apps/app-training)\\)' TEST_SCRIPT_FILTER='^test$' node scripts/run-all-tests.mjs",
"test:core": "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/schemas|packages/skills|packages/interop|packages/scenario-runner)\\)' TEST_SCRIPT_FILTER='^test$' node scripts/run-all-tests.mjs",
"browser-bridge:package:release": "cd apps/browser-bridge && bun run package:release",
"test:browser-bridge": "cd apps/browser-bridge && bun run test:ci",
"test:browser-bridge:safari": "cd apps/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",
"test:cloud": "bun run --cwd cloud test",
"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"
},
"packageManager": "bun@1.3.5",
"workspaces": [
"packages/*",
"packages/native-plugins/*",
"packages/app-core/platforms/*",
"packages/app-core/deploy/cloud-agent-template",
"apps/*",
"plugins/*",
"cloud/packages/sdk"
],
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@bufbuild/buf": "^1.47.2",
"@capacitor/core": "8.3.1",
"@elizaos/agent": "workspace:*",
"@elizaos/app-lifeops": "workspace:*",
"@elizaos/core": "workspace:*",
"@elizaos/plugin-agent-skills": "workspace:*",
"@elizaos/scenario-schema": "workspace:*",
"@elizaos/shared": "workspace:*",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.6",
"@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": "^1.3.5",
"bun-types": "latest",
"express": "^5.2.1",
"lerna": "9.0.7",
"react-test-renderer": "^19.0.0",
"turbo": "^2.7.4",
"tsx": "^4.21.0",
"typescript": "^6.0.0",
"vitest": "^4.0.17"
},
"resolutions": {
"react": "19.2.5",
"react-dom": "19.2.5",
"@types/react": "19.2.14",
"@types/node": "25.6.0",
"typedoc-plugin-markdown": "4.11.0",
"typedoc": "0.28.19",
"zod": "^4.3.6",
"drizzle-orm": "0.45.2",
"@electric-sql/pglite": "^0.4.5",
"@solana/web3.js": "1.98.4"
},
"overrides": {
"@biomejs/biome": "2.4.14",
"@types/node": "25.6.0",
"@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/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",
"tsup": "8.5.1",
"viem": "2.48.8",
"@solana/web3.js": "1.98.4"
},
"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",
"telegraf@4.16.3": "patches/telegraf@4.16.3.patch"
},
"trustedDependencies": [
"@biomejs/biome",
"@bufbuild/buf",
"@discordjs/opus",
"@elizaos/plugin-starter",
"@nestjs/core",
"@openapitools/openapi-generator-cli",
"@polyagent/app",
"@swc/core",
"@tensorflow/tfjs-node",
"bigint-buffer",
"bufferutil",
"bun",
"canvas",
"dtrace-provider",
"electron",
"esbuild",
"keccak",
"node-llama-cpp",
"nx",
"onnxruntime-node",
"protobufjs",
"secp256k1",
"sharp",
"tesseract.js",
"unrs-resolver",
"utf-8-validate",
"workerd"
],
"dependencies": {
"@aws-sdk/client-bedrock": "^3.983.0",
"@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-sql": "workspace:*",
"@elysiajs/cors": "^1.4.1",
"@polymarket/clob-client": "^5.2.0",
"@sinclair/typebox": "^0.34.47",
"elysia": "^1.4.21",
"helmet": "^8.1.0",
"js-yaml": "^4.1.1",
"node-edge-tts": "^1.2.9",
"tslog": "^4.10.2",
"zod": "^4.4.2"
}
}