-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 903 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 903 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
32
{
"name": "@elizaos/example-form",
"version": "2.0.0-beta.0",
"description": "Form-driven elizaOS example agent.",
"type": "module",
"scripts": {
"start": "bun ../chat/chat.ts",
"dev": "bun --watch ../chat/chat.ts",
"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",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/uuid": "^11.0.0",
"typescript": "^6.0.0"
},
"engines": {
"node": ">=24.0.0"
}
}