-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.36 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.36 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
{
"name": "autonomo",
"version": "1.0.0",
"description": "🧠 The Living App - An autonomous, self-evolving Node.js application powered by AI agents",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"evolve": "node index.js --evolve",
"status": "node tools/status.js",
"reset": "node tools/reset.js",
"backup": "node tools/backup.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:ci": "jest --ci --coverage --maxWorkers=2"
},
"keywords": [
"ai",
"llm",
"autonomous",
"self-evolving",
"agents",
"codegen",
"machine-learning",
"gemini",
"showcase"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"helmet": "^8.0.0",
"inquirer": "^8.2.6",
"joi": "^17.13.3",
"node-cron": "^3.0.3",
"simple-git": "^3.27.0",
"uuid": "^10.0.0",
"vm2": "^3.9.19",
"winston": "^3.14.2"
},
"devDependencies": {
"eslint": "^9.12.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"supertest": "^7.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}