-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.16 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.16 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@tribesxyz/ayaos",
"version": "0.2.8",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"bin"
],
"bin": {
"ayaos": "bin/init.js",
"init": "bin/init.js init"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist; rm -rf node_modules",
"build": "bun run build-project && bun run build-script",
"build-project": "bun run type-check && tsup src/index.ts --format esm --dts",
"build-script": "tsup scripts/create-agent.ts --format esm --dts",
"type-check": "tsc --noEmit",
"lint": "npx eslint 'src/**/*.ts'",
"dev": "dotenv --e .env -- tsx src/example.ts",
"check-packages": "bash ./scripts/check-packages.sh",
"release": "bun run build && changeset publish",
"release:beta": "bun run build && changeset publish --tag beta"
},
"dependencies": {
"@ai-sdk/openai": "1.3.12",
"@electric-sql/pglite": "0.2.17",
"@elizaos/core": "1.0.0-beta.32",
"@elizaos/plugin-sql": "1.0.0-beta.32",
"@langchain/community": "0.3.31",
"@langchain/core": "0.3.40",
"@neynar/nodejs-sdk": "2.27.1",
"@turnkey/http": "2.18.0",
"@turnkey/sdk-server": "1.7.3",
"@turnkey/viem": "0.6.10",
"@xmtp/content-type-primitives": "2.0.2",
"@xmtp/content-type-reaction": "2.0.2",
"@xmtp/content-type-reply": "2.0.2",
"@xmtp/content-type-text": "2.0.2",
"@xmtp/content-type-wallet-send-calls": "2.0.0",
"@xmtp/node-sdk": "4.2.4",
"agent-twitter-client": "0.0.18",
"ai": "4.3.6",
"amqplib": "0.10.5",
"axios": "1.8.2",
"d3-dsv": "2",
"discord.js": "14.16.3",
"dotenv": "16.4.7",
"drizzle-orm": "0.39.1",
"drizzle-zod": "0.7.0",
"elliptic": "6.6.1",
"express": "4.21.2",
"formdata-node": "6.0.3",
"fs": "0.0.1-security",
"js-tiktoken": "1.0.19",
"langchain": "0.3.19",
"limiter": "3.0.0",
"lru-cache": "11.1.0",
"mammoth": "1.9.0",
"net": "1.0.2",
"open": "10.1.2",
"path": "0.12.7",
"pdf-parse": "1.1.1",
"pg": "8.13.3",
"pino": "9.6.0",
"readline": "1.3.0",
"simple-git": "3.27.0",
"socket.io-client": "4.8.1",
"telegraf": "4.16.3",
"twitter-api-v2": "1.23.2",
"uint8arrays": "5.1.0",
"url": "0.11.4",
"uuid": "11.1.0",
"viem": "2.21.49",
"whatwg-url": "7.1.0",
"ws": "8.18.0",
"yargs": "17.7.2",
"zod": "3.24.2"
},
"engines": {
"node": ">=22"
},
"resolutions": {
"onnxruntime-node": "1.20.0"
},
"devDependencies": {
"@changesets/cli": "2.28.1",
"@types/elliptic": "6.4.18",
"@types/express": "5.0.0",
"@types/node": "22.13.4",
"@types/pdf-parse": "1.1.4",
"dotenv-cli": "7.4.1",
"drizzle-kit": "0.30.4",
"eslint": "8.57.1",
"eslint-config-next": "15.1.4",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-n": "17.14.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"tsup": "8.4.0",
"tsx": "4.19.2",
"typescript": "5.6.3"
}
}