-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 2.41 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
{
"name": "auto-agents-framework",
"version": "0.1.0",
"description": "Auto Agents Framework",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc && yarn copy-characters",
"start": "yarn build && node dist/index.js",
"dev": "NODE_ENV=development tsx --no-cache --watch src/index.ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"example:twitter": "tsx examples/twitter.ts",
"extract-kol-dsn-schemas": "tsx src/agents/workflows/kol/cli/extractDsnSchemas.ts",
"copy-characters": "cp -r config/characters dist/config/",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint \"src/**/*.{js,ts}\" --fix",
"lint:characters": "eslint \"src/agents/workflows/kol/characters/*.ts\"",
"lint:characters:fix": "eslint \"src/agents/workflows/kol/characters/*.ts\" --fix"
},
"dependencies": {
"@autonomys/auto-dag-data": "1.2.1",
"@autonomys/auto-drive": "1.2.1",
"@langchain/anthropic": "^0.3.11",
"@langchain/community": "0.3.20",
"@langchain/core": "^0.3.27",
"@langchain/langgraph": "0.2.36",
"@langchain/ollama": "^0.1.4",
"@langchain/openai": "0.3.16",
"agent-twitter-client": "0.0.18",
"dotenv": "^16.3.1",
"ethers": "^6.13.4",
"inquirer": "^10.2.0",
"winston": "^3.11.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@tsconfig/node20": "^20.1.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.10.0",
"@types/sqlite3": "^3.1.11",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^10.3.10",
"globals": "^15.14.0",
"jest": "^29.7.0",
"memfs": "^4.7.7",
"prettier": "^3.2.2",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.20.0"
}
}