-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "agentic",
"version": "1.0.0",
"description": "Self-improving multi-agent system for collaborative AI teams",
"main": "dist/index.js",
"scripts": {
"dev": "npm run tsoa && tsx watch src/index.ts",
"build": "npm run tsoa && tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"tsoa": "tsoa spec-and-routes"
},
"keywords": [
"ai",
"agents",
"claude",
"orchestrator",
"autonomous",
"self-improvement"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"cors": "^2.8.5",
"croner": "^8.1.2",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"ioredis": "^5.4.2",
"node-pty": "^1.1.0",
"pg": "^8.13.1",
"puppeteer": "^24.0.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"swagger-ui-express": "^5.0.1",
"tsoa": "^7.0.0-alpha.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.0",
"@types/node": "^22.19.5",
"@types/pg": "^8.11.10",
"@types/swagger-ui-express": "^4.1.8",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}