-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 986 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 986 Bytes
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
{
"name": "@evomap/evolver",
"version": "1.29.8",
"description": "A GEP-powered self-evolution engine for AI agents. Features automated log analysis and Genome Evolution Protocol (GEP) for auditable, reusable evolution assets.",
"main": "index.js",
"bin": {
"evolver": "index.js"
},
"keywords": [
"evomap",
"ai",
"evolution",
"gep",
"meta-learning",
"self-repair",
"automation",
"agent"
],
"author": "EvoMap <team@evomap.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EvoMap/evolver.git"
},
"homepage": "https://evomap.ai",
"scripts": {
"start": "node index.js",
"run": "node index.js run",
"solidify": "node index.js solidify",
"review": "node index.js review",
"a2a:export": "node scripts/a2a_export.js",
"a2a:ingest": "node scripts/a2a_ingest.js",
"a2a:promote": "node scripts/a2a_promote.js"
},
"dependencies": {
"dotenv": "^16.4.7"
}
}