mirror of
https://github.com/EvoMap/evolver.git
synced 2026-09-18 21:47:53 +08:00
74 lines
2.2 KiB
JSON
74 lines
2.2 KiB
JSON
{
|
|
"name": "@evomap/evolver",
|
|
"version": "1.94.0",
|
|
"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 skip=new Set(['solidifyIntegration.test.js','proxyTracePlatformInstall.test.js','spawnReplacementProcess.test.js']);const all=fs.readdirSync('test').filter(f=>f.endsWith('.test.js')&&!skip.has(f));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",
|
|
"eventsource": "^4.1.0",
|
|
"undici": "^7.28.0"
|
|
},
|
|
"devDependencies": {
|
|
"javascript-obfuscator": "^5.4.1"
|
|
},
|
|
"optionalDependencies": {
|
|
"@napi-rs/keyring": "^1.1.6"
|
|
},
|
|
"overrides": {
|
|
"@vercel/blob": {
|
|
"undici": "6.27.0"
|
|
}
|
|
},
|
|
"files": [
|
|
"assets/",
|
|
"cli-options.js",
|
|
"index.js",
|
|
"src/",
|
|
"scripts/",
|
|
"skills/",
|
|
"conformance/",
|
|
"README.md",
|
|
"README.zh-CN.md",
|
|
"README.ja-JP.md",
|
|
"SKILL.md",
|
|
"CONTRIBUTING.md",
|
|
"LICENSE"
|
|
]
|
|
}
|