forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.64 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
{
"name": "@elizaos/agent",
"version": "0.25.6-alpha.1",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start_prof": "node --heap-prof --cpu-prof --prof --inspect-brk=0.0.0.0:9229 --require mytracing.js --loader ts-node/esm src/index.ts",
"start_debug": "node --inspect-brk=0.0.0.0:9229 --require mytracing.js --loader ts-node/esm src/index.ts",
"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-plugins/client-twitter": "workspace:*",
"@elizaos-plugins/plugin-twitter": "workspace:*",
"@elizaos/client-direct": "workspace:*",
"@elizaos/core": "workspace:*",
"@elizaos/plugin-bootstrap": "workspace:*",
"@hapi/shot": "^6.0.1",
"@opentelemetry/api": "^1.6.0",
"@opentelemetry/auto-instrumentations-node": "^0.39.4",
"@opentelemetry/sdk-node": "^0.45.0",
"@types/hapi": "^18.0.14",
"@types/hapi__shot": "^6.0.0",
"agent-twitter-client": "workspace:*",
"eliza-plugin-promptbook": "workspace:*",
"readline": "1.3.0",
"ws": "8.18.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"tsup": "8.3.5"
}
}