-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.67 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "multi-agents-backend-ts",
"version": "2.0.0",
"description": "Multi-Agent Software Development Platform with Claude Agent SDK",
"main": "dist/index.js",
"bin": {
"agents": "./dist/cli/index.js"
},
"scripts": {
"postinstall": "patch-package",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"cli": "tsx src/cli/index.ts",
"cli:interactive": "tsx src/cli/index.ts interactive",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"test": "jest",
"cleanup-workspaces": "tsx scripts/cleanup-workspaces.ts",
"verify-branches": "tsx scripts/verify-branches.ts",
"fix-branches": "tsx scripts/verify-branches.ts --fix",
"setup:vector-index": "tsx scripts/setup-vector-index.ts"
},
"keywords": [
"claude",
"ai",
"agents",
"typescript",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.29",
"@anthropic-ai/sdk": "^0.32.1",
"@octokit/rest": "^22.0.0",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.10",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/winston": "^2.4.4",
"bcrypt": "^5.1.1",
"better-sqlite3": "^12.6.2",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"chalk": "^5.6.2",
"compression": "^1.7.5",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"diff": "^8.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.4.1",
"express-session": "^1.18.1",
"firebase-admin": "^13.6.0",
"glob": "^10.5.0",
"helmet": "^8.0.0",
"ioredis": "^5.8.2",
"jsonwebtoken": "^9.0.2",
"minimatch": "^10.0.3",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"openai": "^6.16.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"winston": "^3.18.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/blessed": "^0.1.27",
"@types/cors": "^2.8.17",
"@types/diff": "^7.0.2",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/glob": "^7.2.0",
"@types/ioredis": "^4.28.10",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.5",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"jest": "^30.2.0",
"patch-package": "^8.0.1",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.0.0"
}
}