forked from fixes-world/elizaOnFlow
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 2.48 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "eliza-onflow",
"private": true,
"scripts": {
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --write .",
"preinstall": "npx only-allow pnpm",
"build": "turbo run build $(sed 's/^/--filter=!/' turbo.excludes | tr '\n' ' ')",
"cleanstart": "if [ -f agent/data/db.sqlite ]; then rm agent/data/db.sqlite; fi && pnpm --filter \"@fixes-ai/agent\" start --isRoot",
"cleanstart:debug": "if [ -f agent/data/db.sqlite ]; then rm agent/data/db.sqlite; fi && cross-env NODE_ENV=development DEFAULT_LOG_LEVEL=debug DEBUG=eliza:* pnpm --filter \"@fixes-ai/agent\" start --isRoot",
"start": "pnpm --filter \"@fixes-ai/agent\" start --isRoot",
"start:client": "pnpm --dir client dev",
"start:debug": "cross-env NODE_ENV=development VERBOSE=true DEFAULT_LOG_LEVEL=debug DEBUG=eliza:* pnpm --filter \"@fixes-ai/agent\" start --isRoot",
"release": "pnpm build && pnpm prettier && npx lerna publish --no-private --force-publish",
"clean": "bash ./deps/eliza/scripts/clean.sh",
"test": "bash ./deps/eliza/scripts/test.sh",
"smokeTests": "bash ./deps/eliza/scripts/smokeTests.sh",
"integrationTests": "bash ./deps/eliza/scripts/integrationTests.sh"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@types/jest": "^29.5.11",
"concurrently": "9.1.0",
"cross-env": "7.0.3",
"husky": "9.1.7",
"jest": "^29.7.0",
"lerna": "8.1.5",
"only-allow": "1.2.1",
"turbo": "2.3.3",
"typedoc": "0.26.11",
"typescript": "5.6.3",
"viem": "2.21.58",
"vite": "5.4.12",
"vitest": "2.1.5"
},
"dependencies": {
"@deepgram/sdk": "^3.9.0",
"amqplib": "0.10.5",
"csv-parse": "5.6.0",
"inversify": "^6.2.1",
"optional": "0.1.4",
"pnpm": "9.15.2",
"reflect-metadata": "^0.2.2",
"sharp": "0.33.5",
"tslog": "4.9.3"
},
"pnpm": {
"overrides": {
"@ai-sdk/provider": "1.0.6",
"@ai-sdk/provider-utils": "2.1.6",
"@onflow/fcl": "1.13.4",
"bs58": "5.0.0",
"cookie": "0.7.0",
"onnxruntime-node": "1.20.1",
"viem": "2.21.58"
}
},
"engines": {
"node": "23.3.0"
},
"packageManager": "[email protected]"
}