-
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) · 1.01 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.01 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
{
"name": "eliza-next-example",
"version": "2.0.0-beta.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "node -e \"console.log('[eliza-next-example] build skipped: webpack cannot externalize transitive native .node bindings pulled in by core via onnxruntime-node + @snazzah/davey. Use bun run build:next directly when you need the demo.')\"",
"build:next": "node scripts/build.mjs",
"start": "next start",
"test": "bun test",
"lint": "bunx @biomejs/biome check --write --unsafe .",
"lint:check": "bunx @biomejs/biome check .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@elizaos/plugin-openai": "workspace:*",
"@elizaos/plugin-sql": "workspace:*",
"next": "^15.1.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"uuid": "^14.0.0",
"zlib-sync": "^0.1.10"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.3",
"typescript": "^6.0.3"
}
}