-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
161 lines (161 loc) · 7.15 KB
/
package.json
File metadata and controls
161 lines (161 loc) · 7.15 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
{
"name": "eliza",
"version": "2.0.0-alpha.0",
"module": "index.ts",
"type": "module",
"engines": {
"node": "23.3.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",
"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": "echo 'CLI package not found. Please use elizaos start from a project directory.'",
"start:debug": "cross-env NODE_NO_WARNINGS=1 LOG_LEVEL=debug elizaos start",
"build": "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 -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 && turbo run lint:check",
"typecheck": "turbo run 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": "turbo run test --concurrency 3 --filter=!@elizaos/python --filter=!@elizaos/computeruse-nodejs",
"test:all": "turbo run test --concurrency 3 --filter=!@elizaos/python --filter=!@elizaos/computeruse-nodejs",
"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/computeruse/packages/*",
"apps/*"
],
"devDependencies": {
"@bufbuild/buf": "^1.47.2",
"@biomejs/biome": "^2.3.11",
"@types/bun": "^1.3.5",
"@types/react-test-renderer": "^19.0.0",
"bun-types": "latest",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.6",
"@types/uuid": "^11.0.0",
"react-test-renderer": "^19.0.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.17",
"bun": "^1.3.5",
"lerna": "9.0.3",
"turbo": "^2.7.4",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
},
"resolutions": {
"react": "19.2.3",
"react-dom": "19.2.3",
"@types/react": "19.2.3",
"@types/node": "25.4.0",
"typedoc-plugin-markdown": "4.2.10",
"typedoc": "0.27.9",
"zod": "^4.3.6",
"drizzle-orm": "^0.45.1"
},
"overrides": {
"@types/node": "25.4.0",
"@nrwl/devkit": "19.8.4",
"@nrwl/tao": "19.8.4",
"color-convert": "2.0.1",
"color-name": "1.1.4",
"is-core-module": "2.13.1",
"error-ex": "1.3.2",
"has-ansi": "6.0.2",
"ai": "6.0.30",
"@ai-sdk/provider": "3.0.2",
"@ai-sdk/provider-utils": "4.0.5",
"@ai-sdk/openai": "3.0.9",
"pg-native": "npm:empty-npm-package@1.0.0",
"libpq": "npm:empty-npm-package@1.0.0",
"@uniswap/sdk-core": "^5.9.0",
"@uniswap/v3-sdk": "3.28.0",
"@uniswap/v2-sdk": "4.6.0",
"@uniswap/v4-sdk": "1.14.2",
"drizzle-orm": "^0.45.1"
},
"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",
"@elizaos/plugin-anthropic": "alpha",
"@elizaos/plugin-groq": "alpha",
"@elizaos/plugin-local-embedding": "alpha",
"@elizaos/plugin-ollama": "alpha",
"@elizaos/plugin-openai": "alpha",
"@elizaos/plugin-sql": "alpha",
"@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"
}
}