-
Notifications
You must be signed in to change notification settings - Fork 801
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.97 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
{
"name": "@evomap/evolver",
"version": "1.89.13",
"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": "GPL-3.0-or-later",
"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",
"test": "node -e \"const fs=require('fs'),cp=require('child_process');const all=fs.readdirSync('test').filter(f=>f.endsWith('.test.js'));const iso=new Set(['solidifyIntegration.test.js']);const others=all.filter(f=>!iso.has(f)).map(f=>'test/'+f);const isoFiles=all.filter(f=>iso.has(f)).map(f=>'test/'+f);if(others.length)cp.execSync('node --test '+others.join(' '),{stdio:'inherit'});if(isoFiles.length)cp.execSync('node --test '+isoFiles.join(' '),{stdio:'inherit'})\""
},
"engines": {
"node": ">=22.12"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.1053.0",
"@evomap/atp-sdk": "^0.1.0",
"@evomap/gep-sdk": "^1.5.0",
"dotenv": "^16.4.7",
"undici": "^7.0.0"
},
"devDependencies": {
"javascript-obfuscator": "^5.4.1"
},
"optionalDependencies": {
"@napi-rs/keyring": "^1.1.6"
},
"files": [
"assets/",
"index.js",
"src/",
"scripts/",
"skills/",
"conformance/",
"README.md",
"README.zh-CN.md",
"README.ja-JP.md",
"SKILL.md",
"CONTRIBUTING.md",
"LICENSE"
]
}