forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
204 lines (204 loc) · 9.33 KB
/
package.json
File metadata and controls
204 lines (204 loc) · 9.33 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
{
"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 MILADY_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/typescript dev",
"start:debug": "NODE_NO_WARNINGS=1 LOG_LEVEL=debug bun run --cwd packages/agent start",
"build": "node scripts/run-with-python-shim.mjs turbo run build",
"build:typescript": "turbo run build --filter=!@elizaos/python --filter=!@elizaos/rust --filter=!@elizaos/computeruse --filter=!@elizaos/computeruse-nodejs --filter=!@elizaos/computeruse-root --filter=!@mediar-ai/workflow",
"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 -name __pycache__ -prune -exec rm -rf {} + 2>/dev/null; find . -type d -name .pytest_cache -prune -exec rm -rf {} + 2>/dev/null; find . -type d -name .mypy_cache -prune -exec rm -rf {} + 2>/dev/null; find . -type d -name .ruff_cache -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 --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:rust": "turbo run lint:rust",
"typecheck:rust": "turbo run typecheck:rust",
"lint:python": "turbo run lint:python",
"typecheck:python": "turbo run typecheck:python",
"lint:all": "bun run lint:check && bun run typecheck && bun run lint:rust && bun run typecheck:rust && bun run lint:python && bun run typecheck:python",
"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",
"python:version": "python3 scripts/update-python-versions.py",
"python:version:restore": "python3 scripts/restore-python-versions.py",
"rust:version": "echo 'Rust versions are managed by release-rust.yaml workflow'",
"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": "turbo run test --concurrency 3 --filter='./plugins/*'",
"test:client": "turbo run test --filter=./packages/client",
"test:core": "turbo run test --filter=./packages/typescript",
"test:server": "turbo run test --filter=./packages/server"
},
"packageManager": "bun@1.3.5",
"workspaces": [
"packages/*",
"packages/native-plugins/*",
"packages/app-core/deploy/cloud-agent-template",
"apps/*",
"plugins/*",
"plugins/*/typescript",
"plugins/plugin-sql/typescript",
"plugins/plugin-ollama/typescript",
"plugins/plugin-local-ai/typescript",
"cloud/packages/sdk",
"cloud/packages/services/billing"
],
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@bufbuild/buf": "^1.47.2",
"@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",
"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.1"
},
"overrides": {
"@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.168",
"@ai-sdk/provider": "3.0.8",
"@ai-sdk/provider-utils": "4.0.23",
"@ai-sdk/openai": "3.0.53",
"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.1"
},
"patchedDependencies": {
"@pixiv/three-vrm@3.5.2": "packages/app-core/patches/@pixiv%2Fthree-vrm@3.5.2.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-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.3.6"
}
}