-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.47 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.47 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
{
"name": "@elizaos/example-code",
"version": "2.0.0-beta.0",
"description": "Async coding agent terminal app - Claude Code meets ElizaOS",
"type": "module",
"main": "dist/index.js",
"bin": {
"eliza-code": "./dist/index.js"
},
"scripts": {
"start": "bun src/index.ts",
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun --external @elizaos/core --external \"@elizaos/plugin-*\" --external @elizaos/sweagent-root",
"test": "bun test --pass-with-no-tests src",
"e2e:subagents": "bun src/e2e/subagents.ts",
"e2e:games": "bun src/e2e/game-generation.ts",
"lint": "bunx @biomejs/biome check --write --unsafe .",
"lint:check": "bunx @biomejs/biome check . || true",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@elizaos/plugin-agent-orchestrator": "workspace:*",
"@elizaos/core": "workspace:*",
"@elizaos/plugin-anthropic": "workspace:*",
"@elizaos/plugin-coding-tools": "workspace:*",
"@elizaos/plugin-goals": "latest",
"@elizaos/plugin-shell": "workspace:*",
"@elizaos/plugin-openai": "workspace:*",
"@elizaos/plugin-mcp": "workspace:*",
"@elizaos/plugin-sql": "workspace:*",
"@elizaos/tui": "latest",
"chalk": "^5.3.0",
"dotenv": "^17.2.3",
"react": "19.2.3",
"uuid": "^14.0.0",
"zod": "^4.4.3",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "19.2.3",
"typescript": "^6.0.3"
}
}