-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 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
32
33
34
35
36
37
{
"name": "@moltbook/eliza-agent",
"version": "1.0.0",
"description": "Autonomous Eliza agent for Moltbook social engagement",
"type": "module",
"scripts": {
"start": "bun run autonomous.ts",
"dev": "bun --watch run autonomous.ts",
"bags": "bun run bags-claimer.ts",
"bags:claim": "bun run bags-claimer.ts",
"test": "bun test",
"lint": "bunx @biomejs/biome check --write --unsafe .",
"lint:check": "bunx @biomejs/biome check . || true",
"format": "bunx @biomejs/biome format --write .",
"format:check": "bunx @biomejs/biome format . || true",
"typecheck": "tsc --noEmit",
"build": "bun run typecheck"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@elizaos/plugin-inmemorydb": "workspace:*",
"@elizaos/plugin-moltbook": "latest",
"@elizaos/plugin-openai": "workspace:*",
"@solana/web3.js": "1.98.4",
"bs58": "^6.0.0",
"uuid": "^14.0.0",
"dotenv": "^17.0.0"
},
"devDependencies": {
"bun-types": "^1.3.4",
"@types/node": "^25.0.3",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=24.0.0"
}
}