-
Notifications
You must be signed in to change notification settings - Fork 206
/
package.json
50 lines (50 loc) · 1.35 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@ai16z/agent",
"version": "0.1.1",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"start": "tsc && node --loader ts-node/esm src/index.ts",
"start:service:all": "pm2 start pnpm --name=\"all\" --restart-delay=3000 --max-restarts=10 -- run start:all",
"stop:service:all": "pm2 stop all"
},
"dependencies": {
"@elizaos/adapter-postgres": "0.1.7",
"@elizaos/adapter-sqlite": "0.1.7",
"@elizaos/client-auto": "0.1.7",
"@elizaos/client-direct": "0.1.7",
"@elizaos/client-discord": "0.1.7",
"@elizaos/client-telegram": "0.1.7",
"@elizaos/client-twitter": "0.1.7",
"@elizaos/core": "0.1.7",
"@elizaos/plugin-bootstrap": "0.1.7",
"@elizaos/plugin-image-generation": "0.1.7",
"@elizaos/plugin-node": "0.1.7",
"@elizaos/plugin-solana": "0.1.7",
"@elizaos/plugin-starknet": "0.1.7",
"@tavily/core": "0.0.2",
"amqplib": "0.10.5",
"better-sqlite3": "11.5.0",
"fs": "0.0.1-security",
"net": "1.0.2",
"path": "0.12.7",
"readline": "1.3.0",
"url": "0.11.4",
"ws": "8.18.0",
"yargs": "17.7.2"
},
"engines": {
"node": ">=22"
},
"pnpm": {
"overrides": {
"onnxruntime-node": "1.20.0"
}
},
"devDependencies": {
"ts-node": "10.9.2",
"tsup": "8.3.5",
"typescript": "5.6.3"
}
}