forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 992 Bytes
/
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
{
"name": "@elizaos/agent",
"version": "0.25.9",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "node --loader ts-node/esm src/index.ts",
"dev": "node --loader ts-node/esm src/index.ts",
"check-types": "tsc --noEmit",
"test": "jest"
},
"nodemonConfig": {
"watch": [
"src",
"../core/dist"
],
"ext": "ts,json",
"exec": "node --enable-source-maps --loader ts-node/esm src/index.ts"
},
"dependencies": {
"@elizaos/client-direct": "workspace:*",
"@elizaos/core": "workspace:*",
"@elizaos/plugin-bootstrap": "workspace:*",
"@types/node": "^22.13.5",
"json5": "2.2.3",
"ts-node": "^10.9.2",
"undici": "^7.4.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "29.5.14",
"jest": "29.7.0",
"ts-jest": "^29.2.6"
}
}