-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 883 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 883 Bytes
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
{
"name": "@elizaos/example-chat",
"version": "2.0.0-beta.0",
"description": "Interactive CLI chat with an AI agent using elizaOS",
"type": "module",
"scripts": {
"start": "bun run chat.ts",
"dev": "bun --watch run chat.ts",
"test": "bun test",
"lint": "bunx @biomejs/biome check --write --unsafe .",
"typecheck": "tsc --noEmit",
"build": "bun run typecheck"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@elizaos/plugin-openai": "workspace:*",
"@elizaos/plugin-anthropic": "workspace:*",
"@elizaos/plugin-xai": "workspace:*",
"@elizaos/plugin-google-genai": "workspace:*",
"@elizaos/plugin-groq": "workspace:*",
"@elizaos/plugin-sql": "workspace:*",
"dotenv": "^17.0.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=24.0.0"
}
}