-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.06 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "genesis-ai-cli",
"mcpName": "io.github.rossignoliluca/genesis",
"version": "18.0.0",
"description": "Fully Autonomous AI System with RSI (Recursive Self-Improvement) - Self-funding, Self-deploying, Production Memory, A2A Protocol & Governance",
"type": "commonjs",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"genesis": "dist/src/index.js",
"genesis-ai-cli": "dist/src/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"dev": "tsc --watch",
"dev:chat": "npx tsx watch src/index.ts chat",
"dev:run": "npx tsx watch src/index.ts",
"test": "node --test dist/**/*.test.js",
"prepublishOnly": "npm run build",
"postinstall": "echo '\\n🧬 Genesis installed! Run: genesis help\\n'"
},
"files": [
"dist",
"README.md",
".env.example"
],
"keywords": [
"mcp",
"ai",
"autonomous",
"active-inference",
"self-aware",
"autopoiesis",
"agents",
"multi-agent",
"llm",
"openai",
"anthropic",
"system-creator"
],
"author": "rossignoliluca",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rossignoliluca/genesis.git"
},
"homepage": "https://github.com/rossignoliluca/genesis#readme",
"bugs": {
"url": "https://github.com/rossignoliluca/genesis/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.21.0",
"typescript": "^5.3.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@octokit/rest": "^22.0.1",
"@remotion/bundler": "^4.0.422",
"@remotion/cli": "^4.0.422",
"@remotion/renderer": "^4.0.422",
"@types/imap": "^0.8.43",
"@types/mailparser": "^3.4.6",
"@types/nodemailer": "^7.0.9",
"@types/pg": "^8.16.0",
"dotenv": "^17.2.3",
"imap": "^0.8.19",
"mailparser": "^3.9.3",
"nodemailer": "^8.0.1",
"pg": "^8.18.0",
"pino": "^10.3.1",
"playwright": "^1.58.2",
"remotion": "^4.0.422",
"viem": "^2.44.4"
}
}