forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 728 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 728 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
{
"name": "@elizaos/example-rest-api-hono",
"version": "2.0.0-beta.0",
"type": "module",
"description": "elizaOS REST API example using Hono",
"scripts": {
"start": "bun run server.ts",
"dev": "bun --watch run server.ts",
"test": "bun test",
"lint": "bunx @biomejs/biome check --write --unsafe .",
"typecheck": "tsgo --noEmit",
"build": "bun run typecheck"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@elizaos/plugin-openai": "workspace:*",
"@elizaos/plugin-sql": "workspace:*",
"@elizaos/plugin-eliza-classic": "workspace:*",
"hono": "^4.12.16",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"typescript": "^6.0.3"
}
}