-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 991 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 991 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
{
"name": "@evomap/gep-sdk",
"version": "1.0.1",
"description": "SDK for the Genome Evolution Protocol (GEP) -- enables AI agents to self-evolve",
"main": "src/index.js",
"type": "module",
"exports": {
".": "./src/index.js",
"./content-hash": "./src/contentHash.js",
"./gene": "./src/gene.js",
"./capsule": "./src/capsule.js",
"./mutation": "./src/mutation.js",
"./signals": "./src/signals.js",
"./selector": "./src/selector.js",
"./memory-graph": "./src/memoryGraph.js",
"./asset-store": "./src/assetStore.js",
"./portable": "./src/portable.js"
},
"keywords": ["gep", "ai", "agent", "evolution", "self-evolution", "mcp", "evomap"],
"files": [
"src"
],
"author": "EvoMap",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/EvoMap/gep-sdk-js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "node --test test/*.test.js"
},
"dependencies": {}
}