forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
51
{
"name": "@elizaos/client-direct",
"version": "0.25.9",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@elizaos/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"@elizaos/core": "workspace:*",
"@types/body-parser": "1.19.5",
"@types/cors": "2.8.17",
"body-parser": "2.1.0",
"cors": "2.8.5",
"express": "5.0.1",
"multer": "1.4.5-lts.1",
"openai": "4.73.0",
"path-to-regexp": "8.2.0",
"zod": "^3.24.2",
"@hapi/shot": "^6.0.1",
"@types/hapi__shot": "4.1.6",
"@types/hapi": "^18.0.14"
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/multer": "1.4.12",
"tsup": "8.3.5"
},
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch"
},
"peerDependencies": {
"whatwg-url": "7.1.0"
},
"publishConfig": {
"access": "public"
}
}