-
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) · 970 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 970 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": "eliza-react-example",
"version": "2.0.0-beta.0",
"type": "module",
"scripts": {
"predev": "node scripts/copy-pglite-assets.mjs",
"dev": "bun --bun vite",
"prebuild": "node scripts/copy-pglite-assets.mjs",
"build": "tsc && bun --bun vite build",
"prepreview": "node scripts/copy-pglite-assets.mjs",
"preview": "bun --bun vite preview",
"lint": "bunx @biomejs/biome check --write --unsafe .",
"lint:check": "bunx @biomejs/biome check .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@electric-sql/pglite": "^0.4.0",
"@elizaos/core": "workspace:*",
"@elizaos/plugin-eliza-classic": "workspace:*",
"@elizaos/plugin-sql": "workspace:*",
"react": "19.2.3",
"react-dom": "19.2.3",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/react": "19.2.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^6.0.0",
"typescript": "^6.0.3",
"vite": "^8.0.8"
}
}